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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 HTMLFormElement* form() const { return FormAssociatedElement::form(); } | 46 HTMLFormElement* form() const { return FormAssociatedElement::form(); } |
47 | 47 |
48 String formEnctype() const; | 48 String formEnctype() const; |
49 void setFormEnctype(const String&); | 49 void setFormEnctype(const String&); |
50 String formMethod() const; | 50 String formMethod() const; |
51 void setFormMethod(const String&); | 51 void setFormMethod(const String&); |
52 bool formNoValidate() const; | 52 bool formNoValidate() const; |
53 | 53 |
54 void updateFieldSetAndLegendAncestor() const; | 54 void updateFieldSetAndLegendAncestor() const; |
| 55 void ancestorDisabledStateWasChanged(); |
55 | 56 |
56 virtual void reset() { } | 57 virtual void reset() { } |
57 | 58 |
58 virtual bool formControlValueMatchesRenderer() const { return m_valueMatches
Renderer; } | 59 virtual bool formControlValueMatchesRenderer() const { return m_valueMatches
Renderer; } |
59 virtual void setFormControlValueMatchesRenderer(bool b) { m_valueMatchesRend
erer = b; } | 60 virtual void setFormControlValueMatchesRenderer(bool b) { m_valueMatchesRend
erer = b; } |
60 | 61 |
61 virtual bool wasChangedSinceLastFormControlChangeEvent() const; | 62 virtual bool wasChangedSinceLastFormControlChangeEvent() const; |
62 virtual void setChangedSinceLastFormControlChangeEvent(bool); | 63 virtual void setChangedSinceLastFormControlChangeEvent(bool); |
63 | 64 |
64 virtual void dispatchFormControlChangeEvent(); | 65 virtual void dispatchFormControlChangeEvent(); |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 bool m_isValid : 1; | 174 bool m_isValid : 1; |
174 | 175 |
175 bool m_wasChangedSinceLastFormControlChangeEvent : 1; | 176 bool m_wasChangedSinceLastFormControlChangeEvent : 1; |
176 | 177 |
177 bool m_hasAutofocused : 1; | 178 bool m_hasAutofocused : 1; |
178 }; | 179 }; |
179 | 180 |
180 } // namespace | 181 } // namespace |
181 | 182 |
182 #endif | 183 #endif |
OLD | NEW |