initial import
[vuplus_webkit] / Source / WebCore / rendering / style / ShadowData.h
1 /*
2  * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3  *           (C) 2000 Antti Koivisto (koivisto@kde.org)
4  *           (C) 2000 Dirk Mueller (mueller@kde.org)
5  * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
6  * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public License
19  * along with this library; see the file COPYING.LIB.  If not, write to
20  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  *
23  */
24
25 #ifndef ShadowData_h
26 #define ShadowData_h
27
28 #include "Color.h"
29 #include "LayoutTypes.h"
30 #include <wtf/OwnPtr.h>
31 #include <wtf/PassOwnPtr.h>
32
33 namespace WebCore {
34
35 enum ShadowStyle { Normal, Inset };
36
37 // This class holds information about shadows for the text-shadow and box-shadow properties.
38
39 class ShadowData {
40     WTF_MAKE_FAST_ALLOCATED;
41 public:
42     ShadowData()
43         : m_x(0)
44         , m_y(0)
45         , m_blur(0)
46         , m_spread(0)
47         , m_style(Normal)
48         , m_isWebkitBoxShadow(false)
49     {
50     }
51
52     ShadowData(LayoutUnit x, LayoutUnit y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color)
53         : m_x(x)
54         , m_y(y)
55         , m_blur(blur)
56         , m_spread(spread)
57         , m_color(color)
58         , m_style(style)
59         , m_isWebkitBoxShadow(isWebkitBoxShadow)
60     {
61     }
62
63     ShadowData(const ShadowData& o);
64
65     bool operator==(const ShadowData& o) const;
66     bool operator!=(const ShadowData& o) const
67     {
68         return !(*this == o);
69     }
70     
71     LayoutUnit x() const { return m_x; }
72     LayoutUnit y() const { return m_y; }
73     int blur() const { return m_blur; }
74     int spread() const { return m_spread; }
75     ShadowStyle style() const { return m_style; }
76     const Color& color() const { return m_color; }
77     bool isWebkitBoxShadow() const { return m_isWebkitBoxShadow; }
78
79     const ShadowData* next() const { return m_next.get(); }
80     void setNext(PassOwnPtr<ShadowData> shadow) { m_next = shadow; }
81
82     void adjustRectForShadow(IntRect&, int additionalOutlineSize = 0) const;
83     void adjustRectForShadow(FloatRect&, int additionalOutlineSize = 0) const;
84
85 private:
86     LayoutUnit m_x;
87     LayoutUnit m_y;
88     int m_blur;
89     int m_spread;
90     Color m_color;
91     ShadowStyle m_style;
92     bool m_isWebkitBoxShadow;
93     OwnPtr<ShadowData> m_next;
94 };
95
96 } // namespace WebCore
97
98 #endif // ShadowData_h