1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef HTMLInputElement_h
#define HTMLInputElement_h
#include "HTMLFormControlElement.h"
#include <wtf/OwnPtr.h>
namespace WebCore {
class HTMLImageLoader;
class KURL;
class Selection;
class HTMLInputElement : public HTMLFormControlElementWithState {
public:
enum InputType {
TEXT,
PASSWORD,
ISINDEX,
CHECKBOX,
RADIO,
SUBMIT,
RESET,
FILE,
HIDDEN,
IMAGE,
BUTTON,
SEARCH,
RANGE
};
HTMLInputElement(Document*, HTMLFormElement* = 0);
HTMLInputElement(const QualifiedName& tagName, Document*, HTMLFormElement* = 0);
virtual ~HTMLInputElement();
virtual HTMLTagStatus endTagRequirement() const { return TagStatusForbidden; }
virtual int tagPriority() const { return 0; }
virtual bool isKeyboardFocusable(KeyboardEvent*) const;
virtual bool isMouseFocusable() const;
virtual bool isEnumeratable() const { return inputType() != IMAGE; }
virtual void dispatchFocusEvent();
virtual void dispatchBlurEvent();
virtual void updateFocusAppearance(bool restorePreviousSelection);
virtual void aboutToUnload();
virtual bool shouldUseInputMethod() const;
virtual const AtomicString& name() const;
bool autoComplete() const { return m_autocomplete; }
// isChecked is used by the rendering tree/CSS while checked() is used by JS to determine checked state
virtual bool isChecked() const { return checked() && (inputType() == CHECKBOX || inputType() == RADIO); }
virtual bool isIndeterminate() const { return indeterminate(); }
bool readOnly() const { return isReadOnlyControl(); }
bool isTextButton() const { return m_type == SUBMIT || m_type == RESET || m_type == BUTTON; }
virtual bool isRadioButton() const { return m_type == RADIO; }
bool isTextField() const { return m_type == TEXT || m_type == PASSWORD || m_type == SEARCH || m_type == ISINDEX; }
bool isSearchField() const { return m_type == SEARCH; }
virtual bool isInputTypeHidden() const { return m_type == HIDDEN; }
virtual bool isPasswordField() const { return m_type == PASSWORD; }
bool checked() const { return m_checked; }
void setChecked(bool, bool sendChangeEvent = false);
bool indeterminate() const { return m_indeterminate; }
void setIndeterminate(bool);
int maxLength() const { return m_maxLen; }
int size() const { return m_size; }
virtual const AtomicString& type() const;
void setType(const String&);
String value() const;
void setValue(const String&);
String valueWithDefault() const;
void setValueFromRenderer(const String&);
virtual bool saveState(String& value) const;
virtual void restoreState(const String&);
virtual bool canStartSelection() const;
bool canHaveSelection() const;
int selectionStart() const;
int selectionEnd() const;
void setSelectionStart(int);
void setSelectionEnd(int);
void select();
void setSelectionRange(int start, int end);
virtual void accessKeyAction(bool sendToAnyElement);
virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
virtual void parseMappedAttribute(MappedAttribute*);
virtual void copyNonAttributeProperties(const Element* source);
virtual void attach();
virtual bool rendererIsNeeded(RenderStyle*);
virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
virtual void detach();
virtual bool appendFormData(FormDataList&, bool);
virtual bool isSuccessfulSubmitButton() const;
virtual bool isActivatedSubmit() const;
virtual void setActivatedSubmit(bool flag);
InputType inputType() const { return static_cast<InputType>(m_type); }
void setInputType(const String&);
// Report if this input type uses height & width attributes
bool respectHeightAndWidthAttrs() const { return inputType() == IMAGE || inputType() == HIDDEN; }
virtual void reset();
virtual void* preDispatchEventHandler(Event*);
virtual void postDispatchEventHandler(Event*, void* dataFromPreDispatch);
virtual void defaultEventHandler(Event*);
String altText() const;
virtual bool isURLAttribute(Attribute*) const;
int maxResults() const { return m_maxResults; }
String defaultValue() const;
void setDefaultValue(const String&);
bool defaultChecked() const;
void setDefaultChecked(bool);
String accept() const;
void setAccept(const String&);
String accessKey() const;
void setAccessKey(const String&);
String align() const;
void setAlign(const String&);
String alt() const;
void setAlt(const String&);
void setSize(unsigned);
KURL src() const;
void setSrc(const String&);
void setMaxLength(int);
String useMap() const;
void setUseMap(const String&);
bool autofilled() const { return m_autofilled; }
void setAutofilled(bool b = true) { m_autofilled = b; }
void cacheSelection(int s, int e) { cachedSelStart = s; cachedSelEnd = e; };
void addSearchResult();
void onSearch();
Selection selection() const;
String constrainValue(const String& proposedValue) const;
virtual void didRestoreFromCache();
virtual void getSubresourceAttributeStrings(Vector<String>&) const;
protected:
virtual void willMoveToNewOwnerDocument();
virtual void didMoveToNewOwnerDocument();
AtomicString m_name;
private:
void init();
bool storesValueSeparateFromAttribute() const;
String constrainValue(const String& proposedValue, int maxLen) const;
void recheckValue();
String m_value;
String m_originalValue;
int xPos;
int m_maxLen;
short m_size;
short yPos;
short m_maxResults;
OwnPtr<HTMLImageLoader> m_imageLoader;
unsigned m_type : 4; // InputType
bool m_checked : 1;
bool m_defaultChecked : 1;
bool m_useDefaultChecked : 1;
bool m_indeterminate : 1;
bool m_haveType : 1;
bool m_activeSubmit : 1;
bool m_autocomplete : 1;
bool m_autofilled : 1;
bool m_inited : 1;
int cachedSelStart;
int cachedSelEnd;
};
} //namespace
#endif
|