Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: src/animator/SkDrawColor.h

Issue 242943004: rename SkPaintParts.* to SkPaintPart.* (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/animator/SkDrawBlur.h ('k') | src/animator/SkDrawDash.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1
2 /* 1 /*
3 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
4 * 3 *
5 * 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
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
9
10 #ifndef SkDrawColor_DEFINED 8 #ifndef SkDrawColor_DEFINED
11 #define SkDrawColor_DEFINED 9 #define SkDrawColor_DEFINED
12 10
13 #include "SkPaintParts.h" 11 #include "SkPaintPart.h"
14 #include "SkColor.h" 12 #include "SkColor.h"
15 13
16 class SkDrawColor : public SkPaintPart { 14 class SkDrawColor : public SkPaintPart {
17 DECLARE_DRAW_MEMBER_INFO(Color); 15 DECLARE_DRAW_MEMBER_INFO(Color);
18 SkDrawColor(); 16 SkDrawColor();
19 virtual bool add(); 17 virtual bool add();
20 virtual void dirty(); 18 virtual void dirty();
21 #ifdef SK_DUMP_ENABLED 19 #ifdef SK_DUMP_ENABLED
22 virtual void dump(SkAnimateMaker* ); 20 virtual void dump(SkAnimateMaker* );
23 #endif 21 #endif
24 SkColor getColor(); 22 SkColor getColor();
25 virtual SkDisplayable* deepCopy(SkAnimateMaker* ); 23 virtual SkDisplayable* deepCopy(SkAnimateMaker* );
26 virtual SkDisplayable* getParent() const; 24 virtual SkDisplayable* getParent() const;
27 virtual bool getProperty(int index, SkScriptValue* value) const; 25 virtual bool getProperty(int index, SkScriptValue* value) const;
28 virtual void onEndElement(SkAnimateMaker& ); 26 virtual void onEndElement(SkAnimateMaker& );
29 virtual bool setParent(SkDisplayable* parent); 27 virtual bool setParent(SkDisplayable* parent);
30 virtual bool setProperty(int index, SkScriptValue&); 28 virtual bool setProperty(int index, SkScriptValue&);
31 protected: 29 protected:
32 SkColor color; 30 SkColor color;
33 SkScalar fHue; 31 SkScalar fHue;
34 SkScalar fSaturation; 32 SkScalar fSaturation;
35 SkScalar fValue; 33 SkScalar fValue;
36 SkBool fDirty; 34 SkBool fDirty;
37 private: 35 private:
38 friend class SkDrawGradient; 36 friend class SkDrawGradient;
39 typedef SkPaintPart INHERITED; 37 typedef SkPaintPart INHERITED;
40 }; 38 };
41 39
42 #endif // SkDrawColor_DEFINED 40 #endif // SkDrawColor_DEFINED
OLDNEW
« no previous file with comments | « src/animator/SkDrawBlur.h ('k') | src/animator/SkDrawDash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698