| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 void resetFormOwner(HTMLFormElement*); | 102 void resetFormOwner(HTMLFormElement*); |
| 103 virtual void attributeChanged(Attribute*, bool preserveDecls = false); | 103 virtual void attributeChanged(Attribute*, bool preserveDecls = false); |
| 104 | 104 |
| 105 protected: | 105 protected: |
| 106 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElem
ent*); | 106 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElem
ent*); |
| 107 | 107 |
| 108 virtual void parseMappedAttribute(Attribute*); | 108 virtual void parseMappedAttribute(Attribute*); |
| 109 virtual void attach(); | 109 virtual void attach(); |
| 110 virtual void insertedIntoTree(bool deep); | 110 virtual void insertedIntoTree(bool deep); |
| 111 virtual void removedFromTree(bool deep); | 111 virtual void removedFromTree(bool deep); |
| 112 virtual void insertedIntoDocument(); | |
| 113 virtual void removedFromDocument(); | |
| 114 virtual void willMoveToNewOwnerDocument(); | 112 virtual void willMoveToNewOwnerDocument(); |
| 115 | 113 |
| 116 virtual bool isKeyboardFocusable(KeyboardEvent*) const; | 114 virtual bool isKeyboardFocusable(KeyboardEvent*) const; |
| 117 virtual bool isMouseFocusable() const; | 115 virtual bool isMouseFocusable() const; |
| 118 | 116 |
| 119 virtual void recalcStyle(StyleChange); | 117 virtual void recalcStyle(StyleChange); |
| 120 | 118 |
| 121 virtual void dispatchFocusEvent(); | 119 virtual void dispatchFocusEvent(); |
| 122 virtual void dispatchBlurEvent(); | 120 virtual void dispatchBlurEvent(); |
| 123 virtual void detach(); | 121 virtual void detach(); |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 virtual void handleFocusEvent() { } | 225 virtual void handleFocusEvent() { } |
| 228 // Called in dispatchBlurEvent(), after placeholder process, before calling
parent's dispatchBlurEvent(). | 226 // Called in dispatchBlurEvent(), after placeholder process, before calling
parent's dispatchBlurEvent(). |
| 229 virtual void handleBlurEvent() { } | 227 virtual void handleBlurEvent() { } |
| 230 | 228 |
| 231 RenderTextControl* textRendererAfterUpdateLayout(); | 229 RenderTextControl* textRendererAfterUpdateLayout(); |
| 232 }; | 230 }; |
| 233 | 231 |
| 234 } // namespace | 232 } // namespace |
| 235 | 233 |
| 236 #endif | 234 #endif |
| OLD | NEW |