blob: 41719f082036f1063e372eef6b366cb9e30047e1 [file] [log] [blame]
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SkPDFFormXObject_DEFINED
18#define SkPDFFormXObject_DEFINED
19
20#include "SkPDFStream.h"
21#include "SkPDFTypes.h"
22#include "SkRefCnt.h"
23#include "SkString.h"
24
25class SkMatrix;
26class SkPDFDevice;
27class SkPDFCatalog;
28
29/** \class SkPDFFormXObject
30
vandebo@chromium.orgf60a0012011-02-24 23:14:04 +000031 A form XObject; a self contained description of graphics objects. A form
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000032 XObject is basically a page object with slightly different syntax, that
33 can be drawn onto a page.
34*/
35
36// The caller could keep track of the form XObjects it creates and
37// canonicalize them, but the Skia API doesn't provide enough context to
38// automatically do it (trivially).
39class SkPDFFormXObject : public SkPDFObject {
40public:
41 /** Create a PDF form XObject. Entries for the dictionary entries are
42 * automatically added.
43 * @param device The set of graphical elements on this form.
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000044 */
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +000045 explicit SkPDFFormXObject(SkPDFDevice* device);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000046 virtual ~SkPDFFormXObject();
47
48 // The SkPDFObject interface.
49 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
50 bool indirect);
51 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
52 virtual void getResources(SkTDArray<SkPDFObject*>* resourceList);
53
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000054 /** Add the value to the stream dictionary with the given key. Refs value.
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000055 * @param key The key for this dictionary entry.
56 * @param value The value for this dictionary entry.
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000057 * @return The value argument is returned.
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000058 */
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000059 SkPDFObject* insert(SkPDFName* key, SkPDFObject* value);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000060
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000061 /** Add the value to the stream dictionary with the given key. Refs value.
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000062 * @param key The text of the key for this dictionary entry.
63 * @param value The value for this dictionary entry.
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000064 * @return The value argument is returned.
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000065 */
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +000066 SkPDFObject* insert(const char key[], SkPDFObject* value);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000067
68private:
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000069 SkRefPtr<SkPDFStream> fStream;
vandebo@chromium.org79ac4fd2011-02-08 19:22:40 +000070 SkTDArray<SkPDFObject*> fResources;
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000071};
72
73#endif