OSDN Git Service

Merge WebKit at r61871: Initial merge by git.
[android-x86/external-webkit.git] / WebCore / rendering / style / StyleRareNonInheritedData.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 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 StyleRareNonInheritedData_h
26 #define StyleRareNonInheritedData_h
27
28 #include "CounterDirectives.h"
29 #include "CursorData.h"
30 #include "DataRef.h"
31 #include "FillLayer.h"
32 #include "LineClampValue.h"
33 #include "NinePieceImage.h"
34 #include "StyleTransformData.h"
35 #include <wtf/OwnPtr.h>
36 #include <wtf/PassRefPtr.h>
37 #include <wtf/Vector.h>
38
39 namespace WebCore {
40
41 class AnimationList;
42 class CSSStyleSelector;
43 class LengthSize;
44 class ShadowData;
45 class StyleFlexibleBoxData;
46 class StyleMarqueeData;
47 class StyleMultiColData;
48 class StyleReflection;
49 class StyleTransformData;
50
51 struct ContentData;
52
53 #if ENABLE(DASHBOARD_SUPPORT)
54 struct StyleDashboardRegion;
55 #endif
56
57 #if ENABLE(XBL)
58 class BindingURI;
59 #endif
60
61 // This struct is for rarely used non-inherited CSS3, CSS2, and WebKit-specific properties.
62 // By grouping them together, we save space, and only allocate this object when someone
63 // actually uses one of these properties.
64 class StyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
65 public:
66     static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new StyleRareNonInheritedData); }
67     PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new StyleRareNonInheritedData(*this)); }
68     ~StyleRareNonInheritedData();
69     
70 #if ENABLE(XBL)
71     bool bindingsEquivalent(const StyleRareNonInheritedData&) const;
72 #endif
73
74     bool operator==(const StyleRareNonInheritedData&) const;
75     bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this == o); }
76
77     bool contentDataEquivalent(const StyleRareNonInheritedData& o) const;
78     bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const;
79     bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const;
80     bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
81     bool transitionDataEquivalent(const StyleRareNonInheritedData&) const;
82
83     LineClampValue lineClamp; // An Apple extension.
84 #if ENABLE(DASHBOARD_SUPPORT)
85     Vector<StyleDashboardRegion> m_dashboardRegions;
86 #endif
87     float opacity; // Whether or not we're transparent.
88
89     DataRef<StyleFlexibleBoxData> flexibleBox; // Flexible box properties 
90     DataRef<StyleMarqueeData> marquee; // Marquee properties
91     DataRef<StyleMultiColData> m_multiCol; //  CSS3 multicol properties
92     DataRef<StyleTransformData> m_transform; // Transform properties (rotate, scale, skew, etc.)
93
94     OwnPtr<ContentData> m_content;
95     OwnPtr<CounterDirectiveMap> m_counterDirectives;
96
97     unsigned userDrag : 2; // EUserDrag
98     bool textOverflow : 1; // Whether or not lines that spill out should be truncated with "..."
99     unsigned marginTopCollapse : 2; // EMarginCollapse
100     unsigned marginBottomCollapse : 2; // EMarginCollapse
101     unsigned matchNearestMailBlockquoteColor : 1; // EMatchNearestMailBlockquoteColor, FIXME: This property needs to be eliminated. It should never have been added.
102     unsigned m_appearance : 6; // EAppearance
103     unsigned m_borderFit : 1; // EBorderFit
104     
105     short m_counterIncrement;
106     short m_counterReset;
107     
108 #if USE(ACCELERATED_COMPOSITING)
109     bool m_runningAcceleratedAnimation : 1;
110 #endif
111     OwnPtr<ShadowData> m_boxShadow;  // For box-shadow decorations.
112     
113     RefPtr<StyleReflection> m_boxReflect;
114
115     OwnPtr<AnimationList> m_animations;
116     OwnPtr<AnimationList> m_transitions;
117
118     FillLayer m_mask;
119     NinePieceImage m_maskBoxImage;
120
121     ETransformStyle3D m_transformStyle3D;
122     EBackfaceVisibility m_backfaceVisibility;
123     float m_perspective;
124     Length m_perspectiveOriginX;
125     Length m_perspectiveOriginY;
126
127     LengthSize m_pageSize;
128
129 #if ENABLE(XBL)
130     OwnPtr<BindingURI> bindingURI; // The XBL binding URI list.
131 #endif
132     
133 private:
134     StyleRareNonInheritedData();
135     StyleRareNonInheritedData(const StyleRareNonInheritedData&);
136 };
137
138 } // namespace WebCore
139
140 #endif // StyleRareNonInheritedData_h