PageRenderTime 51ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/mozilla/mozilla/dist/include/dom/nsIDOMHTMLInputElement.h

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