/usr/include/thunderbird/nsIDOMHTMLLabelElement.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* 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__ */
|