/usr/include/thunderbird-11.0.1/nsIQueryContentEventResult.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/dom/interfaces/base/nsIQueryContentEventResult.idl
*/
#ifndef __gen_nsIQueryContentEventResult_h__
#define __gen_nsIQueryContentEventResult_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
/* starting interface: nsIQueryContentEventResult */
#define NS_IQUERYCONTENTEVENTRESULT_IID_STR "4b4ba266-b51e-4f0f-8d0e-9f13cb2a0056"
#define NS_IQUERYCONTENTEVENTRESULT_IID \
{0x4b4ba266, 0xb51e, 0x4f0f, \
{ 0x8d, 0x0e, 0x9f, 0x13, 0xcb, 0x2a, 0x00, 0x56 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIQueryContentEventResult : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IQUERYCONTENTEVENTRESULT_IID)
/* readonly attribute unsigned long offset; */
NS_SCRIPTABLE NS_IMETHOD GetOffset(PRUint32 *aOffset) = 0;
/* readonly attribute boolean reversed; */
NS_SCRIPTABLE NS_IMETHOD GetReversed(bool *aReversed) = 0;
/* readonly attribute long left; */
NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) = 0;
/* readonly attribute long top; */
NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) = 0;
/* readonly attribute long width; */
NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) = 0;
/* readonly attribute long height; */
NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) = 0;
/* readonly attribute AString text; */
NS_SCRIPTABLE NS_IMETHOD GetText(nsAString & aText) = 0;
/* readonly attribute boolean succeeded; */
NS_SCRIPTABLE NS_IMETHOD GetSucceeded(bool *aSucceeded) = 0;
/* readonly attribute boolean notFound; */
NS_SCRIPTABLE NS_IMETHOD GetNotFound(bool *aNotFound) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIQueryContentEventResult, NS_IQUERYCONTENTEVENTRESULT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIQUERYCONTENTEVENTRESULT \
NS_SCRIPTABLE NS_IMETHOD GetOffset(PRUint32 *aOffset); \
NS_SCRIPTABLE NS_IMETHOD GetReversed(bool *aReversed); \
NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft); \
NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop); \
NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth); \
NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight); \
NS_SCRIPTABLE NS_IMETHOD GetText(nsAString & aText); \
NS_SCRIPTABLE NS_IMETHOD GetSucceeded(bool *aSucceeded); \
NS_SCRIPTABLE NS_IMETHOD GetNotFound(bool *aNotFound);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIQUERYCONTENTEVENTRESULT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetOffset(PRUint32 *aOffset) { return _to GetOffset(aOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetReversed(bool *aReversed) { return _to GetReversed(aReversed); } \
NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) { return _to GetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) { return _to GetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) { return _to GetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) { return _to GetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetText(nsAString & aText) { return _to GetText(aText); } \
NS_SCRIPTABLE NS_IMETHOD GetSucceeded(bool *aSucceeded) { return _to GetSucceeded(aSucceeded); } \
NS_SCRIPTABLE NS_IMETHOD GetNotFound(bool *aNotFound) { return _to GetNotFound(aNotFound); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIQUERYCONTENTEVENTRESULT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetOffset(PRUint32 *aOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOffset(aOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetReversed(bool *aReversed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetReversed(aReversed); } \
NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLeft(aLeft); } \
NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTop(aTop); } \
NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); } \
NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeight(aHeight); } \
NS_SCRIPTABLE NS_IMETHOD GetText(nsAString & aText) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetText(aText); } \
NS_SCRIPTABLE NS_IMETHOD GetSucceeded(bool *aSucceeded) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSucceeded(aSucceeded); } \
NS_SCRIPTABLE NS_IMETHOD GetNotFound(bool *aNotFound) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNotFound(aNotFound); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsQueryContentEventResult : public nsIQueryContentEventResult
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIQUERYCONTENTEVENTRESULT
nsQueryContentEventResult();
private:
~nsQueryContentEventResult();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsQueryContentEventResult, nsIQueryContentEventResult)
nsQueryContentEventResult::nsQueryContentEventResult()
{
/* member initializers and constructor code */
}
nsQueryContentEventResult::~nsQueryContentEventResult()
{
/* destructor code */
}
/* readonly attribute unsigned long offset; */
NS_IMETHODIMP nsQueryContentEventResult::GetOffset(PRUint32 *aOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean reversed; */
NS_IMETHODIMP nsQueryContentEventResult::GetReversed(bool *aReversed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long left; */
NS_IMETHODIMP nsQueryContentEventResult::GetLeft(PRInt32 *aLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long top; */
NS_IMETHODIMP nsQueryContentEventResult::GetTop(PRInt32 *aTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long width; */
NS_IMETHODIMP nsQueryContentEventResult::GetWidth(PRInt32 *aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long height; */
NS_IMETHODIMP nsQueryContentEventResult::GetHeight(PRInt32 *aHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AString text; */
NS_IMETHODIMP nsQueryContentEventResult::GetText(nsAString & aText)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean succeeded; */
NS_IMETHODIMP nsQueryContentEventResult::GetSucceeded(bool *aSucceeded)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean notFound; */
NS_IMETHODIMP nsQueryContentEventResult::GetNotFound(bool *aNotFound)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIQueryContentEventResult_h__ */
|