/usr/include/thunderbird/nsIDOMXULTextboxElement.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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMXULTextboxElement.idl
*/
#ifndef __gen_nsIDOMXULTextboxElement_h__
#define __gen_nsIDOMXULTextboxElement_h__
#ifndef __gen_nsIDOMXULLabeledControlEl_h__
#include "nsIDOMXULLabeledControlEl.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMHTMLInputElement; /* forward declaration */
/* starting interface: nsIDOMXULTextBoxElement */
#define NS_IDOMXULTEXTBOXELEMENT_IID_STR "7edd8215-5155-4845-a02f-dc2c08645cb9"
#define NS_IDOMXULTEXTBOXELEMENT_IID \
{0x7edd8215, 0x5155, 0x4845, \
{ 0xa0, 0x2f, 0xdc, 0x2c, 0x08, 0x64, 0x5c, 0xb9 }}
class NS_NO_VTABLE nsIDOMXULTextBoxElement : public nsIDOMXULControlElement {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMXULTEXTBOXELEMENT_IID)
/* readonly attribute nsIDOMNode inputField; */
NS_IMETHOD GetInputField(nsIDOMNode * *aInputField) = 0;
/* readonly attribute long textLength; */
NS_IMETHOD GetTextLength(int32_t *aTextLength) = 0;
/* attribute long maxLength; */
NS_IMETHOD GetMaxLength(int32_t *aMaxLength) = 0;
NS_IMETHOD SetMaxLength(int32_t aMaxLength) = 0;
/* attribute long size; */
NS_IMETHOD GetSize(int32_t *aSize) = 0;
NS_IMETHOD SetSize(int32_t aSize) = 0;
/* attribute long selectionStart; */
NS_IMETHOD GetSelectionStart(int32_t *aSelectionStart) = 0;
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) = 0;
/* attribute long selectionEnd; */
NS_IMETHOD GetSelectionEnd(int32_t *aSelectionEnd) = 0;
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) = 0;
/* attribute DOMString value; */
NS_IMETHOD GetValue(nsAString & aValue) = 0;
NS_IMETHOD SetValue(const nsAString & aValue) = 0;
/* attribute DOMString type; */
NS_IMETHOD GetType(nsAString & aType) = 0;
NS_IMETHOD SetType(const nsAString & aType) = 0;
/* void select (); */
NS_IMETHOD Select(void) = 0;
/* void setSelectionRange (in long selectionStart, in long selectionEnd); */
NS_IMETHOD SetSelectionRange(int32_t selectionStart, int32_t selectionEnd) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMXULTextBoxElement, NS_IDOMXULTEXTBOXELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMXULTEXTBOXELEMENT \
NS_IMETHOD GetInputField(nsIDOMNode * *aInputField) override; \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override; \
NS_IMETHOD GetMaxLength(int32_t *aMaxLength) override; \
NS_IMETHOD SetMaxLength(int32_t aMaxLength) override; \
NS_IMETHOD GetSize(int32_t *aSize) override; \
NS_IMETHOD SetSize(int32_t aSize) override; \
NS_IMETHOD GetSelectionStart(int32_t *aSelectionStart) override; \
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) override; \
NS_IMETHOD GetSelectionEnd(int32_t *aSelectionEnd) override; \
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) override; \
NS_IMETHOD GetValue(nsAString & aValue) override; \
NS_IMETHOD SetValue(const nsAString & aValue) override; \
NS_IMETHOD GetType(nsAString & aType) override; \
NS_IMETHOD SetType(const nsAString & aType) override; \
NS_IMETHOD Select(void) override; \
NS_IMETHOD SetSelectionRange(int32_t selectionStart, int32_t selectionEnd) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMXULTEXTBOXELEMENT(_to) \
NS_IMETHOD GetInputField(nsIDOMNode * *aInputField) override { return _to GetInputField(aInputField); } \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override { return _to GetTextLength(aTextLength); } \
NS_IMETHOD GetMaxLength(int32_t *aMaxLength) override { return _to GetMaxLength(aMaxLength); } \
NS_IMETHOD SetMaxLength(int32_t aMaxLength) override { return _to SetMaxLength(aMaxLength); } \
NS_IMETHOD GetSize(int32_t *aSize) override { return _to GetSize(aSize); } \
NS_IMETHOD SetSize(int32_t aSize) override { return _to SetSize(aSize); } \
NS_IMETHOD GetSelectionStart(int32_t *aSelectionStart) override { return _to GetSelectionStart(aSelectionStart); } \
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) override { return _to SetSelectionStart(aSelectionStart); } \
NS_IMETHOD GetSelectionEnd(int32_t *aSelectionEnd) override { return _to GetSelectionEnd(aSelectionEnd); } \
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) override { return _to SetSelectionEnd(aSelectionEnd); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return _to GetValue(aValue); } \
NS_IMETHOD SetValue(const nsAString & aValue) override { return _to SetValue(aValue); } \
NS_IMETHOD GetType(nsAString & aType) override { return _to GetType(aType); } \
NS_IMETHOD SetType(const nsAString & aType) override { return _to SetType(aType); } \
NS_IMETHOD Select(void) override { return _to Select(); } \
NS_IMETHOD SetSelectionRange(int32_t selectionStart, int32_t selectionEnd) override { return _to SetSelectionRange(selectionStart, selectionEnd); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMXULTEXTBOXELEMENT(_to) \
NS_IMETHOD GetInputField(nsIDOMNode * *aInputField) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInputField(aInputField); } \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextLength(aTextLength); } \
NS_IMETHOD GetMaxLength(int32_t *aMaxLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaxLength(aMaxLength); } \
NS_IMETHOD SetMaxLength(int32_t aMaxLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMaxLength(aMaxLength); } \
NS_IMETHOD GetSize(int32_t *aSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
NS_IMETHOD SetSize(int32_t aSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); } \
NS_IMETHOD GetSelectionStart(int32_t *aSelectionStart) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectionStart(aSelectionStart); } \
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectionStart(aSelectionStart); } \
NS_IMETHOD GetSelectionEnd(int32_t *aSelectionEnd) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectionEnd(aSelectionEnd); } \
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectionEnd(aSelectionEnd); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetValue(aValue); } \
NS_IMETHOD SetValue(const nsAString & aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetValue(aValue); } \
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 Select(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Select(); } \
NS_IMETHOD SetSelectionRange(int32_t selectionStart, int32_t selectionEnd) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectionRange(selectionStart, selectionEnd); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMXULTextBoxElement : public nsIDOMXULTextBoxElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMXULTEXTBOXELEMENT
nsDOMXULTextBoxElement();
private:
~nsDOMXULTextBoxElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMXULTextBoxElement, nsIDOMXULTextBoxElement)
nsDOMXULTextBoxElement::nsDOMXULTextBoxElement()
{
/* member initializers and constructor code */
}
nsDOMXULTextBoxElement::~nsDOMXULTextBoxElement()
{
/* destructor code */
}
/* readonly attribute nsIDOMNode inputField; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetInputField(nsIDOMNode * *aInputField)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long textLength; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetTextLength(int32_t *aTextLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long maxLength; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetMaxLength(int32_t *aMaxLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetMaxLength(int32_t aMaxLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long size; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetSize(int32_t *aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetSize(int32_t aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long selectionStart; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetSelectionStart(int32_t *aSelectionStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetSelectionStart(int32_t aSelectionStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long selectionEnd; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetSelectionEnd(int32_t *aSelectionEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetSelectionEnd(int32_t aSelectionEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString value; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetValue(nsAString & aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetValue(const nsAString & aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString type; */
NS_IMETHODIMP nsDOMXULTextBoxElement::GetType(nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMXULTextBoxElement::SetType(const nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void select (); */
NS_IMETHODIMP nsDOMXULTextBoxElement::Select()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setSelectionRange (in long selectionStart, in long selectionEnd); */
NS_IMETHODIMP nsDOMXULTextBoxElement::SetSelectionRange(int32_t selectionStart, int32_t selectionEnd)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMXULTextboxElement_h__ */
|