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, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 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 HTMLOptGroupElement(const QualifiedName&, Handle<Document>); | 45 HTMLOptGroupElement(const QualifiedName&, Handle<Document>); |
46 | 46 |
47 virtual const AtomicString& formControlType() const; | 47 virtual const AtomicString& formControlType() const; |
48 virtual bool supportsFocus() const; | 48 virtual bool supportsFocus() const; |
49 virtual bool isFocusable() const; | 49 virtual bool isFocusable() const; |
50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
51 virtual bool rendererIsNeeded(const NodeRenderingContext&) { return false; } | 51 virtual bool rendererIsNeeded(const NodeRenderingContext&) { return false; } |
52 virtual void attach(); | 52 virtual void attach(); |
53 virtual void detach(); | 53 virtual void detach(); |
54 | 54 |
55 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); | 55 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); |
56 | 56 |
57 virtual void accessKeyAction(bool sendMouseEvents); | 57 virtual void accessKeyAction(bool sendMouseEvents); |
58 | 58 |
59 // <optgroup> never has a renderer so we manually manage a cached style. | 59 // <optgroup> never has a renderer so we manually manage a cached style. |
60 void updateNonRenderStyle(); | 60 void updateNonRenderStyle(); |
61 virtual RenderStyle* nonRendererStyle() const OVERRIDE; | 61 virtual RenderStyle* nonRendererStyle() const OVERRIDE; |
62 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; | 62 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE; |
63 | 63 |
64 void recalcSelectOptions(); | 64 void recalcSelectOptions(); |
65 | 65 |
66 RefPtr<RenderStyle> m_style; | 66 RefPtr<RenderStyle> m_style; |
67 }; | 67 }; |
68 | 68 |
69 } //namespace | 69 } //namespace |
70 | 70 |
71 #endif | 71 #endif |
OLD | NEW |