| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #ifndef StyleRareNonInheritedData_h | 25 #ifndef StyleRareNonInheritedData_h |
| 26 #define StyleRareNonInheritedData_h | 26 #define StyleRareNonInheritedData_h |
| 27 | 27 |
| 28 #include "core/platform/LengthPoint.h" | 28 #include "core/platform/LengthPoint.h" |
| 29 #include "core/rendering/ClipPathOperation.h" | 29 #include "core/rendering/ClipPathOperation.h" |
| 30 #include "core/rendering/style/BasicShapes.h" | 30 #include "core/rendering/style/BasicShapes.h" |
| 31 #include "core/rendering/style/CounterDirectives.h" | 31 #include "core/rendering/style/CounterDirectives.h" |
| 32 #include "core/rendering/style/CursorData.h" | 32 #include "core/rendering/style/CursorData.h" |
| 33 #include "core/rendering/style/DataRef.h" | 33 #include "core/rendering/style/DataRef.h" |
| 34 #include "core/rendering/style/FillLayer.h" | 34 #include "core/rendering/style/FillLayer.h" |
| 35 #include "core/rendering/style/LineClampValue.h" | |
| 36 #include "core/rendering/style/NinePieceImage.h" | 35 #include "core/rendering/style/NinePieceImage.h" |
| 37 #include "core/rendering/style/ShapeValue.h" | 36 #include "core/rendering/style/ShapeValue.h" |
| 38 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
| 39 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 40 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
| 41 | 40 |
| 42 namespace WebCore { | 41 namespace WebCore { |
| 43 | 42 |
| 44 class CSSAnimationDataList; | 43 class CSSAnimationDataList; |
| 45 class ShadowData; | 44 class ShadowData; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 89 |
| 91 float opacity; // Whether or not we're transparent. | 90 float opacity; // Whether or not we're transparent. |
| 92 | 91 |
| 93 float m_aspectRatioDenominator; | 92 float m_aspectRatioDenominator; |
| 94 float m_aspectRatioNumerator; | 93 float m_aspectRatioNumerator; |
| 95 | 94 |
| 96 float m_perspective; | 95 float m_perspective; |
| 97 Length m_perspectiveOriginX; | 96 Length m_perspectiveOriginX; |
| 98 Length m_perspectiveOriginY; | 97 Length m_perspectiveOriginY; |
| 99 | 98 |
| 100 LineClampValue lineClamp; // An Apple extension. | |
| 101 DraggableRegionMode m_draggableRegionMode; | 99 DraggableRegionMode m_draggableRegionMode; |
| 102 | 100 |
| 103 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties | 101 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties |
| 104 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 102 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 105 DataRef<StyleMarqueeData> m_marquee; // Marquee properties | 103 DataRef<StyleMarqueeData> m_marquee; // Marquee properties |
| 106 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 104 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| 107 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) | 105 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) |
| 108 | 106 |
| 109 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) | 107 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) |
| 110 | 108 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 unsigned m_isolation : 1; // Isolation | 189 unsigned m_isolation : 1; // Isolation |
| 192 | 190 |
| 193 private: | 191 private: |
| 194 StyleRareNonInheritedData(); | 192 StyleRareNonInheritedData(); |
| 195 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 193 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 196 }; | 194 }; |
| 197 | 195 |
| 198 } // namespace WebCore | 196 } // namespace WebCore |
| 199 | 197 |
| 200 #endif // StyleRareNonInheritedData_h | 198 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |