OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 21 matching lines...) Expand all Loading... |
32 class HTMLMeterElement FINAL : public LabelableElement { | 32 class HTMLMeterElement FINAL : public LabelableElement { |
33 public: | 33 public: |
34 static PassRefPtr<HTMLMeterElement> create(Document&); | 34 static PassRefPtr<HTMLMeterElement> create(Document&); |
35 | 35 |
36 enum GaugeRegion { | 36 enum GaugeRegion { |
37 GaugeRegionOptimum, | 37 GaugeRegionOptimum, |
38 GaugeRegionSuboptimal, | 38 GaugeRegionSuboptimal, |
39 GaugeRegionEvenLessGood | 39 GaugeRegionEvenLessGood |
40 }; | 40 }; |
41 | 41 |
| 42 double value() const; |
| 43 void setValue(double); |
| 44 |
42 double min() const; | 45 double min() const; |
43 void setMin(double, ExceptionState&); | 46 void setMin(double); |
44 | 47 |
45 double max() const; | 48 double max() const; |
46 void setMax(double, ExceptionState&); | 49 void setMax(double); |
47 | |
48 double value() const; | |
49 void setValue(double, ExceptionState&); | |
50 | 50 |
51 double low() const; | 51 double low() const; |
52 void setLow(double, ExceptionState&); | 52 void setLow(double); |
53 | 53 |
54 double high() const; | 54 double high() const; |
55 void setHigh(double, ExceptionState&); | 55 void setHigh(double); |
56 | 56 |
57 double optimum() const; | 57 double optimum() const; |
58 void setOptimum(double, ExceptionState&); | 58 void setOptimum(double); |
59 | 59 |
60 double valueRatio() const; | 60 double valueRatio() const; |
61 GaugeRegion gaugeRegion() const; | 61 GaugeRegion gaugeRegion() const; |
62 | 62 |
63 virtual bool canContainRangeEndPoint() const OVERRIDE { return false; } | 63 virtual bool canContainRangeEndPoint() const OVERRIDE { return false; } |
64 | 64 |
65 private: | 65 private: |
66 explicit HTMLMeterElement(Document&); | 66 explicit HTMLMeterElement(Document&); |
67 virtual ~HTMLMeterElement(); | 67 virtual ~HTMLMeterElement(); |
68 | 68 |
69 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } | 69 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } |
70 RenderMeter* renderMeter() const; | 70 RenderMeter* renderMeter() const; |
71 | 71 |
72 virtual bool supportLabels() const OVERRIDE { return true; } | 72 virtual bool supportLabels() const OVERRIDE { return true; } |
73 | 73 |
74 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; | 74 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
75 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 75 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
76 | 76 |
77 void didElementStateChange(); | 77 void didElementStateChange(); |
78 virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE; | 78 virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE; |
79 | 79 |
80 RefPtr<MeterValueElement> m_value; | 80 RefPtr<MeterValueElement> m_value; |
81 }; | 81 }; |
82 | 82 |
83 } // namespace | 83 } // namespace |
84 | 84 |
85 #endif | 85 #endif |
OLD | NEW |