blob: b26e4a00cba4cd8df5aa902d3206d1e750cd2600 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 The Android Open Source Project
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000010#ifndef SkPDFGraphicState_DEFINED
11#define SkPDFGraphicState_DEFINED
12
13#include "SkPaint.h"
14#include "SkPDFTypes.h"
15#include "SkTemplates.h"
16#include "SkThread.h"
17
vandebo@chromium.org6112c212011-05-13 03:50:38 +000018class SkPDFFormXObject;
19
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000020/** \class SkPDFGraphicState
21 SkPaint objects roughly correspond to graphic state dictionaries that can
vandebo@chromium.org6112c212011-05-13 03:50:38 +000022 be installed. So that a given dictionary is only output to the pdf file
23 once, we want to canonicalize them. Static methods in this class manage
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000024 a weakly referenced set of SkPDFGraphicState objects: when the last
25 reference to a SkPDFGraphicState is removed, it removes itself from the
26 static set of objects.
27
28*/
29class SkPDFGraphicState : public SkPDFDict {
commit-bot@chromium.orgab1c1382013-12-05 12:08:12 +000030 SK_DECLARE_INST_COUNT(SkPDFGraphicState)
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000031public:
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000032 enum SkPDFSMaskMode {
33 kAlpha_SMaskMode,
34 kLuminosity_SMaskMode
35 };
36
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000037 virtual ~SkPDFGraphicState();
38
halcanaryf361b712015-01-13 07:12:57 -080039 // Override emitObject so that we can populate the dictionary on
40 // demand.
halcanary4fc48af2015-01-12 10:07:50 -080041 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000042
43 /** Get the graphic state for the passed SkPaint. The reference count of
44 * the object is incremented and it is the caller's responsibility to
vandebo@chromium.org6112c212011-05-13 03:50:38 +000045 * unreference it when done. This is needed to accommodate the weak
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000046 * reference pattern used when the returned object is new and has no
47 * other references.
48 * @param paint The SkPaint to emulate.
49 */
halcanary792c80f2015-02-20 07:21:05 -080050 static SkPDFGraphicState* GetGraphicStateForPaint(SkPDFCanon* canon,
51 const SkPaint& paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000052
vandebo@chromium.org6112c212011-05-13 03:50:38 +000053 /** Make a graphic state that only sets the passed soft mask. The
54 * reference count of the object is incremented and it is the caller's
55 * responsibility to unreference it when done.
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000056 * @param sMask The form xobject to use as a soft mask.
57 * @param invert Indicates if the alpha of the sMask should be inverted.
58 * @param sMaskMode Whether to use alpha or luminosity for the sMask.
vandebo@chromium.org6112c212011-05-13 03:50:38 +000059 */
reed@google.comf6c3ebd2011-07-20 17:20:28 +000060 static SkPDFGraphicState* GetSMaskGraphicState(SkPDFFormXObject* sMask,
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000061 bool invert,
62 SkPDFSMaskMode sMaskMode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +000063
64 /** Get a graphic state that only unsets the soft mask. The reference
65 * count of the object is incremented and it is the caller's responsibility
66 * to unreference it when done. This is needed to accommodate the weak
67 * reference pattern used when the returned object is new and has no
68 * other references.
69 */
reed@google.comf6c3ebd2011-07-20 17:20:28 +000070 static SkPDFGraphicState* GetNoSMaskGraphicState();
vandebo@chromium.org6112c212011-05-13 03:50:38 +000071
halcanaryfb62b3d2015-01-21 09:59:14 -080072 bool equals(const SkPaint&) const;
73
halcanarye6ea2442015-01-21 13:13:22 -080074 // Only public for SK_DECLARE_STATIC_LAZY_PTR
75 static SkPDFGraphicState* CreateNoSMaskGraphicState();
76
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000077private:
halcanary792c80f2015-02-20 07:21:05 -080078 SkPDFCanon* const fCanon;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000079 const SkPaint fPaint;
80 bool fPopulated;
81
vandebo@chromium.org6112c212011-05-13 03:50:38 +000082 SkPDFGraphicState();
halcanary792c80f2015-02-20 07:21:05 -080083 SkPDFGraphicState(SkPDFCanon* canon, const SkPaint& paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000084
85 void populateDict();
86
commit-bot@chromium.orgab1c1382013-12-05 12:08:12 +000087 typedef SkPDFDict INHERITED;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000088};
89
90#endif