| 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 void handleKeydownEvent(KeyboardEvent*); | 61 virtual void handleKeydownEvent(KeyboardEvent*); |
| 62 virtual void handleWheelEvent(WheelEvent*); | 62 virtual void handleWheelEvent(WheelEvent*); |
| 63 virtual double parseToDouble(const String&, double) const; | 63 virtual double parseToDouble(const String&, double) const; |
| 64 virtual double parseToDoubleWithDecimalPlaces(const String&, double, unsigne
d*) const; | 64 virtual double parseToDoubleWithDecimalPlaces(const String&, double, unsigne
d*) const; |
| 65 virtual String serialize(double) const; | 65 virtual String serialize(double) const; |
| 66 virtual double acceptableError(double) const; | 66 virtual double acceptableError(double) const; |
| 67 virtual void willBlur(); | 67 virtual void willBlur(); |
| 68 virtual String visibleValue() const; | 68 virtual String visibleValue() const; |
| 69 virtual String convertFromVisibleValue(const String&) const; | 69 virtual String convertFromVisibleValue(const String&) const; |
| 70 virtual bool isAcceptableValue(const String&); | 70 virtual bool isAcceptableValue(const String&); |
| 71 virtual String sanitizeValue(const String&); | 71 virtual String sanitizeValue(const String&) const; |
| 72 virtual bool hasUnacceptableValue(); | 72 virtual bool hasUnacceptableValue(); |
| 73 virtual bool shouldRespectSpeechAttribute(); | 73 virtual bool shouldRespectSpeechAttribute(); |
| 74 virtual bool supportsPlaceholder() const; | 74 virtual bool supportsPlaceholder() const; |
| 75 virtual bool isNumberField() const; | 75 virtual bool isNumberField() const; |
| 76 virtual void minOrMaxAttributeChanged(); | 76 virtual void minOrMaxAttributeChanged(); |
| 77 virtual void stepAttributeChanged(); | 77 virtual void stepAttributeChanged(); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace WebCore | 80 } // namespace WebCore |
| 81 | 81 |
| 82 #endif // NumberInputType_h | 82 #endif // NumberInputType_h |
| OLD | NEW |