| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 2004, 2005 Rob Buis <buis@kde.org> | 3 2004, 2005 Rob Buis <buis@kde.org> |
| 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 | 5 |
| 6 Based on khtml code by: | 6 Based on khtml code by: |
| 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) | 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) |
| 8 (C) 2000 Antti Koivisto (koivisto@kde.org) | 8 (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) | 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) |
| 10 (C) 2002-2003 Apple Computer, Inc. | 10 (C) 2002-2003 Apple Computer, Inc. |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 273 |
| 274 AtomicString markerStart; | 274 AtomicString markerStart; |
| 275 AtomicString markerMid; | 275 AtomicString markerMid; |
| 276 AtomicString markerEnd; | 276 AtomicString markerEnd; |
| 277 | 277 |
| 278 private: | 278 private: |
| 279 StyleInheritedResourceData(); | 279 StyleInheritedResourceData(); |
| 280 StyleInheritedResourceData(const StyleInheritedResourceData&); | 280 StyleInheritedResourceData(const StyleInheritedResourceData&); |
| 281 }; | 281 }; |
| 282 | 282 |
| 283 // Positioning and sizing properties. | 283 // Geometry properties |
| 284 class StyleLayoutData : public RefCounted<StyleLayoutData> { | 284 class StyleGeometryData : public RefCounted<StyleGeometryData> { |
| 285 public: | 285 public: |
| 286 static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleL
ayoutData); } | 286 static PassRefPtr<StyleGeometryData> create() { return adoptRef(new StyleGeo
metryData); } |
| 287 PassRefPtr<StyleLayoutData> copy() const; | 287 PassRefPtr<StyleGeometryData> copy() const; |
| 288 bool operator==(const StyleLayoutData&) const; | 288 bool operator==(const StyleGeometryData&) const; |
| 289 bool operator!=(const StyleLayoutData& other) const | 289 bool operator!=(const StyleGeometryData& other) const |
| 290 { | 290 { |
| 291 return !(*this == other); | 291 return !(*this == other); |
| 292 } | 292 } |
| 293 RefPtr<StylePath> d; | 293 RefPtr<StylePath> d; |
| 294 Length cx; | 294 Length cx; |
| 295 Length cy; | 295 Length cy; |
| 296 Length x; | 296 Length x; |
| 297 Length y; | 297 Length y; |
| 298 Length r; | 298 Length r; |
| 299 Length rx; | 299 Length rx; |
| 300 Length ry; | 300 Length ry; |
| 301 private: | 301 |
| 302 StyleLayoutData(); | 302 private: |
| 303 StyleLayoutData(const StyleLayoutData&); | 303 StyleGeometryData(); |
| 304 }; | 304 StyleGeometryData(const StyleGeometryData&); |
| 305 }; |
| 305 | 306 |
| 306 } // namespace blink | 307 } // namespace blink |
| 307 | 308 |
| 308 #endif // SVGComputedStyleDefs_h | 309 #endif // SVGComputedStyleDefs_h |
| OLD | NEW |