OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 bool checkValidity(); | 95 bool checkValidity(); |
96 bool checkValidityWithoutDispatchingEvents(); | 96 bool checkValidityWithoutDispatchingEvents(); |
97 | 97 |
98 enum AutocompleteResult { | 98 enum AutocompleteResult { |
99 AutocompleteResultSuccess, | 99 AutocompleteResultSuccess, |
100 AutocompleteResultErrorDisabled, | 100 AutocompleteResultErrorDisabled, |
101 AutocompleteResultErrorCancel, | 101 AutocompleteResultErrorCancel, |
102 AutocompleteResultErrorInvalid, | 102 AutocompleteResultErrorInvalid, |
103 }; | 103 }; |
104 | 104 |
105 void requestAutocomplete(); | 105 void requestAutocomplete(const Dictionary&); |
106 void finishRequestAutocomplete(AutocompleteResult); | 106 void finishRequestAutocomplete(AutocompleteResult); |
107 | 107 |
108 DEFINE_ATTRIBUTE_EVENT_LISTENER(autocomplete); | 108 DEFINE_ATTRIBUTE_EVENT_LISTENER(autocomplete); |
109 DEFINE_ATTRIBUTE_EVENT_LISTENER(autocompleteerror); | 109 DEFINE_ATTRIBUTE_EVENT_LISTENER(autocompleteerror); |
110 | 110 |
111 RadioButtonGroupScope& radioButtonGroupScope() { return m_radioButtonGroupSc
ope; } | 111 RadioButtonGroupScope& radioButtonGroupScope() { return m_radioButtonGroupSc
ope; } |
112 | 112 |
113 const Vector<FormAssociatedElement*>& associatedElements() const; | 113 const Vector<FormAssociatedElement*>& associatedElements() const; |
114 const Vector<HTMLImageElement*>& imageElements(); | 114 const Vector<HTMLImageElement*>& imageElements(); |
115 | 115 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 | 179 |
180 void requestAutocompleteTimerFired(Timer<HTMLFormElement>*); | 180 void requestAutocompleteTimerFired(Timer<HTMLFormElement>*); |
181 | 181 |
182 WillBePersistentHeapVector<RefPtrWillBeMember<Event> > m_pendingAutocomplete
Events; | 182 WillBePersistentHeapVector<RefPtrWillBeMember<Event> > m_pendingAutocomplete
Events; |
183 Timer<HTMLFormElement> m_requestAutocompleteTimer; | 183 Timer<HTMLFormElement> m_requestAutocompleteTimer; |
184 }; | 184 }; |
185 | 185 |
186 } // namespace WebCore | 186 } // namespace WebCore |
187 | 187 |
188 #endif // HTMLFormElement_h | 188 #endif // HTMLFormElement_h |
OLD | NEW |