/usr/include/firefox/nsIAccessibleDocument.h is in firefox-dev 11.0+build1-0ubuntu4.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/firefox-11.0+build1/build-tree/mozilla/accessible/public/nsIAccessibleDocument.idl
*/
#ifndef __gen_nsIAccessibleDocument_h__
#define __gen_nsIAccessibleDocument_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIAccessible; /* forward declaration */
class nsIAccessNode; /* forward declaration */
class nsIDOMDocument; /* forward declaration */
class nsIDOMNode; /* forward declaration */
class nsIDOMWindow; /* forward declaration */
/* starting interface: nsIAccessibleDocument */
#define NS_IACCESSIBLEDOCUMENT_IID_STR "451242bd-8a0c-4198-ae88-c053609a4e5d"
#define NS_IACCESSIBLEDOCUMENT_IID \
{0x451242bd, 0x8a0c, 0x4198, \
{ 0xae, 0x88, 0xc0, 0x53, 0x60, 0x9a, 0x4e, 0x5d }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIAccessibleDocument : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IACCESSIBLEDOCUMENT_IID)
/* readonly attribute AString URL; */
NS_SCRIPTABLE NS_IMETHOD GetURL(nsAString & aURL) = 0;
/* readonly attribute AString title; */
NS_SCRIPTABLE NS_IMETHOD GetTitle(nsAString & aTitle) = 0;
/* readonly attribute AString mimeType; */
NS_SCRIPTABLE NS_IMETHOD GetMimeType(nsAString & aMimeType) = 0;
/* readonly attribute AString docType; */
NS_SCRIPTABLE NS_IMETHOD GetDocType(nsAString & aDocType) = 0;
/* readonly attribute nsIDOMDocument DOMDocument; */
NS_SCRIPTABLE NS_IMETHOD GetDOMDocument(nsIDOMDocument * *aDOMDocument) = 0;
/* readonly attribute nsIDOMWindow window; */
NS_SCRIPTABLE NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) = 0;
/* AString getNameSpaceURIForID (in short nameSpaceID); */
NS_SCRIPTABLE NS_IMETHOD GetNameSpaceURIForID(PRInt16 nameSpaceID, nsAString & _retval NS_OUTPARAM) = 0;
/* [noscript] readonly attribute voidPtr windowHandle; */
NS_IMETHOD GetWindowHandle(void **aWindowHandle) = 0;
/* readonly attribute nsIAccessibleDocument parentDocument; */
NS_SCRIPTABLE NS_IMETHOD GetParentDocument(nsIAccessibleDocument * *aParentDocument) = 0;
/* readonly attribute unsigned long childDocumentCount; */
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentCount(PRUint32 *aChildDocumentCount) = 0;
/* nsIAccessibleDocument getChildDocumentAt (in unsigned long index); */
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentAt(PRUint32 index, nsIAccessibleDocument * *_retval NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAccessibleDocument, NS_IACCESSIBLEDOCUMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIACCESSIBLEDOCUMENT \
NS_SCRIPTABLE NS_IMETHOD GetURL(nsAString & aURL); \
NS_SCRIPTABLE NS_IMETHOD GetTitle(nsAString & aTitle); \
NS_SCRIPTABLE NS_IMETHOD GetMimeType(nsAString & aMimeType); \
NS_SCRIPTABLE NS_IMETHOD GetDocType(nsAString & aDocType); \
NS_SCRIPTABLE NS_IMETHOD GetDOMDocument(nsIDOMDocument * *aDOMDocument); \
NS_SCRIPTABLE NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow); \
NS_SCRIPTABLE NS_IMETHOD GetNameSpaceURIForID(PRInt16 nameSpaceID, nsAString & _retval NS_OUTPARAM); \
NS_IMETHOD GetWindowHandle(void **aWindowHandle); \
NS_SCRIPTABLE NS_IMETHOD GetParentDocument(nsIAccessibleDocument * *aParentDocument); \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentCount(PRUint32 *aChildDocumentCount); \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentAt(PRUint32 index, nsIAccessibleDocument * *_retval NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIACCESSIBLEDOCUMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetURL(nsAString & aURL) { return _to GetURL(aURL); } \
NS_SCRIPTABLE NS_IMETHOD GetTitle(nsAString & aTitle) { return _to GetTitle(aTitle); } \
NS_SCRIPTABLE NS_IMETHOD GetMimeType(nsAString & aMimeType) { return _to GetMimeType(aMimeType); } \
NS_SCRIPTABLE NS_IMETHOD GetDocType(nsAString & aDocType) { return _to GetDocType(aDocType); } \
NS_SCRIPTABLE NS_IMETHOD GetDOMDocument(nsIDOMDocument * *aDOMDocument) { return _to GetDOMDocument(aDOMDocument); } \
NS_SCRIPTABLE NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) { return _to GetWindow(aWindow); } \
NS_SCRIPTABLE NS_IMETHOD GetNameSpaceURIForID(PRInt16 nameSpaceID, nsAString & _retval NS_OUTPARAM) { return _to GetNameSpaceURIForID(nameSpaceID, _retval); } \
NS_IMETHOD GetWindowHandle(void **aWindowHandle) { return _to GetWindowHandle(aWindowHandle); } \
NS_SCRIPTABLE NS_IMETHOD GetParentDocument(nsIAccessibleDocument * *aParentDocument) { return _to GetParentDocument(aParentDocument); } \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentCount(PRUint32 *aChildDocumentCount) { return _to GetChildDocumentCount(aChildDocumentCount); } \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentAt(PRUint32 index, nsIAccessibleDocument * *_retval NS_OUTPARAM) { return _to GetChildDocumentAt(index, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIACCESSIBLEDOCUMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetURL(nsAString & aURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetURL(aURL); } \
NS_SCRIPTABLE NS_IMETHOD GetTitle(nsAString & aTitle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTitle(aTitle); } \
NS_SCRIPTABLE NS_IMETHOD GetMimeType(nsAString & aMimeType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMimeType(aMimeType); } \
NS_SCRIPTABLE NS_IMETHOD GetDocType(nsAString & aDocType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDocType(aDocType); } \
NS_SCRIPTABLE NS_IMETHOD GetDOMDocument(nsIDOMDocument * *aDOMDocument) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDOMDocument(aDOMDocument); } \
NS_SCRIPTABLE NS_IMETHOD GetWindow(nsIDOMWindow * *aWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWindow(aWindow); } \
NS_SCRIPTABLE NS_IMETHOD GetNameSpaceURIForID(PRInt16 nameSpaceID, nsAString & _retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNameSpaceURIForID(nameSpaceID, _retval); } \
NS_IMETHOD GetWindowHandle(void **aWindowHandle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWindowHandle(aWindowHandle); } \
NS_SCRIPTABLE NS_IMETHOD GetParentDocument(nsIAccessibleDocument * *aParentDocument) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParentDocument(aParentDocument); } \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentCount(PRUint32 *aChildDocumentCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildDocumentCount(aChildDocumentCount); } \
NS_SCRIPTABLE NS_IMETHOD GetChildDocumentAt(PRUint32 index, nsIAccessibleDocument * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildDocumentAt(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAccessibleDocument : public nsIAccessibleDocument
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIACCESSIBLEDOCUMENT
nsAccessibleDocument();
private:
~nsAccessibleDocument();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsAccessibleDocument, nsIAccessibleDocument)
nsAccessibleDocument::nsAccessibleDocument()
{
/* member initializers and constructor code */
}
nsAccessibleDocument::~nsAccessibleDocument()
{
/* destructor code */
}
/* readonly attribute AString URL; */
NS_IMETHODIMP nsAccessibleDocument::GetURL(nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString title; */
NS_IMETHODIMP nsAccessibleDocument::GetTitle(nsAString & aTitle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString mimeType; */
NS_IMETHODIMP nsAccessibleDocument::GetMimeType(nsAString & aMimeType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString docType; */
NS_IMETHODIMP nsAccessibleDocument::GetDocType(nsAString & aDocType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMDocument DOMDocument; */
NS_IMETHODIMP nsAccessibleDocument::GetDOMDocument(nsIDOMDocument * *aDOMDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMWindow window; */
NS_IMETHODIMP nsAccessibleDocument::GetWindow(nsIDOMWindow * *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getNameSpaceURIForID (in short nameSpaceID); */
NS_IMETHODIMP nsAccessibleDocument::GetNameSpaceURIForID(PRInt16 nameSpaceID, nsAString & _retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute voidPtr windowHandle; */
NS_IMETHODIMP nsAccessibleDocument::GetWindowHandle(void **aWindowHandle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIAccessibleDocument parentDocument; */
NS_IMETHODIMP nsAccessibleDocument::GetParentDocument(nsIAccessibleDocument * *aParentDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long childDocumentCount; */
NS_IMETHODIMP nsAccessibleDocument::GetChildDocumentCount(PRUint32 *aChildDocumentCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIAccessibleDocument getChildDocumentAt (in unsigned long index); */
NS_IMETHODIMP nsAccessibleDocument::GetChildDocumentAt(PRUint32 index, nsIAccessibleDocument * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIAccessibleDocument_h__ */
|