Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMHTMLLabelElement.idl
*/
#ifndef __gen_nsIDOMHTMLLabelElement_h__
#define __gen_nsIDOMHTMLLabelElement_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: nsIDOMHTMLLabelElement */
#define NS_IDOMHTMLLABELELEMENT_IID_STR "efc0eaf2-5756-4388-a229-fbec2033529d"
#define NS_IDOMHTMLLABELELEMENT_IID \
{0xefc0eaf2, 0x5756, 0x4388, \
{ 0xa2, 0x29, 0xfb, 0xec, 0x20, 0x33, 0x52, 0x9d }}
class NS_NO_VTABLE nsIDOMHTMLLabelElement : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLLABELELEMENT_IID)
/* readonly attribute nsIDOMHTMLFormElement form; */
NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) = 0;
/* attribute DOMString htmlFor; */
NS_IMETHOD GetHtmlFor(nsAString & aHtmlFor) = 0;
NS_IMETHOD SetHtmlFor(const nsAString & aHtmlFor) = 0;
/* readonly attribute nsIDOMHTMLElement control; */
NS_IMETHOD GetControl(nsIDOMHTMLElement * *aControl) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLLabelElement, NS_IDOMHTMLLABELELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLLABELELEMENT \
NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) override; \
NS_IMETHOD GetHtmlFor(nsAString & aHtmlFor) override; \
NS_IMETHOD SetHtmlFor(const nsAString & aHtmlFor) override; \
NS_IMETHOD GetControl(nsIDOMHTMLElement * *aControl) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIDOMHTMLLABELELEMENT \
NS_METHOD GetForm(nsIDOMHTMLFormElement * *aForm); \
NS_METHOD GetHtmlFor(nsAString & aHtmlFor); \
NS_METHOD SetHtmlFor(const nsAString & aHtmlFor); \
NS_METHOD GetControl(nsIDOMHTMLElement * *aControl);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLLABELELEMENT(_to) \
NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) override { return _to GetForm(aForm); } \
NS_IMETHOD GetHtmlFor(nsAString & aHtmlFor) override { return _to GetHtmlFor(aHtmlFor); } \
NS_IMETHOD SetHtmlFor(const nsAString & aHtmlFor) override { return _to SetHtmlFor(aHtmlFor); } \
NS_IMETHOD GetControl(nsIDOMHTMLElement * *aControl) override { return _to GetControl(aControl); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLLABELELEMENT(_to) \
NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetForm(aForm); } \
NS_IMETHOD GetHtmlFor(nsAString & aHtmlFor) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHtmlFor(aHtmlFor); } \
NS_IMETHOD SetHtmlFor(const nsAString & aHtmlFor) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHtmlFor(aHtmlFor); } \
NS_IMETHOD GetControl(nsIDOMHTMLElement * *aControl) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetControl(aControl); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLLabelElement : public nsIDOMHTMLLabelElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLLABELELEMENT
nsDOMHTMLLabelElement();
private:
~nsDOMHTMLLabelElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMHTMLLabelElement, nsIDOMHTMLLabelElement)
nsDOMHTMLLabelElement::nsDOMHTMLLabelElement()
{
/* member initializers and constructor code */
}
nsDOMHTMLLabelElement::~nsDOMHTMLLabelElement()
{
/* destructor code */
}
/* readonly attribute nsIDOMHTMLFormElement form; */
NS_IMETHODIMP nsDOMHTMLLabelElement::GetForm(nsIDOMHTMLFormElement * *aForm)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString htmlFor; */
NS_IMETHODIMP nsDOMHTMLLabelElement::GetHtmlFor(nsAString & aHtmlFor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLLabelElement::SetHtmlFor(const nsAString & aHtmlFor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMHTMLElement control; */
NS_IMETHODIMP nsDOMHTMLLabelElement::GetControl(nsIDOMHTMLElement * *aControl)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLLabelElement_h__ */