blob: 44d9e6fd20c2b7d45dbd5cc3e4380deca199641a [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
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
26namespace WebCore {
27
Ben Murdochdf957042013-08-06 11:01:27 +010028class ExceptionState;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010029class MeterValueElement;
30class RenderMeter;
31
32class HTMLMeterElement FINAL : public LabelableElement {
33public:
Torne (Richard Coles)32348042014-05-14 12:12:57 +010034 static PassRefPtrWillBeRawPtr<HTMLMeterElement> create(Document&);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010035
36 enum GaugeRegion {
37 GaugeRegionOptimum,
38 GaugeRegionSuboptimal,
39 GaugeRegionEvenLessGood
40 };
41
Torne (Richard Coles)32348042014-05-14 12:12:57 +010042 double value() const;
43 void setValue(double);
44
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010045 double min() const;
Torne (Richard Coles)32348042014-05-14 12:12:57 +010046 void setMin(double);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010047
48 double max() const;
Torne (Richard Coles)32348042014-05-14 12:12:57 +010049 void setMax(double);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010050
51 double low() const;
Torne (Richard Coles)32348042014-05-14 12:12:57 +010052 void setLow(double);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010053
54 double high() const;
Torne (Richard Coles)32348042014-05-14 12:12:57 +010055 void setHigh(double);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010056
57 double optimum() const;
Torne (Richard Coles)32348042014-05-14 12:12:57 +010058 void setOptimum(double);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010059
60 double valueRatio() const;
61 GaugeRegion gaugeRegion() const;
62
Torne (Richard Coles)09380292014-02-21 12:17:33 +000063 virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010064
Torne (Richard Coles)32348042014-05-14 12:12:57 +010065 virtual void trace(Visitor*) OVERRIDE;
66
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010067private:
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000068 explicit HTMLMeterElement(Document&);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010069 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
Torne (Richard Coles)09380292014-02-21 12:17:33 +000076 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010077 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
78
79 void didElementStateChange();
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000080 virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010081
Torne (Richard Coles)32348042014-05-14 12:12:57 +010082 RefPtrWillBeMember<MeterValueElement> m_value;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010083};
84
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010085} // namespace
86
87#endif