Home | History | Annotate | Download | only in style

Lines Matching defs:ShadowData

39 class ShadowData {
42 ShadowData()
53 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color)
65 ShadowData(const ShadowData& o);
66 ~ShadowData() { delete m_next; }
68 bool operator==(const ShadowData& o) const;
69 bool operator!=(const ShadowData& o) const
82 const ShadowData* next() const { return m_next; }
83 void setNext(ShadowData* shadow) { m_next = shadow; }
96 ShadowData* m_next;