| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. All rights reserv
ed. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 virtual void paint(const PaintInfo&, const LayoutPoint&) override; | 73 virtual void paint(const PaintInfo&, const LayoutPoint&) override; |
| 74 | 74 |
| 75 virtual void layout() override; | 75 virtual void layout() override; |
| 76 | 76 |
| 77 // Returns true if we re-attached and updated the location of the marker. | 77 // Returns true if we re-attached and updated the location of the marker. |
| 78 bool updateMarkerLocation(); | 78 bool updateMarkerLocation(); |
| 79 void updateMarkerLocationAndInvalidateWidth(); | 79 void updateMarkerLocationAndInvalidateWidth(); |
| 80 | 80 |
| 81 void positionListMarker(); | 81 void positionListMarker(); |
| 82 | 82 |
| 83 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov
erride; | 83 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle)
override; |
| 84 | 84 |
| 85 virtual void addOverflowFromChildren() override; | 85 virtual void addOverflowFromChildren() override; |
| 86 | 86 |
| 87 inline int calcValue() const; | 87 inline int calcValue() const; |
| 88 void updateValueNow() const; | 88 void updateValueNow() const; |
| 89 void explicitValueChanged(); | 89 void explicitValueChanged(); |
| 90 | 90 |
| 91 int m_explicitValue; | 91 int m_explicitValue; |
| 92 LayoutListMarker* m_marker; | 92 LayoutListMarker* m_marker; |
| 93 mutable int m_value; | 93 mutable int m_value; |
| 94 | 94 |
| 95 bool m_hasExplicitValue : 1; | 95 bool m_hasExplicitValue : 1; |
| 96 mutable bool m_isValueUpToDate : 1; | 96 mutable bool m_isValueUpToDate : 1; |
| 97 bool m_notInList : 1; | 97 bool m_notInList : 1; |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListItem, isListItem()); | 100 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListItem, isListItem()); |
| 101 | 101 |
| 102 } // namespace blink | 102 } // namespace blink |
| 103 | 103 |
| 104 #endif // LayoutListItem_h | 104 #endif // LayoutListItem_h |
| OLD | NEW |