/usr/include/thunderbird/nsIDOMClientRect.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMClientRect.idl
*/
#ifndef __gen_nsIDOMClientRect_h__
#define __gen_nsIDOMClientRect_h__
#ifndef __gen_domstubs_h__
#include "domstubs.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: nsIDOMClientRect */
#define NS_IDOMCLIENTRECT_IID_STR "b2f824c4-d9d3-499b-8d3b-45c8245497c6"
#define NS_IDOMCLIENTRECT_IID \
{0xb2f824c4, 0xd9d3, 0x499b, \
{ 0x8d, 0x3b, 0x45, 0xc8, 0x24, 0x54, 0x97, 0xc6 }}
class NS_NO_VTABLE nsIDOMClientRect : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCLIENTRECT_IID)
/* readonly attribute float left; */
NS_IMETHOD GetLeft(float *aLeft) = 0;
/* readonly attribute float top; */
NS_IMETHOD GetTop(float *aTop) = 0;
/* readonly attribute float right; */
NS_IMETHOD GetRight(float *aRight) = 0;
/* readonly attribute float bottom; */
NS_IMETHOD GetBottom(float *aBottom) = 0;
/* readonly attribute float width; */
NS_IMETHOD GetWidth(float *aWidth) = 0;
/* readonly attribute float height; */
NS_IMETHOD GetHeight(float *aHeight) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMClientRect, NS_IDOMCLIENTRECT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCLIENTRECT \
NS_IMETHOD GetLeft(float *aLeft) override; \
NS_IMETHOD GetTop(float *aTop) override; \
NS_IMETHOD GetRight(float *aRight) override; \
NS_IMETHOD GetBottom(float *aBottom) override; \
NS_IMETHOD GetWidth(float *aWidth) override; \
NS_IMETHOD GetHeight(float *aHeight) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCLIENTRECT(_to) \
NS_IMETHOD GetLeft(float *aLeft) override { return _to GetLeft(aLeft); } \
NS_IMETHOD GetTop(float *aTop) override { return _to GetTop(aTop); } \
NS_IMETHOD GetRight(float *aRight) override { return _to GetRight(aRight); } \
NS_IMETHOD GetBottom(float *aBottom) override { return _to GetBottom(aBottom); } \
NS_IMETHOD GetWidth(float *aWidth) override { return _to GetWidth(aWidth); } \
NS_IMETHOD GetHeight(float *aHeight) override { return _to GetHeight(aHeight); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCLIENTRECT(_to) \
NS_IMETHOD GetLeft(float *aLeft) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLeft(aLeft); } \
NS_IMETHOD GetTop(float *aTop) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTop(aTop); } \
NS_IMETHOD GetRight(float *aRight) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRight(aRight); } \
NS_IMETHOD GetBottom(float *aBottom) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBottom(aBottom); } \
NS_IMETHOD GetWidth(float *aWidth) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); } \
NS_IMETHOD GetHeight(float *aHeight) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeight(aHeight); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMClientRect : public nsIDOMClientRect
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCLIENTRECT
nsDOMClientRect();
private:
~nsDOMClientRect();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMClientRect, nsIDOMClientRect)
nsDOMClientRect::nsDOMClientRect()
{
/* member initializers and constructor code */
}
nsDOMClientRect::~nsDOMClientRect()
{
/* destructor code */
}
/* readonly attribute float left; */
NS_IMETHODIMP nsDOMClientRect::GetLeft(float *aLeft)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float top; */
NS_IMETHODIMP nsDOMClientRect::GetTop(float *aTop)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float right; */
NS_IMETHODIMP nsDOMClientRect::GetRight(float *aRight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float bottom; */
NS_IMETHODIMP nsDOMClientRect::GetBottom(float *aBottom)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float width; */
NS_IMETHODIMP nsDOMClientRect::GetWidth(float *aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float height; */
NS_IMETHODIMP nsDOMClientRect::GetHeight(float *aHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMClientRect_h__ */
|