OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0
-Release/WINNT_5.2_Depend/mozilla/dom/public/idl/html/nsIDOMHTMLInputElement.idl |
| 3 */ |
| 4 |
| 5 #ifndef __gen_nsIDOMHTMLInputElement_h__ |
| 6 #define __gen_nsIDOMHTMLInputElement_h__ |
| 7 |
| 8 |
| 9 #ifndef __gen_nsIDOMHTMLElement_h__ |
| 10 #include "nsIDOMHTMLElement.h" |
| 11 #endif |
| 12 |
| 13 /* For IDL files that don't want to include root IDL files. */ |
| 14 #ifndef NS_NO_VTABLE |
| 15 #define NS_NO_VTABLE |
| 16 #endif |
| 17 |
| 18 /* starting interface: nsIDOMHTMLInputElement */ |
| 19 #define NS_IDOMHTMLINPUTELEMENT_IID_STR "a6cf9093-15b3-11d2-932e-00805f8add32" |
| 20 |
| 21 #define NS_IDOMHTMLINPUTELEMENT_IID \ |
| 22 {0xa6cf9093, 0x15b3, 0x11d2, \ |
| 23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} |
| 24 |
| 25 /** |
| 26 * The nsIDOMHTMLInputElement interface is the interface to a [X]HTML |
| 27 * input element. |
| 28 * |
| 29 * For more information on this interface please see |
| 30 * http://www.w3.org/TR/DOM-Level-2-HTML/ |
| 31 * |
| 32 * @status FROZEN |
| 33 */ |
| 34 class NS_NO_VTABLE nsIDOMHTMLInputElement : public nsIDOMHTMLElement { |
| 35 public: |
| 36 |
| 37 NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLINPUTELEMENT_IID) |
| 38 |
| 39 /* attribute DOMString defaultValue; */ |
| 40 NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) = 0; |
| 41 NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) = 0; |
| 42 |
| 43 /* attribute boolean defaultChecked; */ |
| 44 NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) = 0; |
| 45 NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) = 0; |
| 46 |
| 47 /* readonly attribute nsIDOMHTMLFormElement form; */ |
| 48 NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) = 0; |
| 49 |
| 50 /* attribute DOMString accept; */ |
| 51 NS_IMETHOD GetAccept(nsAString & aAccept) = 0; |
| 52 NS_IMETHOD SetAccept(const nsAString & aAccept) = 0; |
| 53 |
| 54 /* attribute DOMString accessKey; */ |
| 55 NS_IMETHOD GetAccessKey(nsAString & aAccessKey) = 0; |
| 56 NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) = 0; |
| 57 |
| 58 /* attribute DOMString align; */ |
| 59 NS_IMETHOD GetAlign(nsAString & aAlign) = 0; |
| 60 NS_IMETHOD SetAlign(const nsAString & aAlign) = 0; |
| 61 |
| 62 /* attribute DOMString alt; */ |
| 63 NS_IMETHOD GetAlt(nsAString & aAlt) = 0; |
| 64 NS_IMETHOD SetAlt(const nsAString & aAlt) = 0; |
| 65 |
| 66 /* attribute boolean checked; */ |
| 67 NS_IMETHOD GetChecked(PRBool *aChecked) = 0; |
| 68 NS_IMETHOD SetChecked(PRBool aChecked) = 0; |
| 69 |
| 70 /* attribute boolean disabled; */ |
| 71 NS_IMETHOD GetDisabled(PRBool *aDisabled) = 0; |
| 72 NS_IMETHOD SetDisabled(PRBool aDisabled) = 0; |
| 73 |
| 74 /* attribute long maxLength; */ |
| 75 NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) = 0; |
| 76 NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) = 0; |
| 77 |
| 78 /* attribute DOMString name; */ |
| 79 NS_IMETHOD GetName(nsAString & aName) = 0; |
| 80 NS_IMETHOD SetName(const nsAString & aName) = 0; |
| 81 |
| 82 /* attribute boolean readOnly; */ |
| 83 NS_IMETHOD GetReadOnly(PRBool *aReadOnly) = 0; |
| 84 NS_IMETHOD SetReadOnly(PRBool aReadOnly) = 0; |
| 85 |
| 86 /* attribute unsigned long size; */ |
| 87 NS_IMETHOD GetSize(PRUint32 *aSize) = 0; |
| 88 NS_IMETHOD SetSize(PRUint32 aSize) = 0; |
| 89 |
| 90 /* attribute DOMString src; */ |
| 91 NS_IMETHOD GetSrc(nsAString & aSrc) = 0; |
| 92 NS_IMETHOD SetSrc(const nsAString & aSrc) = 0; |
| 93 |
| 94 /* attribute long tabIndex; */ |
| 95 NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) = 0; |
| 96 NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) = 0; |
| 97 |
| 98 /* attribute DOMString type; */ |
| 99 NS_IMETHOD GetType(nsAString & aType) = 0; |
| 100 NS_IMETHOD SetType(const nsAString & aType) = 0; |
| 101 |
| 102 /* attribute DOMString useMap; */ |
| 103 NS_IMETHOD GetUseMap(nsAString & aUseMap) = 0; |
| 104 NS_IMETHOD SetUseMap(const nsAString & aUseMap) = 0; |
| 105 |
| 106 /* attribute DOMString value; */ |
| 107 NS_IMETHOD GetValue(nsAString & aValue) = 0; |
| 108 NS_IMETHOD SetValue(const nsAString & aValue) = 0; |
| 109 |
| 110 /* void blur (); */ |
| 111 NS_IMETHOD Blur(void) = 0; |
| 112 |
| 113 /* void focus (); */ |
| 114 NS_IMETHOD Focus(void) = 0; |
| 115 |
| 116 /* void select (); */ |
| 117 NS_IMETHOD Select(void) = 0; |
| 118 |
| 119 /* void click (); */ |
| 120 NS_IMETHOD Click(void) = 0; |
| 121 |
| 122 }; |
| 123 |
| 124 /* Use this macro when declaring classes that implement this interface. */ |
| 125 #define NS_DECL_NSIDOMHTMLINPUTELEMENT \ |
| 126 NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue); \ |
| 127 NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue); \ |
| 128 NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked); \ |
| 129 NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked); \ |
| 130 NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm); \ |
| 131 NS_IMETHOD GetAccept(nsAString & aAccept); \ |
| 132 NS_IMETHOD SetAccept(const nsAString & aAccept); \ |
| 133 NS_IMETHOD GetAccessKey(nsAString & aAccessKey); \ |
| 134 NS_IMETHOD SetAccessKey(const nsAString & aAccessKey); \ |
| 135 NS_IMETHOD GetAlign(nsAString & aAlign); \ |
| 136 NS_IMETHOD SetAlign(const nsAString & aAlign); \ |
| 137 NS_IMETHOD GetAlt(nsAString & aAlt); \ |
| 138 NS_IMETHOD SetAlt(const nsAString & aAlt); \ |
| 139 NS_IMETHOD GetChecked(PRBool *aChecked); \ |
| 140 NS_IMETHOD SetChecked(PRBool aChecked); \ |
| 141 NS_IMETHOD GetDisabled(PRBool *aDisabled); \ |
| 142 NS_IMETHOD SetDisabled(PRBool aDisabled); \ |
| 143 NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength); \ |
| 144 NS_IMETHOD SetMaxLength(PRInt32 aMaxLength); \ |
| 145 NS_IMETHOD GetName(nsAString & aName); \ |
| 146 NS_IMETHOD SetName(const nsAString & aName); \ |
| 147 NS_IMETHOD GetReadOnly(PRBool *aReadOnly); \ |
| 148 NS_IMETHOD SetReadOnly(PRBool aReadOnly); \ |
| 149 NS_IMETHOD GetSize(PRUint32 *aSize); \ |
| 150 NS_IMETHOD SetSize(PRUint32 aSize); \ |
| 151 NS_IMETHOD GetSrc(nsAString & aSrc); \ |
| 152 NS_IMETHOD SetSrc(const nsAString & aSrc); \ |
| 153 NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex); \ |
| 154 NS_IMETHOD SetTabIndex(PRInt32 aTabIndex); \ |
| 155 NS_IMETHOD GetType(nsAString & aType); \ |
| 156 NS_IMETHOD SetType(const nsAString & aType); \ |
| 157 NS_IMETHOD GetUseMap(nsAString & aUseMap); \ |
| 158 NS_IMETHOD SetUseMap(const nsAString & aUseMap); \ |
| 159 NS_IMETHOD GetValue(nsAString & aValue); \ |
| 160 NS_IMETHOD SetValue(const nsAString & aValue); \ |
| 161 NS_IMETHOD Blur(void); \ |
| 162 NS_IMETHOD Focus(void); \ |
| 163 NS_IMETHOD Select(void); \ |
| 164 NS_IMETHOD Click(void); |
| 165 |
| 166 /* Use this macro to declare functions that forward the behavior of this interfa
ce to another object. */ |
| 167 #define NS_FORWARD_NSIDOMHTMLINPUTELEMENT(_to) \ |
| 168 NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) { return _to GetDefaultV
alue(aDefaultValue); } \ |
| 169 NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) { return _to SetDe
faultValue(aDefaultValue); } \ |
| 170 NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) { return _to GetDefaultC
hecked(aDefaultChecked); } \ |
| 171 NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) { return _to SetDefaultCh
ecked(aDefaultChecked); } \ |
| 172 NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return _to GetForm(aForm)
; } \ |
| 173 NS_IMETHOD GetAccept(nsAString & aAccept) { return _to GetAccept(aAccept); } \ |
| 174 NS_IMETHOD SetAccept(const nsAString & aAccept) { return _to SetAccept(aAccept
); } \ |
| 175 NS_IMETHOD GetAccessKey(nsAString & aAccessKey) { return _to GetAccessKey(aAcc
essKey); } \ |
| 176 NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) { return _to SetAccessKe
y(aAccessKey); } \ |
| 177 NS_IMETHOD GetAlign(nsAString & aAlign) { return _to GetAlign(aAlign); } \ |
| 178 NS_IMETHOD SetAlign(const nsAString & aAlign) { return _to SetAlign(aAlign); }
\ |
| 179 NS_IMETHOD GetAlt(nsAString & aAlt) { return _to GetAlt(aAlt); } \ |
| 180 NS_IMETHOD SetAlt(const nsAString & aAlt) { return _to SetAlt(aAlt); } \ |
| 181 NS_IMETHOD GetChecked(PRBool *aChecked) { return _to GetChecked(aChecked); } \ |
| 182 NS_IMETHOD SetChecked(PRBool aChecked) { return _to SetChecked(aChecked); } \ |
| 183 NS_IMETHOD GetDisabled(PRBool *aDisabled) { return _to GetDisabled(aDisabled);
} \ |
| 184 NS_IMETHOD SetDisabled(PRBool aDisabled) { return _to SetDisabled(aDisabled);
} \ |
| 185 NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) { return _to GetMaxLength(aMaxLen
gth); } \ |
| 186 NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) { return _to SetMaxLength(aMaxLeng
th); } \ |
| 187 NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } \ |
| 188 NS_IMETHOD SetName(const nsAString & aName) { return _to SetName(aName); } \ |
| 189 NS_IMETHOD GetReadOnly(PRBool *aReadOnly) { return _to GetReadOnly(aReadOnly);
} \ |
| 190 NS_IMETHOD SetReadOnly(PRBool aReadOnly) { return _to SetReadOnly(aReadOnly);
} \ |
| 191 NS_IMETHOD GetSize(PRUint32 *aSize) { return _to GetSize(aSize); } \ |
| 192 NS_IMETHOD SetSize(PRUint32 aSize) { return _to SetSize(aSize); } \ |
| 193 NS_IMETHOD GetSrc(nsAString & aSrc) { return _to GetSrc(aSrc); } \ |
| 194 NS_IMETHOD SetSrc(const nsAString & aSrc) { return _to SetSrc(aSrc); } \ |
| 195 NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) { return _to GetTabIndex(aTabIndex)
; } \ |
| 196 NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) { return _to SetTabIndex(aTabIndex);
} \ |
| 197 NS_IMETHOD GetType(nsAString & aType) { return _to GetType(aType); } \ |
| 198 NS_IMETHOD SetType(const nsAString & aType) { return _to SetType(aType); } \ |
| 199 NS_IMETHOD GetUseMap(nsAString & aUseMap) { return _to GetUseMap(aUseMap); } \ |
| 200 NS_IMETHOD SetUseMap(const nsAString & aUseMap) { return _to SetUseMap(aUseMap
); } \ |
| 201 NS_IMETHOD GetValue(nsAString & aValue) { return _to GetValue(aValue); } \ |
| 202 NS_IMETHOD SetValue(const nsAString & aValue) { return _to SetValue(aValue); }
\ |
| 203 NS_IMETHOD Blur(void) { return _to Blur(); } \ |
| 204 NS_IMETHOD Focus(void) { return _to Focus(); } \ |
| 205 NS_IMETHOD Select(void) { return _to Select(); } \ |
| 206 NS_IMETHOD Click(void) { return _to Click(); } |
| 207 |
| 208 /* Use this macro to declare functions that forward the behavior of this interfa
ce to another object in a safe way. */ |
| 209 #define NS_FORWARD_SAFE_NSIDOMHTMLINPUTELEMENT(_to) \ |
| 210 NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) { return !_to ? NS_ERROR
_NULL_POINTER : _to->GetDefaultValue(aDefaultValue); } \ |
| 211 NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) { return !_to ? NS
_ERROR_NULL_POINTER : _to->SetDefaultValue(aDefaultValue); } \ |
| 212 NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) { return !_to ? NS_ERROR
_NULL_POINTER : _to->GetDefaultChecked(aDefaultChecked); } \ |
| 213 NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) { return !_to ? NS_ERROR_
NULL_POINTER : _to->SetDefaultChecked(aDefaultChecked); } \ |
| 214 NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return !_to ? NS_ERROR_NU
LL_POINTER : _to->GetForm(aForm); } \ |
| 215 NS_IMETHOD GetAccept(nsAString & aAccept) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->GetAccept(aAccept); } \ |
| 216 NS_IMETHOD SetAccept(const nsAString & aAccept) { return !_to ? NS_ERROR_NULL_
POINTER : _to->SetAccept(aAccept); } \ |
| 217 NS_IMETHOD GetAccessKey(nsAString & aAccessKey) { return !_to ? NS_ERROR_NULL_
POINTER : _to->GetAccessKey(aAccessKey); } \ |
| 218 NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) { return !_to ? NS_ERROR
_NULL_POINTER : _to->SetAccessKey(aAccessKey); } \ |
| 219 NS_IMETHOD GetAlign(nsAString & aAlign) { return !_to ? NS_ERROR_NULL_POINTER
: _to->GetAlign(aAlign); } \ |
| 220 NS_IMETHOD SetAlign(const nsAString & aAlign) { return !_to ? NS_ERROR_NULL_PO
INTER : _to->SetAlign(aAlign); } \ |
| 221 NS_IMETHOD GetAlt(nsAString & aAlt) { return !_to ? NS_ERROR_NULL_POINTER : _t
o->GetAlt(aAlt); } \ |
| 222 NS_IMETHOD SetAlt(const nsAString & aAlt) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->SetAlt(aAlt); } \ |
| 223 NS_IMETHOD GetChecked(PRBool *aChecked) { return !_to ? NS_ERROR_NULL_POINTER
: _to->GetChecked(aChecked); } \ |
| 224 NS_IMETHOD SetChecked(PRBool aChecked) { return !_to ? NS_ERROR_NULL_POINTER :
_to->SetChecked(aChecked); } \ |
| 225 NS_IMETHOD GetDisabled(PRBool *aDisabled) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->GetDisabled(aDisabled); } \ |
| 226 NS_IMETHOD SetDisabled(PRBool aDisabled) { return !_to ? NS_ERROR_NULL_POINTER
: _to->SetDisabled(aDisabled); } \ |
| 227 NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) { return !_to ? NS_ERROR_NULL_POI
NTER : _to->GetMaxLength(aMaxLength); } \ |
| 228 NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) { return !_to ? NS_ERROR_NULL_POIN
TER : _to->SetMaxLength(aMaxLength); } \ |
| 229 NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER :
_to->GetName(aName); } \ |
| 230 NS_IMETHOD SetName(const nsAString & aName) { return !_to ? NS_ERROR_NULL_POIN
TER : _to->SetName(aName); } \ |
| 231 NS_IMETHOD GetReadOnly(PRBool *aReadOnly) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->GetReadOnly(aReadOnly); } \ |
| 232 NS_IMETHOD SetReadOnly(PRBool aReadOnly) { return !_to ? NS_ERROR_NULL_POINTER
: _to->SetReadOnly(aReadOnly); } \ |
| 233 NS_IMETHOD GetSize(PRUint32 *aSize) { return !_to ? NS_ERROR_NULL_POINTER : _t
o->GetSize(aSize); } \ |
| 234 NS_IMETHOD SetSize(PRUint32 aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to
->SetSize(aSize); } \ |
| 235 NS_IMETHOD GetSrc(nsAString & aSrc) { return !_to ? NS_ERROR_NULL_POINTER : _t
o->GetSrc(aSrc); } \ |
| 236 NS_IMETHOD SetSrc(const nsAString & aSrc) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->SetSrc(aSrc); } \ |
| 237 NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) { return !_to ? NS_ERROR_NULL_POINT
ER : _to->GetTabIndex(aTabIndex); } \ |
| 238 NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->SetTabIndex(aTabIndex); } \ |
| 239 NS_IMETHOD GetType(nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER :
_to->GetType(aType); } \ |
| 240 NS_IMETHOD SetType(const nsAString & aType) { return !_to ? NS_ERROR_NULL_POIN
TER : _to->SetType(aType); } \ |
| 241 NS_IMETHOD GetUseMap(nsAString & aUseMap) { return !_to ? NS_ERROR_NULL_POINTE
R : _to->GetUseMap(aUseMap); } \ |
| 242 NS_IMETHOD SetUseMap(const nsAString & aUseMap) { return !_to ? NS_ERROR_NULL_
POINTER : _to->SetUseMap(aUseMap); } \ |
| 243 NS_IMETHOD GetValue(nsAString & aValue) { return !_to ? NS_ERROR_NULL_POINTER
: _to->GetValue(aValue); } \ |
| 244 NS_IMETHOD SetValue(const nsAString & aValue) { return !_to ? NS_ERROR_NULL_PO
INTER : _to->SetValue(aValue); } \ |
| 245 NS_IMETHOD Blur(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Blur(); } \ |
| 246 NS_IMETHOD Focus(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Focus(); }
\ |
| 247 NS_IMETHOD Select(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Select();
} \ |
| 248 NS_IMETHOD Click(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Click(); }
|
| 249 |
| 250 #if 0 |
| 251 /* Use the code below as a template for the implementation class for this interf
ace. */ |
| 252 |
| 253 /* Header file */ |
| 254 class nsDOMHTMLInputElement : public nsIDOMHTMLInputElement |
| 255 { |
| 256 public: |
| 257 NS_DECL_ISUPPORTS |
| 258 NS_DECL_NSIDOMHTMLINPUTELEMENT |
| 259 |
| 260 nsDOMHTMLInputElement(); |
| 261 |
| 262 private: |
| 263 ~nsDOMHTMLInputElement(); |
| 264 |
| 265 protected: |
| 266 /* additional members */ |
| 267 }; |
| 268 |
| 269 /* Implementation file */ |
| 270 NS_IMPL_ISUPPORTS1(nsDOMHTMLInputElement, nsIDOMHTMLInputElement) |
| 271 |
| 272 nsDOMHTMLInputElement::nsDOMHTMLInputElement() |
| 273 { |
| 274 /* member initializers and constructor code */ |
| 275 } |
| 276 |
| 277 nsDOMHTMLInputElement::~nsDOMHTMLInputElement() |
| 278 { |
| 279 /* destructor code */ |
| 280 } |
| 281 |
| 282 /* attribute DOMString defaultValue; */ |
| 283 NS_IMETHODIMP nsDOMHTMLInputElement::GetDefaultValue(nsAString & aDefaultValue) |
| 284 { |
| 285 return NS_ERROR_NOT_IMPLEMENTED; |
| 286 } |
| 287 NS_IMETHODIMP nsDOMHTMLInputElement::SetDefaultValue(const nsAString & aDefaultV
alue) |
| 288 { |
| 289 return NS_ERROR_NOT_IMPLEMENTED; |
| 290 } |
| 291 |
| 292 /* attribute boolean defaultChecked; */ |
| 293 NS_IMETHODIMP nsDOMHTMLInputElement::GetDefaultChecked(PRBool *aDefaultChecked) |
| 294 { |
| 295 return NS_ERROR_NOT_IMPLEMENTED; |
| 296 } |
| 297 NS_IMETHODIMP nsDOMHTMLInputElement::SetDefaultChecked(PRBool aDefaultChecked) |
| 298 { |
| 299 return NS_ERROR_NOT_IMPLEMENTED; |
| 300 } |
| 301 |
| 302 /* readonly attribute nsIDOMHTMLFormElement form; */ |
| 303 NS_IMETHODIMP nsDOMHTMLInputElement::GetForm(nsIDOMHTMLFormElement * *aForm) |
| 304 { |
| 305 return NS_ERROR_NOT_IMPLEMENTED; |
| 306 } |
| 307 |
| 308 /* attribute DOMString accept; */ |
| 309 NS_IMETHODIMP nsDOMHTMLInputElement::GetAccept(nsAString & aAccept) |
| 310 { |
| 311 return NS_ERROR_NOT_IMPLEMENTED; |
| 312 } |
| 313 NS_IMETHODIMP nsDOMHTMLInputElement::SetAccept(const nsAString & aAccept) |
| 314 { |
| 315 return NS_ERROR_NOT_IMPLEMENTED; |
| 316 } |
| 317 |
| 318 /* attribute DOMString accessKey; */ |
| 319 NS_IMETHODIMP nsDOMHTMLInputElement::GetAccessKey(nsAString & aAccessKey) |
| 320 { |
| 321 return NS_ERROR_NOT_IMPLEMENTED; |
| 322 } |
| 323 NS_IMETHODIMP nsDOMHTMLInputElement::SetAccessKey(const nsAString & aAccessKey) |
| 324 { |
| 325 return NS_ERROR_NOT_IMPLEMENTED; |
| 326 } |
| 327 |
| 328 /* attribute DOMString align; */ |
| 329 NS_IMETHODIMP nsDOMHTMLInputElement::GetAlign(nsAString & aAlign) |
| 330 { |
| 331 return NS_ERROR_NOT_IMPLEMENTED; |
| 332 } |
| 333 NS_IMETHODIMP nsDOMHTMLInputElement::SetAlign(const nsAString & aAlign) |
| 334 { |
| 335 return NS_ERROR_NOT_IMPLEMENTED; |
| 336 } |
| 337 |
| 338 /* attribute DOMString alt; */ |
| 339 NS_IMETHODIMP nsDOMHTMLInputElement::GetAlt(nsAString & aAlt) |
| 340 { |
| 341 return NS_ERROR_NOT_IMPLEMENTED; |
| 342 } |
| 343 NS_IMETHODIMP nsDOMHTMLInputElement::SetAlt(const nsAString & aAlt) |
| 344 { |
| 345 return NS_ERROR_NOT_IMPLEMENTED; |
| 346 } |
| 347 |
| 348 /* attribute boolean checked; */ |
| 349 NS_IMETHODIMP nsDOMHTMLInputElement::GetChecked(PRBool *aChecked) |
| 350 { |
| 351 return NS_ERROR_NOT_IMPLEMENTED; |
| 352 } |
| 353 NS_IMETHODIMP nsDOMHTMLInputElement::SetChecked(PRBool aChecked) |
| 354 { |
| 355 return NS_ERROR_NOT_IMPLEMENTED; |
| 356 } |
| 357 |
| 358 /* attribute boolean disabled; */ |
| 359 NS_IMETHODIMP nsDOMHTMLInputElement::GetDisabled(PRBool *aDisabled) |
| 360 { |
| 361 return NS_ERROR_NOT_IMPLEMENTED; |
| 362 } |
| 363 NS_IMETHODIMP nsDOMHTMLInputElement::SetDisabled(PRBool aDisabled) |
| 364 { |
| 365 return NS_ERROR_NOT_IMPLEMENTED; |
| 366 } |
| 367 |
| 368 /* attribute long maxLength; */ |
| 369 NS_IMETHODIMP nsDOMHTMLInputElement::GetMaxLength(PRInt32 *aMaxLength) |
| 370 { |
| 371 return NS_ERROR_NOT_IMPLEMENTED; |
| 372 } |
| 373 NS_IMETHODIMP nsDOMHTMLInputElement::SetMaxLength(PRInt32 aMaxLength) |
| 374 { |
| 375 return NS_ERROR_NOT_IMPLEMENTED; |
| 376 } |
| 377 |
| 378 /* attribute DOMString name; */ |
| 379 NS_IMETHODIMP nsDOMHTMLInputElement::GetName(nsAString & aName) |
| 380 { |
| 381 return NS_ERROR_NOT_IMPLEMENTED; |
| 382 } |
| 383 NS_IMETHODIMP nsDOMHTMLInputElement::SetName(const nsAString & aName) |
| 384 { |
| 385 return NS_ERROR_NOT_IMPLEMENTED; |
| 386 } |
| 387 |
| 388 /* attribute boolean readOnly; */ |
| 389 NS_IMETHODIMP nsDOMHTMLInputElement::GetReadOnly(PRBool *aReadOnly) |
| 390 { |
| 391 return NS_ERROR_NOT_IMPLEMENTED; |
| 392 } |
| 393 NS_IMETHODIMP nsDOMHTMLInputElement::SetReadOnly(PRBool aReadOnly) |
| 394 { |
| 395 return NS_ERROR_NOT_IMPLEMENTED; |
| 396 } |
| 397 |
| 398 /* attribute unsigned long size; */ |
| 399 NS_IMETHODIMP nsDOMHTMLInputElement::GetSize(PRUint32 *aSize) |
| 400 { |
| 401 return NS_ERROR_NOT_IMPLEMENTED; |
| 402 } |
| 403 NS_IMETHODIMP nsDOMHTMLInputElement::SetSize(PRUint32 aSize) |
| 404 { |
| 405 return NS_ERROR_NOT_IMPLEMENTED; |
| 406 } |
| 407 |
| 408 /* attribute DOMString src; */ |
| 409 NS_IMETHODIMP nsDOMHTMLInputElement::GetSrc(nsAString & aSrc) |
| 410 { |
| 411 return NS_ERROR_NOT_IMPLEMENTED; |
| 412 } |
| 413 NS_IMETHODIMP nsDOMHTMLInputElement::SetSrc(const nsAString & aSrc) |
| 414 { |
| 415 return NS_ERROR_NOT_IMPLEMENTED; |
| 416 } |
| 417 |
| 418 /* attribute long tabIndex; */ |
| 419 NS_IMETHODIMP nsDOMHTMLInputElement::GetTabIndex(PRInt32 *aTabIndex) |
| 420 { |
| 421 return NS_ERROR_NOT_IMPLEMENTED; |
| 422 } |
| 423 NS_IMETHODIMP nsDOMHTMLInputElement::SetTabIndex(PRInt32 aTabIndex) |
| 424 { |
| 425 return NS_ERROR_NOT_IMPLEMENTED; |
| 426 } |
| 427 |
| 428 /* attribute DOMString type; */ |
| 429 NS_IMETHODIMP nsDOMHTMLInputElement::GetType(nsAString & aType) |
| 430 { |
| 431 return NS_ERROR_NOT_IMPLEMENTED; |
| 432 } |
| 433 NS_IMETHODIMP nsDOMHTMLInputElement::SetType(const nsAString & aType) |
| 434 { |
| 435 return NS_ERROR_NOT_IMPLEMENTED; |
| 436 } |
| 437 |
| 438 /* attribute DOMString useMap; */ |
| 439 NS_IMETHODIMP nsDOMHTMLInputElement::GetUseMap(nsAString & aUseMap) |
| 440 { |
| 441 return NS_ERROR_NOT_IMPLEMENTED; |
| 442 } |
| 443 NS_IMETHODIMP nsDOMHTMLInputElement::SetUseMap(const nsAString & aUseMap) |
| 444 { |
| 445 return NS_ERROR_NOT_IMPLEMENTED; |
| 446 } |
| 447 |
| 448 /* attribute DOMString value; */ |
| 449 NS_IMETHODIMP nsDOMHTMLInputElement::GetValue(nsAString & aValue) |
| 450 { |
| 451 return NS_ERROR_NOT_IMPLEMENTED; |
| 452 } |
| 453 NS_IMETHODIMP nsDOMHTMLInputElement::SetValue(const nsAString & aValue) |
| 454 { |
| 455 return NS_ERROR_NOT_IMPLEMENTED; |
| 456 } |
| 457 |
| 458 /* void blur (); */ |
| 459 NS_IMETHODIMP nsDOMHTMLInputElement::Blur() |
| 460 { |
| 461 return NS_ERROR_NOT_IMPLEMENTED; |
| 462 } |
| 463 |
| 464 /* void focus (); */ |
| 465 NS_IMETHODIMP nsDOMHTMLInputElement::Focus() |
| 466 { |
| 467 return NS_ERROR_NOT_IMPLEMENTED; |
| 468 } |
| 469 |
| 470 /* void select (); */ |
| 471 NS_IMETHODIMP nsDOMHTMLInputElement::Select() |
| 472 { |
| 473 return NS_ERROR_NOT_IMPLEMENTED; |
| 474 } |
| 475 |
| 476 /* void click (); */ |
| 477 NS_IMETHODIMP nsDOMHTMLInputElement::Click() |
| 478 { |
| 479 return NS_ERROR_NOT_IMPLEMENTED; |
| 480 } |
| 481 |
| 482 /* End of implementation class template. */ |
| 483 #endif |
| 484 |
| 485 |
| 486 #endif /* __gen_nsIDOMHTMLInputElement_h__ */ |
OLD | NEW |