| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 #if ENABLE(DATALIST_ELEMENT) | |
| 72 virtual void listAttributeTargetChanged() OVERRIDE; | 71 virtual void listAttributeTargetChanged() OVERRIDE; |
| 73 void updateTickMarkValues(); | 72 void updateTickMarkValues(); |
| 74 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; | 73 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; |
| 75 | 74 |
| 76 bool m_tickMarkValuesDirty; | 75 bool m_tickMarkValuesDirty; |
| 77 Vector<Decimal> m_tickMarkValues; | 76 Vector<Decimal> m_tickMarkValues; |
| 78 #endif | |
| 79 }; | 77 }; |
| 80 | 78 |
| 81 } // namespace WebCore | 79 } // namespace WebCore |
| 82 | 80 |
| 83 #endif // RangeInputType_h | 81 #endif // RangeInputType_h |
| OLD | NEW |