| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 virtual double valueAsDouble() const OVERRIDE; | 49 virtual double valueAsDouble() const OVERRIDE; |
| 50 virtual void setValueAsDecimal(const Decimal&, TextFieldEventBehavior, Excep
tionCode&) const OVERRIDE; | 50 virtual void setValueAsDecimal(const Decimal&, TextFieldEventBehavior, Excep
tionCode&) const OVERRIDE; |
| 51 virtual bool typeMismatchFor(const String&) const OVERRIDE; | 51 virtual bool typeMismatchFor(const String&) const OVERRIDE; |
| 52 virtual bool supportsRequired() const OVERRIDE; | 52 virtual bool supportsRequired() const OVERRIDE; |
| 53 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; | 53 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; |
| 54 virtual bool isSteppable() const OVERRIDE; | 54 virtual bool isSteppable() const OVERRIDE; |
| 55 virtual void handleMouseDownEvent(MouseEvent*) OVERRIDE; | 55 virtual void handleMouseDownEvent(MouseEvent*) OVERRIDE; |
| 56 virtual void handleTouchEvent(TouchEvent*) OVERRIDE; | 56 virtual void handleTouchEvent(TouchEvent*) OVERRIDE; |
| 57 virtual bool hasTouchEventHandler() const OVERRIDE; | 57 virtual bool hasTouchEventHandler() const OVERRIDE; |
| 58 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE; | 58 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE; |
| 59 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) const OVERR
IDE; | 59 virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE; |
| 60 virtual void createShadowSubtree() OVERRIDE; | 60 virtual void createShadowSubtree() OVERRIDE; |
| 61 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; | 61 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; |
| 62 virtual String serialize(const Decimal&) const OVERRIDE; | 62 virtual String serialize(const Decimal&) const OVERRIDE; |
| 63 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; | 63 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; |
| 64 virtual void minOrMaxAttributeChanged() OVERRIDE; | 64 virtual void minOrMaxAttributeChanged() OVERRIDE; |
| 65 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or) OVERRIDE; | 65 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or) OVERRIDE; |
| 66 virtual String fallbackValue() const OVERRIDE; | 66 virtual String fallbackValue() const OVERRIDE; |
| 67 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE; | 67 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE; |
| 68 virtual bool shouldRespectListAttribute() OVERRIDE; | 68 virtual bool shouldRespectListAttribute() OVERRIDE; |
| 69 virtual HTMLElement* sliderThumbElement() const OVERRIDE; | 69 virtual HTMLElement* sliderThumbElement() const OVERRIDE; |
| 70 virtual HTMLElement* sliderTrackElement() const OVERRIDE; | 70 virtual HTMLElement* sliderTrackElement() const OVERRIDE; |
| 71 virtual void listAttributeTargetChanged() OVERRIDE; | 71 virtual void listAttributeTargetChanged() OVERRIDE; |
| 72 void updateTickMarkValues(); | 72 void updateTickMarkValues(); |
| 73 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; | 73 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; |
| 74 | 74 |
| 75 bool m_tickMarkValuesDirty; | 75 bool m_tickMarkValuesDirty; |
| 76 Vector<Decimal> m_tickMarkValues; | 76 Vector<Decimal> m_tickMarkValues; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace WebCore | 79 } // namespace WebCore |
| 80 | 80 |
| 81 #endif // RangeInputType_h | 81 #endif // RangeInputType_h |
| OLD | NEW |