| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 public: | 52 public: |
| 53 virtual ~FieldOwner(); | 53 virtual ~FieldOwner(); |
| 54 virtual void didBlurFromField() = 0; | 54 virtual void didBlurFromField() = 0; |
| 55 virtual void didFocusOnField() = 0; | 55 virtual void didFocusOnField() = 0; |
| 56 virtual void fieldValueChanged() = 0; | 56 virtual void fieldValueChanged() = 0; |
| 57 virtual bool focusOnNextField(const DateTimeFieldElement&) = 0; | 57 virtual bool focusOnNextField(const DateTimeFieldElement&) = 0; |
| 58 virtual bool focusOnPreviousField(const DateTimeFieldElement&) = 0; | 58 virtual bool focusOnPreviousField(const DateTimeFieldElement&) = 0; |
| 59 virtual bool isFieldOwnerDisabled() const = 0; | 59 virtual bool isFieldOwnerDisabled() const = 0; |
| 60 virtual bool isFieldOwnerReadOnly() const = 0; | 60 virtual bool isFieldOwnerReadOnly() const = 0; |
| 61 virtual AtomicString localeIdentifier() const = 0; | 61 virtual AtomicString localeIdentifier() const = 0; |
| 62 virtual void fieldDidChangeValueByKeyboard() = 0; |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 virtual void defaultEventHandler(Event*) OVERRIDE; | 65 virtual void defaultEventHandler(Event*) OVERRIDE; |
| 65 virtual bool hasValue() const = 0; | 66 virtual bool hasValue() const = 0; |
| 66 bool isDisabled() const; | 67 bool isDisabled() const; |
| 67 virtual float maximumWidth(const Font&); | 68 virtual float maximumWidth(const Font&); |
| 68 virtual void populateDateTimeFieldsState(DateTimeFieldsState&) = 0; | 69 virtual void populateDateTimeFieldsState(DateTimeFieldsState&) = 0; |
| 69 void removeEventHandler() { m_fieldOwner = 0; } | 70 void removeEventHandler() { m_fieldOwner = 0; } |
| 70 void setDisabled(); | 71 void setDisabled(); |
| 71 virtual void setEmptyValue(EventBehavior = DispatchNoEvent) = 0; | 72 virtual void setEmptyValue(EventBehavior = DispatchNoEvent) = 0; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 97 bool isFieldOwnerReadOnly() const; | 98 bool isFieldOwnerReadOnly() const; |
| 98 virtual bool supportsFocus() const OVERRIDE FINAL; | 99 virtual bool supportsFocus() const OVERRIDE FINAL; |
| 99 | 100 |
| 100 FieldOwner* m_fieldOwner; | 101 FieldOwner* m_fieldOwner; |
| 101 }; | 102 }; |
| 102 | 103 |
| 103 } // namespace WebCore | 104 } // namespace WebCore |
| 104 | 105 |
| 105 #endif | 106 #endif |
| 106 #endif | 107 #endif |
| OLD | NEW |