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