/usr/include/thunderbird/nsIDOMHTMLOptionsCollection.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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMHTMLOptionsCollection.idl
*/
#ifndef __gen_nsIDOMHTMLOptionsCollection_h__
#define __gen_nsIDOMHTMLOptionsCollection_h__
#ifndef __gen_nsIDOMHTMLElement_h__
#include "nsIDOMHTMLElement.h"
#endif
#ifndef __gen_nsIDOMHTMLCollection_h__
#include "nsIDOMHTMLCollection.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMHTMLOptionElement; /* forward declaration */
class nsIDOMHTMLSelectElement; /* forward declaration */
/* starting interface: nsIDOMHTMLOptionsCollection */
#define NS_IDOMHTMLOPTIONSCOLLECTION_IID_STR "4173cc53-30f6-4d12-a770-981ba53164e2"
#define NS_IDOMHTMLOPTIONSCOLLECTION_IID \
{0x4173cc53, 0x30f6, 0x4d12, \
{ 0xa7, 0x70, 0x98, 0x1b, 0xa5, 0x31, 0x64, 0xe2 }}
class NS_NO_VTABLE nsIDOMHTMLOptionsCollection : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLOPTIONSCOLLECTION_IID)
/* attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
NS_IMETHOD SetLength(uint32_t aLength) = 0;
/* nsIDOMNode item (in unsigned long index); */
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) = 0;
/* nsIDOMNode namedItem (in DOMString name); */
NS_IMETHOD NamedItem(const nsAString & name, nsIDOMNode * *_retval) = 0;
/* attribute long selectedIndex; */
NS_IMETHOD GetSelectedIndex(int32_t *aSelectedIndex) = 0;
NS_IMETHOD SetSelectedIndex(int32_t aSelectedIndex) = 0;
/* [noscript] void setOption (in unsigned long index, in nsIDOMHTMLOptionElement option); */
NS_IMETHOD SetOption(uint32_t index, nsIDOMHTMLOptionElement *option) = 0;
/* [noscript] readonly attribute nsIDOMHTMLSelectElement select; */
NS_IMETHOD GetSelect(nsIDOMHTMLSelectElement * *aSelect) = 0;
/* void add (in nsIDOMHTMLOptionElement option, [optional] in nsIVariant before); */
NS_IMETHOD Add(nsIDOMHTMLOptionElement *option, nsIVariant *before) = 0;
/* void remove (in long index); */
NS_IMETHOD Remove(int32_t index) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLOptionsCollection, NS_IDOMHTMLOPTIONSCOLLECTION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLOPTIONSCOLLECTION \
NS_IMETHOD GetLength(uint32_t *aLength) override; \
NS_IMETHOD SetLength(uint32_t aLength) override; \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) override; \
NS_IMETHOD NamedItem(const nsAString & name, nsIDOMNode * *_retval) override; \
NS_IMETHOD GetSelectedIndex(int32_t *aSelectedIndex) override; \
NS_IMETHOD SetSelectedIndex(int32_t aSelectedIndex) override; \
NS_IMETHOD SetOption(uint32_t index, nsIDOMHTMLOptionElement *option) override; \
NS_IMETHOD GetSelect(nsIDOMHTMLSelectElement * *aSelect) override; \
NS_IMETHOD Add(nsIDOMHTMLOptionElement *option, nsIVariant *before) override; \
NS_IMETHOD Remove(int32_t index) 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_NSIDOMHTMLOPTIONSCOLLECTION \
NS_METHOD GetLength(uint32_t *aLength); \
NS_METHOD SetLength(uint32_t aLength); \
NS_METHOD Item(uint32_t index, nsIDOMNode * *_retval); \
NS_METHOD NamedItem(const nsAString & name, nsIDOMNode * *_retval); \
NS_METHOD GetSelectedIndex(int32_t *aSelectedIndex); \
NS_METHOD SetSelectedIndex(int32_t aSelectedIndex); \
NS_METHOD SetOption(uint32_t index, nsIDOMHTMLOptionElement *option); \
NS_METHOD GetSelect(nsIDOMHTMLSelectElement * *aSelect); \
NS_METHOD Add(nsIDOMHTMLOptionElement *option, nsIVariant *before); \
NS_METHOD Remove(int32_t index);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLOPTIONSCOLLECTION(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) override { return _to GetLength(aLength); } \
NS_IMETHOD SetLength(uint32_t aLength) override { return _to SetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) override { return _to Item(index, _retval); } \
NS_IMETHOD NamedItem(const nsAString & name, nsIDOMNode * *_retval) override { return _to NamedItem(name, _retval); } \
NS_IMETHOD GetSelectedIndex(int32_t *aSelectedIndex) override { return _to GetSelectedIndex(aSelectedIndex); } \
NS_IMETHOD SetSelectedIndex(int32_t aSelectedIndex) override { return _to SetSelectedIndex(aSelectedIndex); } \
NS_IMETHOD SetOption(uint32_t index, nsIDOMHTMLOptionElement *option) override { return _to SetOption(index, option); } \
NS_IMETHOD GetSelect(nsIDOMHTMLSelectElement * *aSelect) override { return _to GetSelect(aSelect); } \
NS_IMETHOD Add(nsIDOMHTMLOptionElement *option, nsIVariant *before) override { return _to Add(option, before); } \
NS_IMETHOD Remove(int32_t index) override { return _to Remove(index); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLOPTIONSCOLLECTION(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
NS_IMETHOD SetLength(uint32_t aLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); } \
NS_IMETHOD NamedItem(const nsAString & name, nsIDOMNode * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->NamedItem(name, _retval); } \
NS_IMETHOD GetSelectedIndex(int32_t *aSelectedIndex) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectedIndex(aSelectedIndex); } \
NS_IMETHOD SetSelectedIndex(int32_t aSelectedIndex) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectedIndex(aSelectedIndex); } \
NS_IMETHOD SetOption(uint32_t index, nsIDOMHTMLOptionElement *option) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOption(index, option); } \
NS_IMETHOD GetSelect(nsIDOMHTMLSelectElement * *aSelect) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelect(aSelect); } \
NS_IMETHOD Add(nsIDOMHTMLOptionElement *option, nsIVariant *before) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Add(option, before); } \
NS_IMETHOD Remove(int32_t index) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Remove(index); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLOptionsCollection : public nsIDOMHTMLOptionsCollection
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLOPTIONSCOLLECTION
nsDOMHTMLOptionsCollection();
private:
~nsDOMHTMLOptionsCollection();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMHTMLOptionsCollection, nsIDOMHTMLOptionsCollection)
nsDOMHTMLOptionsCollection::nsDOMHTMLOptionsCollection()
{
/* member initializers and constructor code */
}
nsDOMHTMLOptionsCollection::~nsDOMHTMLOptionsCollection()
{
/* destructor code */
}
/* attribute unsigned long length; */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLOptionsCollection::SetLength(uint32_t aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMNode item (in unsigned long index); */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::Item(uint32_t index, nsIDOMNode * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMNode namedItem (in DOMString name); */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::NamedItem(const nsAString & name, nsIDOMNode * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long selectedIndex; */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::GetSelectedIndex(int32_t *aSelectedIndex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLOptionsCollection::SetSelectedIndex(int32_t aSelectedIndex)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void setOption (in unsigned long index, in nsIDOMHTMLOptionElement option); */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::SetOption(uint32_t index, nsIDOMHTMLOptionElement *option)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute nsIDOMHTMLSelectElement select; */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::GetSelect(nsIDOMHTMLSelectElement * *aSelect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void add (in nsIDOMHTMLOptionElement option, [optional] in nsIVariant before); */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::Add(nsIDOMHTMLOptionElement *option, nsIVariant *before)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void remove (in long index); */
NS_IMETHODIMP nsDOMHTMLOptionsCollection::Remove(int32_t index)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLOptionsCollection_h__ */
|