2 * Copyright (C) 2005 Apple Computer
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #ifndef RenderButton_h
22 #define RenderButton_h
24 #include "RenderDeprecatedFlexibleBox.h"
26 #include <wtf/OwnPtr.h>
30 class RenderTextFragment;
32 // RenderButtons are just like normal flexboxes except that they will generate an anonymous block child.
33 // For inputs, they will also generate an anonymous RenderText and keep its style and content up
34 // to date as the button changes.
35 class RenderButton : public RenderDeprecatedFlexibleBox {
37 explicit RenderButton(Node*);
38 virtual ~RenderButton();
40 virtual const char* renderName() const { return "RenderButton"; }
41 virtual bool isRenderButton() const { return true; }
43 virtual bool canBeSelectionLeaf() const OVERRIDE { return node() && node()->rendererIsEditable(); }
45 virtual void addChild(RenderObject* newChild, RenderObject *beforeChild = 0);
46 virtual void removeChild(RenderObject*);
47 virtual void removeLeftoverAnonymousBlock(RenderBlock*) { }
48 virtual bool createsAnonymousWrapper() const { return true; }
50 void setupInnerStyle(RenderStyle*);
51 virtual void updateFromElement();
53 virtual void updateBeforeAfterContent(PseudoId);
55 virtual bool canHaveGeneratedChildren() const OVERRIDE;
56 virtual bool hasControlClip() const { return true; }
57 virtual LayoutRect controlClipRect(const LayoutPoint&) const;
59 void setText(const String&);
63 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
64 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
66 virtual bool hasLineIfEmpty() const { return true; }
68 virtual bool requiresForcedStyleRecalcPropagation() const { return true; }
70 void timerFired(Timer<RenderButton>*);
72 RenderTextFragment* m_buttonText;
75 OwnPtr<Timer<RenderButton> > m_timer;
79 inline RenderButton* toRenderButton(RenderObject* object)
81 ASSERT(!object || object->isRenderButton());
82 return static_cast<RenderButton*>(object);
85 inline const RenderButton* toRenderButton(const RenderObject* object)
87 ASSERT(!object || object->isRenderButton());
88 return static_cast<const RenderButton*>(object);
91 // This will catch anyone doing an unnecessary cast.
92 void toRenderButton(const RenderButton*);
94 } // namespace WebCore
96 #endif // RenderButton_h