summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/style/StyleRareNonInheritedData.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
commit648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/rendering/style/StyleRareNonInheritedData.h
parenta65af38181ac7d34544586bdb5cd004de93897ad (diff)
downloadexternal_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebCore/rendering/style/StyleRareNonInheritedData.h')
-rw-r--r--WebCore/rendering/style/StyleRareNonInheritedData.h120
1 files changed, 0 insertions, 120 deletions
diff --git a/WebCore/rendering/style/StyleRareNonInheritedData.h b/WebCore/rendering/style/StyleRareNonInheritedData.h
deleted file mode 100644
index 6ce6a33..0000000
--- a/WebCore/rendering/style/StyleRareNonInheritedData.h
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
- * (C) 2000 Antti Koivisto (koivisto@kde.org)
- * (C) 2000 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#ifndef StyleRareNonInheritedData_h
-#define StyleRareNonInheritedData_h
-
-#include "CounterDirectives.h"
-#include "CursorData.h"
-#include "DataRef.h"
-#include "FillLayer.h"
-#include "NinePieceImage.h"
-#include <wtf/OwnPtr.h>
-#include <wtf/PassRefPtr.h>
-#include <wtf/Vector.h>
-
-namespace WebCore {
-
-class AnimationList;
-class CSSStyleSelector;
-class StyleFlexibleBoxData;
-class StyleMarqueeData;
-class StyleMultiColData;
-class StyleReflection;
-class StyleTransformData;
-struct ContentData;
-struct ShadowData;
-
-#if ENABLE(DASHBOARD_SUPPORT)
-class StyleDashboardRegion;
-#endif
-
-#if ENABLE(XBL)
-class BindingURI;
-#endif
-
-// This struct is for rarely used non-inherited CSS3, CSS2, and WebKit-specific properties.
-// By grouping them together, we save space, and only allocate this object when someone
-// actually uses one of these properties.
-class StyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
-public:
- static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new StyleRareNonInheritedData); }
- PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new StyleRareNonInheritedData(*this)); }
- ~StyleRareNonInheritedData();
-
-#if ENABLE(XBL)
- bool bindingsEquivalent(const StyleRareNonInheritedData&) const;
-#endif
-
- bool operator==(const StyleRareNonInheritedData&) const;
- bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this == o); }
-
- bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const;
- bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const;
- bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
- bool transitionDataEquivalent(const StyleRareNonInheritedData&) const;
-
- int lineClamp; // An Apple extension.
-#if ENABLE(DASHBOARD_SUPPORT)
- Vector<StyleDashboardRegion> m_dashboardRegions;
-#endif
- float opacity; // Whether or not we're transparent.
-
- DataRef<StyleFlexibleBoxData> flexibleBox; // Flexible box properties
- DataRef<StyleMarqueeData> marquee; // Marquee properties
- DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties
- DataRef<StyleTransformData> m_transform; // Transform properties (rotate, scale, skew, etc.)
-
- OwnPtr<ContentData> m_content;
- OwnPtr<CounterDirectiveMap> m_counterDirectives;
-
- unsigned userDrag : 2; // EUserDrag
- bool textOverflow : 1; // Whether or not lines that spill out should be truncated with "..."
- unsigned marginTopCollapse : 2; // EMarginCollapse
- unsigned marginBottomCollapse : 2; // EMarginCollapse
- unsigned matchNearestMailBlockquoteColor : 1; // EMatchNearestMailBlockquoteColor, FIXME: This property needs to be eliminated. It should never have been added.
- unsigned m_appearance : 6; // EAppearance
- unsigned m_borderFit : 1; // EBorderFit
- OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations.
-
- RefPtr<StyleReflection> m_boxReflect;
-
- OwnPtr<AnimationList> m_animations;
- OwnPtr<AnimationList> m_transitions;
-
- FillLayer m_mask;
- NinePieceImage m_maskBoxImage;
-
-#if ENABLE(XBL)
- OwnPtr<BindingURI> bindingURI; // The XBL binding URI list.
-#endif
-
-private:
- StyleRareNonInheritedData();
- StyleRareNonInheritedData(const StyleRareNonInheritedData&);
-};
-
-} // namespace WebCore
-
-#endif // StyleRareNonInheritedData_h