Upstream version 9.37.195.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / RenderListItem.h
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #ifndef RenderListItem_h
24 #define RenderListItem_h
25
26 #include "core/rendering/RenderBlockFlow.h"
27
28 namespace WebCore {
29
30 class HTMLOListElement;
31 class RenderListMarker;
32
33 class RenderListItem FINAL : public RenderBlockFlow {
34 public:
35     explicit RenderListItem(Element*);
36
37     int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value; }
38     void updateValue();
39
40     bool hasExplicitValue() const { return m_hasExplicitValue; }
41     int explicitValue() const { return m_explicitValue; }
42     void setExplicitValue(int value);
43     void clearExplicitValue();
44
45     void setNotInList(bool);
46     bool notInList() const { return m_notInList; }
47
48     const String& markerText() const;
49
50     void updateListMarkerNumbers();
51
52     static void updateItemValuesForOrderedList(const HTMLOListElement*);
53     static unsigned itemCountForOrderedList(const HTMLOListElement*);
54
55     bool isEmpty() const;
56
57 private:
58     virtual const char* renderName() const OVERRIDE { return "RenderListItem"; }
59
60     virtual bool isListItem() const OVERRIDE { return true; }
61
62     virtual void willBeDestroyed() OVERRIDE;
63
64     virtual void insertedIntoTree() OVERRIDE;
65     virtual void willBeRemovedFromTree() OVERRIDE;
66
67     virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE;
68
69     virtual void layout() OVERRIDE;
70
71     // Returns true if we re-attached and updated the location of the marker.
72     bool updateMarkerLocation();
73     void updateMarkerLocationAndInvalidateWidth();
74
75     void positionListMarker();
76
77     virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE;
78
79     virtual void addOverflowFromChildren() OVERRIDE;
80
81     inline int calcValue() const;
82     void updateValueNow() const;
83     void explicitValueChanged();
84
85     int m_explicitValue;
86     RenderListMarker* m_marker;
87     mutable int m_value;
88
89     bool m_hasExplicitValue : 1;
90     mutable bool m_isValueUpToDate : 1;
91     bool m_notInList : 1;
92 };
93
94 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderListItem, isListItem());
95
96 } // namespace WebCore
97
98 #endif // RenderListItem_h