Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: gecko-sdk/include/nsIDOMHTMLInputElement.h

Issue 20346: Version 1.8 of gecko-sdk. Downloaded from here:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gecko-sdk/include/nsIDOMHTMLImageElement.h ('k') | gecko-sdk/include/nsIDOMHTMLIsIndexElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gecko-sdk/include/nsIDOMHTMLInputElement.h
===================================================================
--- gecko-sdk/include/nsIDOMHTMLInputElement.h (revision 0)
+++ gecko-sdk/include/nsIDOMHTMLInputElement.h (revision 0)
@@ -0,0 +1,486 @@
+/*
+ * 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
+ */
+
+#ifndef __gen_nsIDOMHTMLInputElement_h__
+#define __gen_nsIDOMHTMLInputElement_h__
+
+
+#ifndef __gen_nsIDOMHTMLElement_h__
+#include "nsIDOMHTMLElement.h"
+#endif
+
+/* For IDL files that don't want to include root IDL files. */
+#ifndef NS_NO_VTABLE
+#define NS_NO_VTABLE
+#endif
+
+/* starting interface: nsIDOMHTMLInputElement */
+#define NS_IDOMHTMLINPUTELEMENT_IID_STR "a6cf9093-15b3-11d2-932e-00805f8add32"
+
+#define NS_IDOMHTMLINPUTELEMENT_IID \
+ {0xa6cf9093, 0x15b3, 0x11d2, \
+ { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
+
+/**
+ * The nsIDOMHTMLInputElement interface is the interface to a [X]HTML
+ * input element.
+ *
+ * For more information on this interface please see
+ * http://www.w3.org/TR/DOM-Level-2-HTML/
+ *
+ * @status FROZEN
+ */
+class NS_NO_VTABLE nsIDOMHTMLInputElement : public nsIDOMHTMLElement {
+ public:
+
+ NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLINPUTELEMENT_IID)
+
+ /* attribute DOMString defaultValue; */
+ NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) = 0;
+ NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) = 0;
+
+ /* attribute boolean defaultChecked; */
+ NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) = 0;
+ NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) = 0;
+
+ /* readonly attribute nsIDOMHTMLFormElement form; */
+ NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) = 0;
+
+ /* attribute DOMString accept; */
+ NS_IMETHOD GetAccept(nsAString & aAccept) = 0;
+ NS_IMETHOD SetAccept(const nsAString & aAccept) = 0;
+
+ /* attribute DOMString accessKey; */
+ NS_IMETHOD GetAccessKey(nsAString & aAccessKey) = 0;
+ NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) = 0;
+
+ /* attribute DOMString align; */
+ NS_IMETHOD GetAlign(nsAString & aAlign) = 0;
+ NS_IMETHOD SetAlign(const nsAString & aAlign) = 0;
+
+ /* attribute DOMString alt; */
+ NS_IMETHOD GetAlt(nsAString & aAlt) = 0;
+ NS_IMETHOD SetAlt(const nsAString & aAlt) = 0;
+
+ /* attribute boolean checked; */
+ NS_IMETHOD GetChecked(PRBool *aChecked) = 0;
+ NS_IMETHOD SetChecked(PRBool aChecked) = 0;
+
+ /* attribute boolean disabled; */
+ NS_IMETHOD GetDisabled(PRBool *aDisabled) = 0;
+ NS_IMETHOD SetDisabled(PRBool aDisabled) = 0;
+
+ /* attribute long maxLength; */
+ NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) = 0;
+ NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) = 0;
+
+ /* attribute DOMString name; */
+ NS_IMETHOD GetName(nsAString & aName) = 0;
+ NS_IMETHOD SetName(const nsAString & aName) = 0;
+
+ /* attribute boolean readOnly; */
+ NS_IMETHOD GetReadOnly(PRBool *aReadOnly) = 0;
+ NS_IMETHOD SetReadOnly(PRBool aReadOnly) = 0;
+
+ /* attribute unsigned long size; */
+ NS_IMETHOD GetSize(PRUint32 *aSize) = 0;
+ NS_IMETHOD SetSize(PRUint32 aSize) = 0;
+
+ /* attribute DOMString src; */
+ NS_IMETHOD GetSrc(nsAString & aSrc) = 0;
+ NS_IMETHOD SetSrc(const nsAString & aSrc) = 0;
+
+ /* attribute long tabIndex; */
+ NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) = 0;
+ NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) = 0;
+
+ /* attribute DOMString type; */
+ NS_IMETHOD GetType(nsAString & aType) = 0;
+ NS_IMETHOD SetType(const nsAString & aType) = 0;
+
+ /* attribute DOMString useMap; */
+ NS_IMETHOD GetUseMap(nsAString & aUseMap) = 0;
+ NS_IMETHOD SetUseMap(const nsAString & aUseMap) = 0;
+
+ /* attribute DOMString value; */
+ NS_IMETHOD GetValue(nsAString & aValue) = 0;
+ NS_IMETHOD SetValue(const nsAString & aValue) = 0;
+
+ /* void blur (); */
+ NS_IMETHOD Blur(void) = 0;
+
+ /* void focus (); */
+ NS_IMETHOD Focus(void) = 0;
+
+ /* void select (); */
+ NS_IMETHOD Select(void) = 0;
+
+ /* void click (); */
+ NS_IMETHOD Click(void) = 0;
+
+};
+
+/* Use this macro when declaring classes that implement this interface. */
+#define NS_DECL_NSIDOMHTMLINPUTELEMENT \
+ NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue); \
+ NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue); \
+ NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked); \
+ NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked); \
+ NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm); \
+ NS_IMETHOD GetAccept(nsAString & aAccept); \
+ NS_IMETHOD SetAccept(const nsAString & aAccept); \
+ NS_IMETHOD GetAccessKey(nsAString & aAccessKey); \
+ NS_IMETHOD SetAccessKey(const nsAString & aAccessKey); \
+ NS_IMETHOD GetAlign(nsAString & aAlign); \
+ NS_IMETHOD SetAlign(const nsAString & aAlign); \
+ NS_IMETHOD GetAlt(nsAString & aAlt); \
+ NS_IMETHOD SetAlt(const nsAString & aAlt); \
+ NS_IMETHOD GetChecked(PRBool *aChecked); \
+ NS_IMETHOD SetChecked(PRBool aChecked); \
+ NS_IMETHOD GetDisabled(PRBool *aDisabled); \
+ NS_IMETHOD SetDisabled(PRBool aDisabled); \
+ NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength); \
+ NS_IMETHOD SetMaxLength(PRInt32 aMaxLength); \
+ NS_IMETHOD GetName(nsAString & aName); \
+ NS_IMETHOD SetName(const nsAString & aName); \
+ NS_IMETHOD GetReadOnly(PRBool *aReadOnly); \
+ NS_IMETHOD SetReadOnly(PRBool aReadOnly); \
+ NS_IMETHOD GetSize(PRUint32 *aSize); \
+ NS_IMETHOD SetSize(PRUint32 aSize); \
+ NS_IMETHOD GetSrc(nsAString & aSrc); \
+ NS_IMETHOD SetSrc(const nsAString & aSrc); \
+ NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex); \
+ NS_IMETHOD SetTabIndex(PRInt32 aTabIndex); \
+ NS_IMETHOD GetType(nsAString & aType); \
+ NS_IMETHOD SetType(const nsAString & aType); \
+ NS_IMETHOD GetUseMap(nsAString & aUseMap); \
+ NS_IMETHOD SetUseMap(const nsAString & aUseMap); \
+ NS_IMETHOD GetValue(nsAString & aValue); \
+ NS_IMETHOD SetValue(const nsAString & aValue); \
+ NS_IMETHOD Blur(void); \
+ NS_IMETHOD Focus(void); \
+ NS_IMETHOD Select(void); \
+ NS_IMETHOD Click(void);
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object. */
+#define NS_FORWARD_NSIDOMHTMLINPUTELEMENT(_to) \
+ NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) { return _to GetDefaultValue(aDefaultValue); } \
+ NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) { return _to SetDefaultValue(aDefaultValue); } \
+ NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) { return _to GetDefaultChecked(aDefaultChecked); } \
+ NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) { return _to SetDefaultChecked(aDefaultChecked); } \
+ NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return _to GetForm(aForm); } \
+ NS_IMETHOD GetAccept(nsAString & aAccept) { return _to GetAccept(aAccept); } \
+ NS_IMETHOD SetAccept(const nsAString & aAccept) { return _to SetAccept(aAccept); } \
+ NS_IMETHOD GetAccessKey(nsAString & aAccessKey) { return _to GetAccessKey(aAccessKey); } \
+ NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) { return _to SetAccessKey(aAccessKey); } \
+ NS_IMETHOD GetAlign(nsAString & aAlign) { return _to GetAlign(aAlign); } \
+ NS_IMETHOD SetAlign(const nsAString & aAlign) { return _to SetAlign(aAlign); } \
+ NS_IMETHOD GetAlt(nsAString & aAlt) { return _to GetAlt(aAlt); } \
+ NS_IMETHOD SetAlt(const nsAString & aAlt) { return _to SetAlt(aAlt); } \
+ NS_IMETHOD GetChecked(PRBool *aChecked) { return _to GetChecked(aChecked); } \
+ NS_IMETHOD SetChecked(PRBool aChecked) { return _to SetChecked(aChecked); } \
+ NS_IMETHOD GetDisabled(PRBool *aDisabled) { return _to GetDisabled(aDisabled); } \
+ NS_IMETHOD SetDisabled(PRBool aDisabled) { return _to SetDisabled(aDisabled); } \
+ NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) { return _to GetMaxLength(aMaxLength); } \
+ NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) { return _to SetMaxLength(aMaxLength); } \
+ NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } \
+ NS_IMETHOD SetName(const nsAString & aName) { return _to SetName(aName); } \
+ NS_IMETHOD GetReadOnly(PRBool *aReadOnly) { return _to GetReadOnly(aReadOnly); } \
+ NS_IMETHOD SetReadOnly(PRBool aReadOnly) { return _to SetReadOnly(aReadOnly); } \
+ NS_IMETHOD GetSize(PRUint32 *aSize) { return _to GetSize(aSize); } \
+ NS_IMETHOD SetSize(PRUint32 aSize) { return _to SetSize(aSize); } \
+ NS_IMETHOD GetSrc(nsAString & aSrc) { return _to GetSrc(aSrc); } \
+ NS_IMETHOD SetSrc(const nsAString & aSrc) { return _to SetSrc(aSrc); } \
+ NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) { return _to GetTabIndex(aTabIndex); } \
+ NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) { return _to SetTabIndex(aTabIndex); } \
+ NS_IMETHOD GetType(nsAString & aType) { return _to GetType(aType); } \
+ NS_IMETHOD SetType(const nsAString & aType) { return _to SetType(aType); } \
+ NS_IMETHOD GetUseMap(nsAString & aUseMap) { return _to GetUseMap(aUseMap); } \
+ NS_IMETHOD SetUseMap(const nsAString & aUseMap) { return _to SetUseMap(aUseMap); } \
+ NS_IMETHOD GetValue(nsAString & aValue) { return _to GetValue(aValue); } \
+ NS_IMETHOD SetValue(const nsAString & aValue) { return _to SetValue(aValue); } \
+ NS_IMETHOD Blur(void) { return _to Blur(); } \
+ NS_IMETHOD Focus(void) { return _to Focus(); } \
+ NS_IMETHOD Select(void) { return _to Select(); } \
+ NS_IMETHOD Click(void) { return _to Click(); }
+
+/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
+#define NS_FORWARD_SAFE_NSIDOMHTMLINPUTELEMENT(_to) \
+ NS_IMETHOD GetDefaultValue(nsAString & aDefaultValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultValue(aDefaultValue); } \
+ NS_IMETHOD SetDefaultValue(const nsAString & aDefaultValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDefaultValue(aDefaultValue); } \
+ NS_IMETHOD GetDefaultChecked(PRBool *aDefaultChecked) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultChecked(aDefaultChecked); } \
+ NS_IMETHOD SetDefaultChecked(PRBool aDefaultChecked) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDefaultChecked(aDefaultChecked); } \
+ NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetForm(aForm); } \
+ NS_IMETHOD GetAccept(nsAString & aAccept) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAccept(aAccept); } \
+ NS_IMETHOD SetAccept(const nsAString & aAccept) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAccept(aAccept); } \
+ NS_IMETHOD GetAccessKey(nsAString & aAccessKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAccessKey(aAccessKey); } \
+ NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAccessKey(aAccessKey); } \
+ NS_IMETHOD GetAlign(nsAString & aAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAlign(aAlign); } \
+ NS_IMETHOD SetAlign(const nsAString & aAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAlign(aAlign); } \
+ NS_IMETHOD GetAlt(nsAString & aAlt) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAlt(aAlt); } \
+ NS_IMETHOD SetAlt(const nsAString & aAlt) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAlt(aAlt); } \
+ NS_IMETHOD GetChecked(PRBool *aChecked) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChecked(aChecked); } \
+ NS_IMETHOD SetChecked(PRBool aChecked) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetChecked(aChecked); } \
+ NS_IMETHOD GetDisabled(PRBool *aDisabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisabled(aDisabled); } \
+ NS_IMETHOD SetDisabled(PRBool aDisabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisabled(aDisabled); } \
+ NS_IMETHOD GetMaxLength(PRInt32 *aMaxLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaxLength(aMaxLength); } \
+ NS_IMETHOD SetMaxLength(PRInt32 aMaxLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMaxLength(aMaxLength); } \
+ NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
+ NS_IMETHOD SetName(const nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetName(aName); } \
+ NS_IMETHOD GetReadOnly(PRBool *aReadOnly) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetReadOnly(aReadOnly); } \
+ NS_IMETHOD SetReadOnly(PRBool aReadOnly) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetReadOnly(aReadOnly); } \
+ NS_IMETHOD GetSize(PRUint32 *aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
+ NS_IMETHOD SetSize(PRUint32 aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); } \
+ NS_IMETHOD GetSrc(nsAString & aSrc) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSrc(aSrc); } \
+ NS_IMETHOD SetSrc(const nsAString & aSrc) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSrc(aSrc); } \
+ NS_IMETHOD GetTabIndex(PRInt32 *aTabIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTabIndex(aTabIndex); } \
+ NS_IMETHOD SetTabIndex(PRInt32 aTabIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTabIndex(aTabIndex); } \
+ NS_IMETHOD GetType(nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
+ NS_IMETHOD SetType(const nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } \
+ NS_IMETHOD GetUseMap(nsAString & aUseMap) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUseMap(aUseMap); } \
+ NS_IMETHOD SetUseMap(const nsAString & aUseMap) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUseMap(aUseMap); } \
+ NS_IMETHOD GetValue(nsAString & aValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetValue(aValue); } \
+ NS_IMETHOD SetValue(const nsAString & aValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetValue(aValue); } \
+ NS_IMETHOD Blur(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Blur(); } \
+ NS_IMETHOD Focus(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Focus(); } \
+ NS_IMETHOD Select(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Select(); } \
+ NS_IMETHOD Click(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Click(); }
+
+#if 0
+/* Use the code below as a template for the implementation class for this interface. */
+
+/* Header file */
+class nsDOMHTMLInputElement : public nsIDOMHTMLInputElement
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIDOMHTMLINPUTELEMENT
+
+ nsDOMHTMLInputElement();
+
+private:
+ ~nsDOMHTMLInputElement();
+
+protected:
+ /* additional members */
+};
+
+/* Implementation file */
+NS_IMPL_ISUPPORTS1(nsDOMHTMLInputElement, nsIDOMHTMLInputElement)
+
+nsDOMHTMLInputElement::nsDOMHTMLInputElement()
+{
+ /* member initializers and constructor code */
+}
+
+nsDOMHTMLInputElement::~nsDOMHTMLInputElement()
+{
+ /* destructor code */
+}
+
+/* attribute DOMString defaultValue; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetDefaultValue(nsAString & aDefaultValue)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetDefaultValue(const nsAString & aDefaultValue)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute boolean defaultChecked; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetDefaultChecked(PRBool *aDefaultChecked)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetDefaultChecked(PRBool aDefaultChecked)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* readonly attribute nsIDOMHTMLFormElement form; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetForm(nsIDOMHTMLFormElement * *aForm)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString accept; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetAccept(nsAString & aAccept)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetAccept(const nsAString & aAccept)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString accessKey; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetAccessKey(nsAString & aAccessKey)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetAccessKey(const nsAString & aAccessKey)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString align; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetAlign(nsAString & aAlign)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetAlign(const nsAString & aAlign)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString alt; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetAlt(nsAString & aAlt)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetAlt(const nsAString & aAlt)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute boolean checked; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetChecked(PRBool *aChecked)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetChecked(PRBool aChecked)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute boolean disabled; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetDisabled(PRBool *aDisabled)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetDisabled(PRBool aDisabled)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute long maxLength; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetMaxLength(PRInt32 *aMaxLength)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetMaxLength(PRInt32 aMaxLength)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString name; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetName(nsAString & aName)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetName(const nsAString & aName)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute boolean readOnly; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetReadOnly(PRBool *aReadOnly)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetReadOnly(PRBool aReadOnly)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute unsigned long size; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetSize(PRUint32 *aSize)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetSize(PRUint32 aSize)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString src; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetSrc(nsAString & aSrc)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetSrc(const nsAString & aSrc)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute long tabIndex; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetTabIndex(PRInt32 *aTabIndex)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetTabIndex(PRInt32 aTabIndex)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString type; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetType(nsAString & aType)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetType(const nsAString & aType)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString useMap; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetUseMap(nsAString & aUseMap)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetUseMap(const nsAString & aUseMap)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* attribute DOMString value; */
+NS_IMETHODIMP nsDOMHTMLInputElement::GetValue(nsAString & aValue)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+NS_IMETHODIMP nsDOMHTMLInputElement::SetValue(const nsAString & aValue)
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void blur (); */
+NS_IMETHODIMP nsDOMHTMLInputElement::Blur()
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void focus (); */
+NS_IMETHODIMP nsDOMHTMLInputElement::Focus()
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void select (); */
+NS_IMETHODIMP nsDOMHTMLInputElement::Select()
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* void click (); */
+NS_IMETHODIMP nsDOMHTMLInputElement::Click()
+{
+ return NS_ERROR_NOT_IMPLEMENTED;
+}
+
+/* End of implementation class template. */
+#endif
+
+
+#endif /* __gen_nsIDOMHTMLInputElement_h__ */
Property changes on: gecko-sdk\include\nsIDOMHTMLInputElement.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « gecko-sdk/include/nsIDOMHTMLImageElement.h ('k') | gecko-sdk/include/nsIDOMHTMLIsIndexElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698