1 /* 2 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/) 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Library General Public 6 * License as published by the Free Software Foundation; either 7 * version 2 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Library General Public License for more details. 13 * 14 * You should have received a copy of the GNU Library General Public License 15 * along with this library; see the file COPYING.LIB. If not, write to 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * Boston, MA 02110-1301, USA. 18 * 19 */ 20 21 #ifndef OptionElement_h 22 #define OptionElement_h 23 24 #include "PlatformString.h" 25 26 namespace WebCore { 27 28 class Element; 29 class Document; 30 class OptionElementData; 31 class SelectElement; 32 33 class OptionElement { 34 public: 35 virtual ~OptionElement() { } 36 37 virtual bool selected() const = 0; 38 virtual void setSelectedState(bool) = 0; 39 40 virtual String text() const = 0; 41 virtual String textIndentedToRespectGroupLabel() const = 0; 42 virtual String value() const = 0; 43 44 protected: 45 static void setSelectedState(OptionElementData&, Element*, bool selected); 46 static int optionIndex(SelectElement*, const Element*); 47 static String collectOptionLabelOrText(const OptionElementData&, const Element*); 48 static String collectOptionTextRespectingGroupLabel(const OptionElementData&, const Element*); 49 static String collectOptionValue(const OptionElementData&, const Element*); 50 private: 51 static String collectOptionInnerText(const Element*); 52 static String normalizeText(const Document*, const String&); 53 }; 54 55 // HTML/WMLOptionElement hold this struct as member variable 56 // and pass it to the static helper functions in OptionElement 57 class OptionElementData { 58 public: 59 OptionElementData(); 60 61 String value() const { return m_value; } 62 void setValue(const String& value) { m_value = value; } 63 64 String label() const { return m_label; } 65 void setLabel(const String& label) { m_label = label; } 66 67 bool selected() const { return m_selected; } 68 void setSelected(bool selected) { m_selected = selected; } 69 70 private: 71 String m_value; 72 String m_label; 73 bool m_selected; 74 }; 75 76 OptionElement* toOptionElement(Element*); 77 bool isOptionElement(Element*); 78 79 } 80 81 #endif 82