OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkDrawColor_DEFINED | 8 #ifndef SkDrawColor_DEFINED |
9 #define SkDrawColor_DEFINED | 9 #define SkDrawColor_DEFINED |
10 | 10 |
11 #include "SkPaintPart.h" | 11 #include "SkPaintPart.h" |
12 #include "SkColor.h" | 12 #include "SkColor.h" |
13 | 13 |
14 class SkDrawColor : public SkPaintPart { | 14 class SkDrawColor : public SkPaintPart { |
15 DECLARE_DRAW_MEMBER_INFO(Color); | 15 DECLARE_DRAW_MEMBER_INFO(Color); |
16 SkDrawColor(); | 16 SkDrawColor(); |
17 virtual bool add() SK_OVERRIDE; | 17 bool add() SK_OVERRIDE; |
18 virtual void dirty() SK_OVERRIDE; | 18 void dirty() SK_OVERRIDE; |
19 #ifdef SK_DUMP_ENABLED | 19 #ifdef SK_DUMP_ENABLED |
20 virtual void dump(SkAnimateMaker* ) SK_OVERRIDE; | 20 void dump(SkAnimateMaker* ) SK_OVERRIDE; |
21 #endif | 21 #endif |
22 SkColor getColor(); | 22 SkColor getColor(); |
23 virtual SkDisplayable* deepCopy(SkAnimateMaker* ) SK_OVERRIDE; | 23 SkDisplayable* deepCopy(SkAnimateMaker* ) SK_OVERRIDE; |
24 virtual SkDisplayable* getParent() const SK_OVERRIDE; | 24 SkDisplayable* getParent() const SK_OVERRIDE; |
25 virtual bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE; | 25 bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE; |
26 virtual void onEndElement(SkAnimateMaker& ) SK_OVERRIDE; | 26 void onEndElement(SkAnimateMaker& ) SK_OVERRIDE; |
27 virtual bool setParent(SkDisplayable* parent) SK_OVERRIDE; | 27 bool setParent(SkDisplayable* parent) SK_OVERRIDE; |
28 virtual bool setProperty(int index, SkScriptValue&) SK_OVERRIDE; | 28 bool setProperty(int index, SkScriptValue&) SK_OVERRIDE; |
29 protected: | 29 protected: |
30 SkColor color; | 30 SkColor color; |
31 SkScalar fHue; | 31 SkScalar fHue; |
32 SkScalar fSaturation; | 32 SkScalar fSaturation; |
33 SkScalar fValue; | 33 SkScalar fValue; |
34 SkBool fDirty; | 34 SkBool fDirty; |
35 private: | 35 private: |
36 friend class SkDrawGradient; | 36 friend class SkDrawGradient; |
37 typedef SkPaintPart INHERITED; | 37 typedef SkPaintPart INHERITED; |
38 }; | 38 }; |
39 | 39 |
40 #endif // SkDrawColor_DEFINED | 40 #endif // SkDrawColor_DEFINED |
OLD | NEW |