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.
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.
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.
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.
23 #ifndef RenderListMarker_h
24 #define RenderListMarker_h
26 #include "RenderBox.h"
32 String listMarkerText(EListStyleType, int value);
34 // Used to render the list item's marker.
35 // The RenderListMarker always has to be a child of a RenderListItem.
36 class RenderListMarker FINAL : public RenderBox {
38 static RenderListMarker* createAnonymous(RenderListItem*);
40 virtual ~RenderListMarker();
42 const String& text() const { return m_text; }
43 String suffix() const;
45 bool isInside() const;
47 void updateMarginsAndContent();
50 RenderListMarker(RenderListItem*);
52 virtual const char* renderName() const { return "RenderListMarker"; }
53 virtual void computePreferredLogicalWidths() OVERRIDE;
55 virtual bool isListMarker() const { return true; }
57 virtual void paint(PaintInfo&, const LayoutPoint&);
59 virtual void layout();
61 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0);
63 virtual InlineBox* createInlineBox();
65 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
66 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
69 bool isText() const { return !isImage(); }
71 virtual void setSelectionState(SelectionState);
72 virtual LayoutRect selectionRectForRepaint(const RenderLayerModelObject* repaintContainer, bool clipToVisibleContent = true) OVERRIDE;
73 virtual bool canBeSelectionLeaf() const { return true; }
78 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
79 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
81 IntRect getRelativeMarkerRect();
82 LayoutRect localSelectionRect();
85 RefPtr<StyleImage> m_image;
86 RenderListItem* m_listItem;
89 inline RenderListMarker* toRenderListMarker(RenderObject* object)
91 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isListMarker());
92 return static_cast<RenderListMarker*>(object);
95 inline const RenderListMarker* toRenderListMarker(const RenderObject* object)
97 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isListMarker());
98 return static_cast<const RenderListMarker*>(object);
101 // This will catch anyone doing an unnecessary cast.
102 void toRenderListMarker(const RenderListMarker*);
104 } // namespace WebCore
106 #endif // RenderListMarker_h