blob: 38c04b1fd0e4b151e7d8202bf378de0e4462cf38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
* Copyright 2010 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkPDFFormXObject_DEFINED
#define SkPDFFormXObject_DEFINED
#include "SkPDFStream.h"
#include "SkPDFTypes.h"
#include "SkRect.h"
#include "SkRefCnt.h"
#include "SkPDFResourceDict.h"
#include "SkString.h"
class SkMatrix;
class SkPDFDevice;
class SkPDFCatalog;
/** \class SkPDFFormXObject
A form XObject; a self contained description of graphics objects. A form
XObject is basically a page object with slightly different syntax, that
can be drawn onto a page.
*/
// The caller could keep track of the form XObjects it creates and
// canonicalize them, but the Skia API doesn't provide enough context to
// automatically do it (trivially).
class SkPDFFormXObject : public SkPDFStream {
public:
/** Create a PDF form XObject. Entries for the dictionary entries are
* automatically added.
* @param device The set of graphical elements on this form.
*/
explicit SkPDFFormXObject(SkPDFDevice* device);
/**
* Create a PDF form XObject from a raw content stream and associated
* resources.
*/
explicit SkPDFFormXObject(SkStream* content,
SkRect bbox,
SkPDFResourceDict* resourceDict);
virtual ~SkPDFFormXObject();
// The SkPDFObject interface.
virtual void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects,
SkTSet<SkPDFObject*>* newResourceObjects);
private:
void init(const char* colorSpace,
SkPDFDict* resourceDict, SkPDFArray* bbox);
SkTSet<SkPDFObject*> fResources;
};
#endif
|