| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 bool hasFilters() const; | 95 bool hasFilters() const; |
| 96 bool hasBackdropFilters() const; | 96 bool hasBackdropFilters() const; |
| 97 bool hasOpacity() const { return opacity < 1; } | 97 bool hasOpacity() const { return opacity < 1; } |
| 98 | 98 |
| 99 float opacity; // Whether or not we're transparent. | 99 float opacity; // Whether or not we're transparent. |
| 100 | 100 |
| 101 float m_perspective; | 101 float m_perspective; |
| 102 float m_shapeImageThreshold; | 102 float m_shapeImageThreshold; |
| 103 | 103 |
| 104 int m_order; | 104 int m_order; |
| 105 int m_onclickVpi; |
| 106 int m_onclickVpu; |
| 107 int m_onscrollVpi; |
| 108 int m_onscrollVpu; |
| 109 int m_ontouchstartVpi; |
| 110 int m_ontouchstartVpu; |
| 111 int m_ontouchendVpi; |
| 112 int m_ontouchendVpu; |
| 113 int m_ontouchmoveVpi; |
| 114 int m_ontouchmoveVpu; |
| 105 | 115 |
| 106 LengthPoint m_perspectiveOrigin; | 116 LengthPoint m_perspectiveOrigin; |
| 107 LengthPoint m_objectPosition; | 117 LengthPoint m_objectPosition; |
| 108 | 118 |
| 109 LineClampValue lineClamp; // An Apple extension. | 119 LineClampValue lineClamp; // An Apple extension. |
| 110 DraggableRegionMode m_draggableRegionMode; | 120 DraggableRegionMode m_draggableRegionMode; |
| 111 | 121 |
| 112 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties | 122 DataRef<StyleDeprecatedFlexibleBoxData> m_deprecatedFlexibleBox; // Flexible
box properties |
| 113 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 123 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 114 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 124 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 221 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 212 | 222 |
| 213 private: | 223 private: |
| 214 StyleRareNonInheritedData(); | 224 StyleRareNonInheritedData(); |
| 215 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 225 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 216 }; | 226 }; |
| 217 | 227 |
| 218 } // namespace blink | 228 } // namespace blink |
| 219 | 229 |
| 220 #endif // StyleRareNonInheritedData_h | 230 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |