blob: 9cba463462f0de090357a9c7c08068ca21a9dd5d [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com86d40082010-02-12 17:17:10 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 The Android Open Source Project
reed@android.com86d40082010-02-12 17:17:10 +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.
reed@android.com86d40082010-02-12 17:17:10 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com86d40082010-02-12 17:17:10 +000010#ifndef SkLayer_DEFINED
11#define SkLayer_DEFINED
12
13#include "SkRefCnt.h"
14#include "SkTDArray.h"
15#include "SkColor.h"
reed@android.com81dc3312010-02-18 19:32:03 +000016#include "SkMatrix.h"
reed@android.com86d40082010-02-12 17:17:10 +000017#include "SkPoint.h"
18#include "SkRect.h"
19#include "SkSize.h"
20
21class SkCanvas;
reed@android.com86d40082010-02-12 17:17:10 +000022
23class SkLayer : public SkRefCnt {
24
25public:
26 SkLayer();
27 SkLayer(const SkLayer&);
28 virtual ~SkLayer();
29
reed@android.com8381e002010-03-23 20:10:46 +000030 bool isInheritFromRootTransform() const;
reed@android.com81dc3312010-02-18 19:32:03 +000031 SkScalar getOpacity() const { return m_opacity; }
reed@android.comda6fb322010-02-19 21:41:30 +000032 const SkSize& getSize() const { return m_size; }
reed@android.com81dc3312010-02-18 19:32:03 +000033 const SkPoint& getPosition() const { return m_position; }
reed@android.com81dc3312010-02-18 19:32:03 +000034 const SkPoint& getAnchorPoint() const { return m_anchorPoint; }
reed@android.com81dc3312010-02-18 19:32:03 +000035 const SkMatrix& getMatrix() const { return fMatrix; }
reed@android.com81dc3312010-02-18 19:32:03 +000036 const SkMatrix& getChildrenMatrix() const { return fChildrenMatrix; }
reed@android.comda6fb322010-02-19 21:41:30 +000037
38 SkScalar getWidth() const { return m_size.width(); }
39 SkScalar getHeight() const { return m_size.height(); }
40
reed@android.com8381e002010-03-23 20:10:46 +000041 void setInheritFromRootTransform(bool);
reed@android.comda6fb322010-02-19 21:41:30 +000042 void setOpacity(SkScalar opacity) { m_opacity = opacity; }
43 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
44 void setPosition(SkScalar x, SkScalar y) { m_position.set(x, y); }
45 void setAnchorPoint(SkScalar x, SkScalar y) { m_anchorPoint.set(x, y); }
46 void setMatrix(const SkMatrix&);
reed@android.com81dc3312010-02-18 19:32:03 +000047 void setChildrenMatrix(const SkMatrix&);
reed@android.com86d40082010-02-12 17:17:10 +000048
49 // children
50
reed@android.com745bfbd2010-02-24 17:16:35 +000051 /** Return the number of layers in our child list.
52 */
reed@android.com86d40082010-02-12 17:17:10 +000053 int countChildren() const;
reed@android.com745bfbd2010-02-24 17:16:35 +000054
55 /** Return the child at the specified index (starting at 0). This does not
56 affect the reference count of the child.
57 */
reed@android.com86d40082010-02-12 17:17:10 +000058 SkLayer* getChild(int index) const;
reed@android.com745bfbd2010-02-24 17:16:35 +000059
60 /** Add this layer to our child list at the end (top-most), and ref() it.
61 If it was already in another hierarchy, remove it from that list.
62 Return the new child.
63 */
reed@android.com86d40082010-02-12 17:17:10 +000064 SkLayer* addChild(SkLayer* child);
reed@android.com745bfbd2010-02-24 17:16:35 +000065
reed@android.com8381e002010-03-23 20:10:46 +000066 /** Remove this layer from its parent's list (or do nothing if it has no
67 parent.) If it had a parent, then unref() is called.
reed@android.com745bfbd2010-02-24 17:16:35 +000068 */
reed@android.com8381e002010-03-23 20:10:46 +000069 void detachFromParent();
reed@android.com745bfbd2010-02-24 17:16:35 +000070
71 /** Remove, and unref(), all of the layers in our child list.
72 */
reed@android.com86d40082010-02-12 17:17:10 +000073 void removeChildren();
74
reed@android.com745bfbd2010-02-24 17:16:35 +000075 /** Return our parent layer, or NULL if we have none.
76 */
77 SkLayer* getParent() const { return fParent; }
78
79 /** Return the root layer in this hiearchy. If this layer is the root
80 (i.e. has no parent), then this returns itself.
81 */
82 SkLayer* getRootLayer() const;
83
84 // coordinate system transformations
85
86 /** Return, in matrix, the matix transfomations that are applied locally
87 when this layer draws (i.e. its position and matrix/anchorPoint).
88 This does not include the childrenMatrix, since that is only applied
89 after this layer draws (but before its children draw).
90 */
91 void getLocalTransform(SkMatrix* matrix) const;
92
93 /** Return, in matrix, the concatenation of transforms that are applied
94 from this layer's root parent to the layer itself.
95 This is the matrix that is applied to the layer during drawing.
96 */
97 void localToGlobal(SkMatrix* matrix) const;
98
reed@android.com86d40082010-02-12 17:17:10 +000099 // paint method
100
reed@android.comda6fb322010-02-19 21:41:30 +0000101 void draw(SkCanvas*, SkScalar opacity);
102 void draw(SkCanvas* canvas) {
103 this->draw(canvas, SK_Scalar1);
104 }
reed@android.com81dc3312010-02-18 19:32:03 +0000105
106protected:
reed@android.comda6fb322010-02-19 21:41:30 +0000107 virtual void onDraw(SkCanvas*, SkScalar opacity);
reed@android.com81dc3312010-02-18 19:32:03 +0000108
109private:
reed@android.com8381e002010-03-23 20:10:46 +0000110 enum Flags {
111 kInheritFromRootTransform_Flag = 0x01
112 };
113
reed@android.com745bfbd2010-02-24 17:16:35 +0000114 SkLayer* fParent;
reed@android.comda6fb322010-02-19 21:41:30 +0000115 SkScalar m_opacity;
116 SkSize m_size;
117 SkPoint m_position;
118 SkPoint m_anchorPoint;
reed@android.com81dc3312010-02-18 19:32:03 +0000119 SkMatrix fMatrix;
120 SkMatrix fChildrenMatrix;
reed@android.com8381e002010-03-23 20:10:46 +0000121 uint32_t fFlags;
reed@android.com86d40082010-02-12 17:17:10 +0000122
reed@android.com86d40082010-02-12 17:17:10 +0000123 SkTDArray<SkLayer*> m_children;
reed@google.comc9218432011-01-25 19:05:12 +0000124
125 typedef SkRefCnt INHERITED;
reed@android.com86d40082010-02-12 17:17:10 +0000126};
127
128#endif