| 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 15 matching lines...) Expand all Loading... |
| 26 #include "core/rendering/RenderBlockFlow.h" | 26 #include "core/rendering/RenderBlockFlow.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class HTMLOListElement; | 30 class HTMLOListElement; |
| 31 class RenderListMarker; | 31 class RenderListMarker; |
| 32 | 32 |
| 33 class RenderListItem FINAL : public RenderBlockFlow { | 33 class RenderListItem FINAL : public RenderBlockFlow { |
| 34 public: | 34 public: |
| 35 explicit RenderListItem(Element*); | 35 explicit RenderListItem(Element*); |
| 36 virtual void trace(Visitor*) OVERRIDE; |
| 36 | 37 |
| 37 int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value
; } | 38 int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value
; } |
| 38 void updateValue(); | 39 void updateValue(); |
| 39 | 40 |
| 40 bool hasExplicitValue() const { return m_hasExplicitValue; } | 41 bool hasExplicitValue() const { return m_hasExplicitValue; } |
| 41 int explicitValue() const { return m_explicitValue; } | 42 int explicitValue() const { return m_explicitValue; } |
| 42 void setExplicitValue(int value); | 43 void setExplicitValue(int value); |
| 43 void clearExplicitValue(); | 44 void clearExplicitValue(); |
| 44 | 45 |
| 45 void setNotInList(bool); | 46 void setNotInList(bool); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 76 | 77 |
| 77 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV
ERRIDE; | 78 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV
ERRIDE; |
| 78 | 79 |
| 79 virtual void addOverflowFromChildren() OVERRIDE; | 80 virtual void addOverflowFromChildren() OVERRIDE; |
| 80 | 81 |
| 81 inline int calcValue() const; | 82 inline int calcValue() const; |
| 82 void updateValueNow() const; | 83 void updateValueNow() const; |
| 83 void explicitValueChanged(); | 84 void explicitValueChanged(); |
| 84 | 85 |
| 85 int m_explicitValue; | 86 int m_explicitValue; |
| 86 RenderListMarker* m_marker; | 87 RawPtrWillBeMember<RenderListMarker> m_marker; |
| 87 mutable int m_value; | 88 mutable int m_value; |
| 88 | 89 |
| 89 bool m_hasExplicitValue : 1; | 90 bool m_hasExplicitValue : 1; |
| 90 mutable bool m_isValueUpToDate : 1; | 91 mutable bool m_isValueUpToDate : 1; |
| 91 bool m_notInList : 1; | 92 bool m_notInList : 1; |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderListItem, isListItem()); | 95 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderListItem, isListItem()); |
| 95 | 96 |
| 96 } // namespace blink | 97 } // namespace blink |
| 97 | 98 |
| 98 #endif // RenderListItem_h | 99 #endif // RenderListItem_h |
| OLD | NEW |