/usr/include/thunderbird/nsIDOMXULLabeledControlEl.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 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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMXULLabeledControlEl.idl
*/
#ifndef __gen_nsIDOMXULLabeledControlEl_h__
#define __gen_nsIDOMXULLabeledControlEl_h__
#ifndef __gen_nsIDOMElement_h__
#include "nsIDOMElement.h"
#endif
#ifndef __gen_nsIDOMXULControlElement_h__
#include "nsIDOMXULControlElement.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: nsIDOMXULLabeledControlElement */
#define NS_IDOMXULLABELEDCONTROLELEMENT_IID_STR "c58a159f-e27d-40c8-865a-d4dcfd928f62"
#define NS_IDOMXULLABELEDCONTROLELEMENT_IID \
{0xc58a159f, 0xe27d, 0x40c8, \
{ 0x86, 0x5a, 0xd4, 0xdc, 0xfd, 0x92, 0x8f, 0x62 }}
class NS_NO_VTABLE nsIDOMXULLabeledControlElement : public nsIDOMXULControlElement {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMXULLABELEDCONTROLELEMENT_IID)
/* attribute DOMString crop; */
NS_IMETHOD GetCrop(nsAString & aCrop) = 0;
NS_IMETHOD SetCrop(const nsAString & aCrop) = 0;
/* attribute DOMString image; */
NS_IMETHOD GetImage(nsAString & aImage) = 0;
NS_IMETHOD SetImage(const nsAString & aImage) = 0;
/* attribute DOMString label; */
NS_IMETHOD GetLabel(nsAString & aLabel) = 0;
NS_IMETHOD SetLabel(const nsAString & aLabel) = 0;
/* attribute DOMString accessKey; */
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) = 0;
NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) = 0;
/* attribute DOMString command; */
NS_IMETHOD GetCommand(nsAString & aCommand) = 0;
NS_IMETHOD SetCommand(const nsAString & aCommand) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMXULLabeledControlElement, NS_IDOMXULLABELEDCONTROLELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMXULLABELEDCONTROLELEMENT \
NS_IMETHOD GetCrop(nsAString & aCrop) override; \
NS_IMETHOD SetCrop(const nsAString & aCrop) override; \
NS_IMETHOD GetImage(nsAString & aImage) override; \
NS_IMETHOD SetImage(const nsAString & aImage) override; \
NS_IMETHOD GetLabel(nsAString & aLabel) override; \
NS_IMETHOD SetLabel(const nsAString & aLabel) override; \
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) override; \
NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) override; \
NS_IMETHOD GetCommand(nsAString & aCommand) override; \
NS_IMETHOD SetCommand(const nsAString & aCommand) 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_NSIDOMXULLABELEDCONTROLELEMENT \
NS_METHOD GetCrop(nsAString & aCrop); \
NS_METHOD SetCrop(const nsAString & aCrop); \
NS_METHOD GetImage(nsAString & aImage); \
NS_METHOD SetImage(const nsAString & aImage); \
NS_METHOD GetLabel(nsAString & aLabel); \
NS_METHOD SetLabel(const nsAString & aLabel); \
NS_METHOD GetAccessKey(nsAString & aAccessKey); \
NS_METHOD SetAccessKey(const nsAString & aAccessKey); \
NS_METHOD GetCommand(nsAString & aCommand); \
NS_METHOD SetCommand(const nsAString & aCommand);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMXULLABELEDCONTROLELEMENT(_to) \
NS_IMETHOD GetCrop(nsAString & aCrop) override { return _to GetCrop(aCrop); } \
NS_IMETHOD SetCrop(const nsAString & aCrop) override { return _to SetCrop(aCrop); } \
NS_IMETHOD GetImage(nsAString & aImage) override { return _to GetImage(aImage); } \
NS_IMETHOD SetImage(const nsAString & aImage) override { return _to SetImage(aImage); } \
NS_IMETHOD GetLabel(nsAString & aLabel) override { return _to GetLabel(aLabel); } \
NS_IMETHOD SetLabel(const nsAString & aLabel) override { return _to SetLabel(aLabel); } \
NS_IMETHOD GetAccessKey(nsAString & aAccessKey) override { return _to GetAccessKey(aAccessKey); } \
NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) override { return _to SetAccessKey(aAccessKey); } \
NS_IMETHOD GetCommand(nsAString & aCommand) override { return _to GetCommand(aCommand); } \
NS_IMETHOD SetCommand(const nsAString & aCommand) override { return _to SetCommand(aCommand); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMXULLABELEDCONTROLELEMENT(_to) \
NS_IMETHOD GetCrop(nsAString & aCrop) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCrop(aCrop); } \
NS_IMETHOD SetCrop(const nsAString & aCrop) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCrop(aCrop); } \
NS_IMETHOD GetImage(nsAString & aImage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImage(aImage); } \
NS_IMETHOD SetImage(const nsAString & aImage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImage(aImage); } \
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 GetAccessKey(nsAString & aAccessKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAccessKey(aAccessKey); } \
NS_IMETHOD SetAccessKey(const nsAString & aAccessKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAccessKey(aAccessKey); } \
NS_IMETHOD GetCommand(nsAString & aCommand) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCommand(aCommand); } \
NS_IMETHOD SetCommand(const nsAString & aCommand) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCommand(aCommand); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMXULLabeledControlElement : public nsIDOMXULLabeledControlElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMXULLABELEDCONTROLELEMENT
nsDOMXULLabeledControlElement();
private:
~nsDOMXULLabeledControlElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMXULLabeledControlElement, nsIDOMXULLabeledControlElement)
nsDOMXULLabeledControlElement::nsDOMXULLabeledControlElement()
{
/* member initializers and constructor code */
}
nsDOMXULLabeledControlElement::~nsDOMXULLabeledControlElement()
{
/* destructor code */
}
/* attribute DOMString crop; */
NS_IMETHODIMP nsDOMXULLabeledControlElement::GetCrop(nsAString & aCrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULLabeledControlElement::SetCrop(const nsAString & aCrop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString image; */
NS_IMETHODIMP nsDOMXULLabeledControlElement::GetImage(nsAString & aImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULLabeledControlElement::SetImage(const nsAString & aImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString label; */
NS_IMETHODIMP nsDOMXULLabeledControlElement::GetLabel(nsAString & aLabel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULLabeledControlElement::SetLabel(const nsAString & aLabel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString accessKey; */
NS_IMETHODIMP nsDOMXULLabeledControlElement::GetAccessKey(nsAString & aAccessKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULLabeledControlElement::SetAccessKey(const nsAString & aAccessKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString command; */
NS_IMETHODIMP nsDOMXULLabeledControlElement::GetCommand(nsAString & aCommand)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULLabeledControlElement::SetCommand(const nsAString & aCommand)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMXULLabeledControlEl_h__ */
|