Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLMeterElement.h
1 /*
2  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3  *
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.
8  *
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.
13  *
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.
18  *
19  */
20
21 #ifndef HTMLMeterElement_h
22 #define HTMLMeterElement_h
23
24 #include "core/html/LabelableElement.h"
25
26 namespace WebCore {
27
28 class ExceptionState;
29 class MeterValueElement;
30 class RenderMeter;
31
32 class HTMLMeterElement FINAL : public LabelableElement {
33 public:
34     static PassRefPtrWillBeRawPtr<HTMLMeterElement> create(Document&);
35
36     enum GaugeRegion {
37         GaugeRegionOptimum,
38         GaugeRegionSuboptimal,
39         GaugeRegionEvenLessGood
40     };
41
42     double value() const;
43     void setValue(double);
44
45     double min() const;
46     void setMin(double);
47
48     double max() const;
49     void setMax(double);
50
51     double low() const;
52     void setLow(double);
53
54     double high() const;
55     void setHigh(double);
56
57     double optimum() const;
58     void setOptimum(double);
59
60     double valueRatio() const;
61     GaugeRegion gaugeRegion() const;
62
63     virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
64
65     virtual void trace(Visitor*) OVERRIDE;
66
67 private:
68     explicit HTMLMeterElement(Document&);
69     virtual ~HTMLMeterElement();
70
71     virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
72     RenderMeter* renderMeter() const;
73
74     virtual bool supportLabels() const OVERRIDE { return true; }
75
76     virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
77     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
78
79     void didElementStateChange();
80     virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
81
82     RefPtrWillBeMember<MeterValueElement> m_value;
83 };
84
85 } // namespace
86
87 #endif