| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 class StyleGridItemData; | 51 class StyleGridItemData; |
| 52 class StyleMarqueeData; | 52 class StyleMarqueeData; |
| 53 class StyleMultiColData; | 53 class StyleMultiColData; |
| 54 class StyleReflection; | 54 class StyleReflection; |
| 55 class StyleResolver; | 55 class StyleResolver; |
| 56 class StyleTransformData; | 56 class StyleTransformData; |
| 57 | 57 |
| 58 class ContentData; | 58 class ContentData; |
| 59 struct LengthSize; | 59 struct LengthSize; |
| 60 | 60 |
| 61 #if ENABLE(DASHBOARD_SUPPORT) | |
| 62 struct StyleDashboardRegion; | |
| 63 #endif | |
| 64 | |
| 65 // Page size type. | 61 // Page size type. |
| 66 // StyleRareNonInheritedData::m_pageSize is meaningful only when | 62 // StyleRareNonInheritedData::m_pageSize is meaningful only when |
| 67 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. | 63 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. |
| 68 enum PageSizeType { | 64 enum PageSizeType { |
| 69 PAGE_SIZE_AUTO, // size: auto | 65 PAGE_SIZE_AUTO, // size: auto |
| 70 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape | 66 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape |
| 71 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait | 67 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait |
| 72 PAGE_SIZE_RESOLVED // Size is fully resolved. | 68 PAGE_SIZE_RESOLVED // Size is fully resolved. |
| 73 }; | 69 }; |
| 74 | 70 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 96 float opacity; // Whether or not we're transparent. | 92 float opacity; // Whether or not we're transparent. |
| 97 | 93 |
| 98 float m_aspectRatioDenominator; | 94 float m_aspectRatioDenominator; |
| 99 float m_aspectRatioNumerator; | 95 float m_aspectRatioNumerator; |
| 100 | 96 |
| 101 float m_perspective; | 97 float m_perspective; |
| 102 Length m_perspectiveOriginX; | 98 Length m_perspectiveOriginX; |
| 103 Length m_perspectiveOriginY; | 99 Length m_perspectiveOriginY; |
| 104 | 100 |
| 105 LineClampValue lineClamp; // An Apple extension. | 101 LineClampValue lineClamp; // An Apple extension. |
| 106 #if ENABLE(DASHBOARD_SUPPORT) | |
| 107 Vector<StyleDashboardRegion> m_dashboardRegions; | |
| 108 #endif | |
| 109 #if ENABLE(DRAGGABLE_REGION) | 102 #if ENABLE(DRAGGABLE_REGION) |
| 110 DraggableRegionMode m_draggableRegionMode; | 103 DraggableRegionMode m_draggableRegionMode; |
| 111 #endif | 104 #endif |
| 112 | 105 |
| 113 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties | 106 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties |
| 114 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 107 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 115 DataRef<StyleMarqueeData> m_marquee; // Marquee properties | 108 DataRef<StyleMarqueeData> m_marquee; // Marquee properties |
| 116 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 109 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| 117 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) | 110 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) |
| 118 | 111 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 #endif | 193 #endif |
| 201 | 194 |
| 202 private: | 195 private: |
| 203 StyleRareNonInheritedData(); | 196 StyleRareNonInheritedData(); |
| 204 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 197 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 205 }; | 198 }; |
| 206 | 199 |
| 207 } // namespace WebCore | 200 } // namespace WebCore |
| 208 | 201 |
| 209 #endif // StyleRareNonInheritedData_h | 202 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |