| 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 25 matching lines...) Expand all Loading... |
| 36 public: | 36 public: |
| 37 static PassRefPtr<StyleVisualData> create() { return adoptRef(new StyleVisua
lData); } | 37 static PassRefPtr<StyleVisualData> create() { return adoptRef(new StyleVisua
lData); } |
| 38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualDa
ta(*this)); } | 38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualDa
ta(*this)); } |
| 39 ~StyleVisualData(); | 39 ~StyleVisualData(); |
| 40 | 40 |
| 41 bool operator==(const StyleVisualData& o) const | 41 bool operator==(const StyleVisualData& o) const |
| 42 { | 42 { |
| 43 return clip == o.clip | 43 return clip == o.clip |
| 44 && hasClip == o.hasClip | 44 && hasClip == o.hasClip |
| 45 && textDecoration == o.textDecoration | 45 && textDecoration == o.textDecoration |
| 46 #if ENABLE(TEXT_AUTOSIZING) | |
| 47 && m_textAutosizingMultiplier == o.m_textAutosizingMultiplier | 46 && m_textAutosizingMultiplier == o.m_textAutosizingMultiplier |
| 48 #endif | |
| 49 && m_zoom == o.m_zoom; | 47 && m_zoom == o.m_zoom; |
| 50 } | 48 } |
| 51 bool operator!=(const StyleVisualData& o) const { return !(*this == o); } | 49 bool operator!=(const StyleVisualData& o) const { return !(*this == o); } |
| 52 | 50 |
| 53 LengthBox clip; | 51 LengthBox clip; |
| 54 bool hasClip : 1; | 52 bool hasClip : 1; |
| 55 unsigned textDecoration : ETextDecorationBits; // Text decorations defined *
only* by this element. | 53 unsigned textDecoration : ETextDecorationBits; // Text decorations defined *
only* by this element. |
| 56 | 54 |
| 57 #if ENABLE(TEXT_AUTOSIZING) | |
| 58 float m_textAutosizingMultiplier; | 55 float m_textAutosizingMultiplier; |
| 59 #endif | |
| 60 float m_zoom; | 56 float m_zoom; |
| 61 | 57 |
| 62 private: | 58 private: |
| 63 StyleVisualData(); | 59 StyleVisualData(); |
| 64 StyleVisualData(const StyleVisualData&); | 60 StyleVisualData(const StyleVisualData&); |
| 65 }; | 61 }; |
| 66 | 62 |
| 67 } // namespace WebCore | 63 } // namespace WebCore |
| 68 | 64 |
| 69 #endif // StyleVisualData_h | 65 #endif // StyleVisualData_h |
| OLD | NEW |