| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 virtual bool supportLabels() const override { return true; } | 148 virtual bool supportLabels() const override { return true; } |
| 149 | 149 |
| 150 virtual FormControlState saveFormControlState() const override; | 150 virtual FormControlState saveFormControlState() const override; |
| 151 virtual void restoreFormControlState(const FormControlState&) override; | 151 virtual void restoreFormControlState(const FormControlState&) override; |
| 152 | 152 |
| 153 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 153 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 154 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 154 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
| 155 | 155 |
| 156 virtual LayoutObject* createRenderer(const LayoutStyle&) override; | 156 virtual LayoutObject* createRenderer(const LayoutStyle&) override; |
| 157 virtual bool appendFormData(FormDataList&, bool) override; | 157 virtual bool appendFormData(FormDataList&, bool) override; |
| 158 virtual void didAddUserAgentShadowRoot(ShadowRoot&) override; | 158 virtual void didAddClosedShadowRoot(ShadowRoot&) override; |
| 159 | 159 |
| 160 virtual void defaultEventHandler(Event*) override; | 160 virtual void defaultEventHandler(Event*) override; |
| 161 | 161 |
| 162 void dispatchInputAndChangeEventForMenuList(bool requiresUserGesture = true)
; | 162 void dispatchInputAndChangeEventForMenuList(bool requiresUserGesture = true)
; |
| 163 | 163 |
| 164 void recalcListItems(bool updateSelectedStates = true) const; | 164 void recalcListItems(bool updateSelectedStates = true) const; |
| 165 | 165 |
| 166 void typeAheadFind(KeyboardEvent*); | 166 void typeAheadFind(KeyboardEvent*); |
| 167 void saveLastSelection(); | 167 void saveLastSelection(); |
| 168 | 168 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 bool m_multiple; | 228 bool m_multiple; |
| 229 bool m_activeSelectionState; | 229 bool m_activeSelectionState; |
| 230 mutable bool m_shouldRecalcListItems; | 230 mutable bool m_shouldRecalcListItems; |
| 231 int m_suggestedIndex; | 231 int m_suggestedIndex; |
| 232 bool m_isAutofilledByPreview; | 232 bool m_isAutofilledByPreview; |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 } // namespace blink | 235 } // namespace blink |
| 236 | 236 |
| 237 #endif // HTMLSelectElement_h | 237 #endif // HTMLSelectElement_h |
| OLD | NEW |