diff options
author | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-04-13 13:40:58 +0000 |
---|---|---|
committer | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-04-13 13:40:58 +0000 |
commit | 337d42626b1192ca8eb68c4325e1357a303d69d9 (patch) | |
tree | 297871b922f1e12388e4a88448029527eedf9d5b | |
parent | 573a42d0250f297ad99369ed88375497c1cb1eca (diff) |
remove obsolete header
git-svn-id: http://skia.googlecode.com/svn/trunk@544 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | include/core/SkDrawing.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/include/core/SkDrawing.h b/include/core/SkDrawing.h deleted file mode 100644 index 793534759a..0000000000 --- a/include/core/SkDrawing.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef SkDrawable_DEFINED -#define SkDrawable_DEFINED - -#include "SkFlattenable.h" -#include "SkMatrix.h" - -class SkCanvas; -struct SkRect; - -class SkDrawable : public SkFlattenable { -public: - SkDrawable(); - virtual ~SkDrawable(); - - void getMatrix(SkMatrix*) const; - void setMatrix(const SkMatrix&); - void resetMatrix(); - - void draw(SkCanvas*); - - void inval() {} - - SkDrawable* attachChildToFront(SkDrawable* child); - SkDrawable* attachChildToBack(SkDrawable* child); - - SkDrawable* getParent() const { return fParent; } - void detachFromParent(); - void detachAllChildren(); - - class B2FIter { - public: - B2FIter(const SkDrawable* parent); - SkDrawable* next(); - private: - SkDrawable* fFirstChild; - SkDrawable* fChild; - }; - -protected: - virtual void onDraw(SkCanvas*) {} - -private: - SkMatrix fMatrix; - - SkDrawable* fParent; - SkDrawable* fFirstChild; - SkDrawable* fNextSibling; - SkDrawable* fPrevSibling; - - typedef SkFlattenable INHERITED; -}; - -#endif - |