OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
5 * (C) 2000 Dirk Mueller (mueller@kde.org) | 5 * (C) 2000 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
7 * Copyright (C) 2010 Google Inc. All rights reserved. | 7 * Copyright (C) 2010 Google Inc. All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "core/html/TypeAhead.h" | 32 #include "core/html/TypeAhead.h" |
33 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 class ExceptionState; | 37 class ExceptionState; |
38 class HTMLOptionElement; | 38 class HTMLOptionElement; |
39 | 39 |
40 class HTMLSelectElement FINAL : public HTMLFormControlElementWithState, public T
ypeAheadDataSource { | 40 class HTMLSelectElement FINAL : public HTMLFormControlElementWithState, public T
ypeAheadDataSource { |
41 public: | 41 public: |
42 static PassRefPtr<HTMLSelectElement> create(Document*); | 42 static PassRefPtr<HTMLSelectElement> create(Document&); |
43 static PassRefPtr<HTMLSelectElement> create(const QualifiedName&, Document*,
HTMLFormElement*, bool createdByParser); | 43 static PassRefPtr<HTMLSelectElement> create(const QualifiedName&, Document&,
HTMLFormElement*, bool createdByParser); |
44 | 44 |
45 int selectedIndex() const; | 45 int selectedIndex() const; |
46 void setSelectedIndex(int); | 46 void setSelectedIndex(int); |
47 | 47 |
48 void optionSelectedByUser(int index, bool dispatchChangeEvent, bool allowMul
tipleSelection = false); | 48 void optionSelectedByUser(int index, bool dispatchChangeEvent, bool allowMul
tipleSelection = false); |
49 | 49 |
50 // For ValidityState | 50 // For ValidityState |
51 virtual String validationMessage() const OVERRIDE; | 51 virtual String validationMessage() const OVERRIDE; |
52 virtual bool valueMissing() const OVERRIDE; | 52 virtual bool valueMissing() const OVERRIDE; |
53 | 53 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 void setActiveSelectionEndIndex(int); | 108 void setActiveSelectionEndIndex(int); |
109 void updateListBoxSelection(bool deselectOtherOptions); | 109 void updateListBoxSelection(bool deselectOtherOptions); |
110 | 110 |
111 // For use in the implementation of HTMLOptionElement. | 111 // For use in the implementation of HTMLOptionElement. |
112 void optionSelectionStateChanged(HTMLOptionElement*, bool optionIsSelected); | 112 void optionSelectionStateChanged(HTMLOptionElement*, bool optionIsSelected); |
113 bool isParsingInProgress() const { return m_isParsingInProgress; } | 113 bool isParsingInProgress() const { return m_isParsingInProgress; } |
114 bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, Excepti
onState&); | 114 bool anonymousIndexedSetter(unsigned, PassRefPtr<HTMLOptionElement>, Excepti
onState&); |
115 bool anonymousIndexedSetterRemove(unsigned, ExceptionState&); | 115 bool anonymousIndexedSetterRemove(unsigned, ExceptionState&); |
116 | 116 |
117 protected: | 117 protected: |
118 HTMLSelectElement(const QualifiedName&, Document*, HTMLFormElement*, bool cr
eatedByParser); | 118 HTMLSelectElement(const QualifiedName&, Document&, HTMLFormElement*, bool cr
eatedByParser); |
119 | 119 |
120 private: | 120 private: |
121 virtual const AtomicString& formControlType() const; | 121 virtual const AtomicString& formControlType() const; |
122 | 122 |
123 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; | 123 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; |
124 | 124 |
125 virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusDirection)
OVERRIDE; | 125 virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusDirection)
OVERRIDE; |
126 virtual void dispatchBlurEvent(Element* newFocusedElemnet) OVERRIDE; | 126 virtual void dispatchBlurEvent(Element* newFocusedElemnet) OVERRIDE; |
127 | 127 |
128 virtual bool canStartSelection() const { return false; } | 128 virtual bool canStartSelection() const { return false; } |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 { | 214 { |
215 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::select
Tag)); | 215 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::select
Tag)); |
216 return static_cast<HTMLSelectElement*>(node); | 216 return static_cast<HTMLSelectElement*>(node); |
217 } | 217 } |
218 | 218 |
219 void toHTMLSelectElement(const HTMLSelectElement*); // This overload will catch
anyone doing an unnecessary cast. | 219 void toHTMLSelectElement(const HTMLSelectElement*); // This overload will catch
anyone doing an unnecessary cast. |
220 | 220 |
221 } // namespace | 221 } // namespace |
222 | 222 |
223 #endif | 223 #endif |
OLD | NEW |