/usr/include/thunderbird/nsIDOMHTMLMenuItemElement.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMHTMLMenuItemElement.idl
*/
#ifndef __gen_nsIDOMHTMLMenuItemElement_h__
#define __gen_nsIDOMHTMLMenuItemElement_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: nsIDOMHTMLMenuItemElement */
#define NS_IDOMHTMLMENUITEMELEMENT_IID_STR "979d6e44-5930-4232-b405-873939655c19"
#define NS_IDOMHTMLMENUITEMELEMENT_IID \
{0x979d6e44, 0x5930, 0x4232, \
{ 0xb4, 0x05, 0x87, 0x39, 0x39, 0x65, 0x5c, 0x19 }}
class NS_NO_VTABLE nsIDOMHTMLMenuItemElement : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLMENUITEMELEMENT_IID)
/* attribute DOMString type; */
NS_IMETHOD GetType(nsAString & aType) = 0;
NS_IMETHOD SetType(const nsAString & aType) = 0;
/* attribute DOMString label; */
NS_IMETHOD GetLabel(nsAString & aLabel) = 0;
NS_IMETHOD SetLabel(const nsAString & aLabel) = 0;
/* attribute DOMString icon; */
NS_IMETHOD GetIcon(nsAString & aIcon) = 0;
NS_IMETHOD SetIcon(const nsAString & aIcon) = 0;
/* attribute boolean disabled; */
NS_IMETHOD GetDisabled(bool *aDisabled) = 0;
NS_IMETHOD SetDisabled(bool aDisabled) = 0;
/* attribute boolean defaultChecked; */
NS_IMETHOD GetDefaultChecked(bool *aDefaultChecked) = 0;
NS_IMETHOD SetDefaultChecked(bool aDefaultChecked) = 0;
/* attribute boolean checked; */
NS_IMETHOD GetChecked(bool *aChecked) = 0;
NS_IMETHOD SetChecked(bool aChecked) = 0;
/* attribute DOMString radiogroup; */
NS_IMETHOD GetRadiogroup(nsAString & aRadiogroup) = 0;
NS_IMETHOD SetRadiogroup(const nsAString & aRadiogroup) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLMenuItemElement, NS_IDOMHTMLMENUITEMELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLMENUITEMELEMENT \
NS_IMETHOD GetType(nsAString & aType) override; \
NS_IMETHOD SetType(const nsAString & aType) override; \
NS_IMETHOD GetLabel(nsAString & aLabel) override; \
NS_IMETHOD SetLabel(const nsAString & aLabel) override; \
NS_IMETHOD GetIcon(nsAString & aIcon) override; \
NS_IMETHOD SetIcon(const nsAString & aIcon) override; \
NS_IMETHOD GetDisabled(bool *aDisabled) override; \
NS_IMETHOD SetDisabled(bool aDisabled) override; \
NS_IMETHOD GetDefaultChecked(bool *aDefaultChecked) override; \
NS_IMETHOD SetDefaultChecked(bool aDefaultChecked) override; \
NS_IMETHOD GetChecked(bool *aChecked) override; \
NS_IMETHOD SetChecked(bool aChecked) override; \
NS_IMETHOD GetRadiogroup(nsAString & aRadiogroup) override; \
NS_IMETHOD SetRadiogroup(const nsAString & aRadiogroup) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLMENUITEMELEMENT(_to) \
NS_IMETHOD GetType(nsAString & aType) override { return _to GetType(aType); } \
NS_IMETHOD SetType(const nsAString & aType) override { return _to SetType(aType); } \
NS_IMETHOD GetLabel(nsAString & aLabel) override { return _to GetLabel(aLabel); } \
NS_IMETHOD SetLabel(const nsAString & aLabel) override { return _to SetLabel(aLabel); } \
NS_IMETHOD GetIcon(nsAString & aIcon) override { return _to GetIcon(aIcon); } \
NS_IMETHOD SetIcon(const nsAString & aIcon) override { return _to SetIcon(aIcon); } \
NS_IMETHOD GetDisabled(bool *aDisabled) override { return _to GetDisabled(aDisabled); } \
NS_IMETHOD SetDisabled(bool aDisabled) override { return _to SetDisabled(aDisabled); } \
NS_IMETHOD GetDefaultChecked(bool *aDefaultChecked) override { return _to GetDefaultChecked(aDefaultChecked); } \
NS_IMETHOD SetDefaultChecked(bool aDefaultChecked) override { return _to SetDefaultChecked(aDefaultChecked); } \
NS_IMETHOD GetChecked(bool *aChecked) override { return _to GetChecked(aChecked); } \
NS_IMETHOD SetChecked(bool aChecked) override { return _to SetChecked(aChecked); } \
NS_IMETHOD GetRadiogroup(nsAString & aRadiogroup) override { return _to GetRadiogroup(aRadiogroup); } \
NS_IMETHOD SetRadiogroup(const nsAString & aRadiogroup) override { return _to SetRadiogroup(aRadiogroup); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLMENUITEMELEMENT(_to) \
NS_IMETHOD GetType(nsAString & aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD SetType(const nsAString & aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } \
NS_IMETHOD GetLabel(nsAString & aLabel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLabel(aLabel); } \
NS_IMETHOD SetLabel(const nsAString & aLabel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLabel(aLabel); } \
NS_IMETHOD GetIcon(nsAString & aIcon) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIcon(aIcon); } \
NS_IMETHOD SetIcon(const nsAString & aIcon) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIcon(aIcon); } \
NS_IMETHOD GetDisabled(bool *aDisabled) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDisabled(aDisabled); } \
NS_IMETHOD SetDisabled(bool aDisabled) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDisabled(aDisabled); } \
NS_IMETHOD GetDefaultChecked(bool *aDefaultChecked) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultChecked(aDefaultChecked); } \
NS_IMETHOD SetDefaultChecked(bool aDefaultChecked) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDefaultChecked(aDefaultChecked); } \
NS_IMETHOD GetChecked(bool *aChecked) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChecked(aChecked); } \
NS_IMETHOD SetChecked(bool aChecked) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetChecked(aChecked); } \
NS_IMETHOD GetRadiogroup(nsAString & aRadiogroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRadiogroup(aRadiogroup); } \
NS_IMETHOD SetRadiogroup(const nsAString & aRadiogroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRadiogroup(aRadiogroup); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLMenuItemElement : public nsIDOMHTMLMenuItemElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLMENUITEMELEMENT
nsDOMHTMLMenuItemElement();
private:
~nsDOMHTMLMenuItemElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMHTMLMenuItemElement, nsIDOMHTMLMenuItemElement)
nsDOMHTMLMenuItemElement::nsDOMHTMLMenuItemElement()
{
/* member initializers and constructor code */
}
nsDOMHTMLMenuItemElement::~nsDOMHTMLMenuItemElement()
{
/* destructor code */
}
/* attribute DOMString type; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetType(nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetType(const nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString label; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetLabel(nsAString & aLabel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetLabel(const nsAString & aLabel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString icon; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetIcon(nsAString & aIcon)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetIcon(const nsAString & aIcon)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean disabled; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetDisabled(bool *aDisabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetDisabled(bool aDisabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean defaultChecked; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetDefaultChecked(bool *aDefaultChecked)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetDefaultChecked(bool aDefaultChecked)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean checked; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetChecked(bool *aChecked)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetChecked(bool aChecked)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString radiogroup; */
NS_IMETHODIMP nsDOMHTMLMenuItemElement::GetRadiogroup(nsAString & aRadiogroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLMenuItemElement::SetRadiogroup(const nsAString & aRadiogroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLMenuItemElement_h__ */
|