blob: 0ebc486eca201ef21d198c3d5140978c91458080 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2006, 2009 Apple Inc. All rights reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24#ifndef RenderFieldset_h
25#define RenderFieldset_h
26
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +010027#include "core/rendering/RenderBlockFlow.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010028
29namespace WebCore {
30
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +010031class RenderFieldset FINAL : public RenderBlockFlow {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010032public:
33 explicit RenderFieldset(Element*);
34
35 enum FindLegendOption { IgnoreFloatingOrOutOfFlow, IncludeFloatingOrOutOfFlow };
36 RenderBox* findLegend(FindLegendOption = IgnoreFloatingOrOutOfFlow) const;
37
38private:
Torne (Richard Coles)09380292014-02-21 12:17:33 +000039 virtual const char* renderName() const OVERRIDE { return "RenderFieldSet"; }
40 virtual bool isFieldset() const OVERRIDE { return true; }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010041
Torne (Richard Coles)09380292014-02-21 12:17:33 +000042 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) OVERRIDE;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010043
Torne (Richard Coles)09380292014-02-21 12:17:33 +000044 virtual void computePreferredLogicalWidths() OVERRIDE;
45 virtual bool avoidsFloats() const OVERRIDE { return true; }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010046
Torne (Richard Coles)09380292014-02-21 12:17:33 +000047 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&) OVERRIDE;
48 virtual void paintMask(PaintInfo&, const LayoutPoint&) OVERRIDE;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010049};
50
Torne (Richard Coles)bfe35902013-10-22 16:41:51 +010051DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFieldset, isFieldset());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010052
53} // namespace WebCore
54
55#endif // RenderFieldset_h