/usr/include/thunderbird/nsIEmbeddingSiteWindow.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIEmbeddingSiteWindow.idl
*/
#ifndef __gen_nsIEmbeddingSiteWindow_h__
#define __gen_nsIEmbeddingSiteWindow_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: nsIEmbeddingSiteWindow */
#define NS_IEMBEDDINGSITEWINDOW_IID_STR "0b976267-4aaa-4f36-a2d4-27b5ca8d73bb"
#define NS_IEMBEDDINGSITEWINDOW_IID \
{0x0b976267, 0x4aaa, 0x4f36, \
{ 0xa2, 0xd4, 0x27, 0xb5, 0xca, 0x8d, 0x73, 0xbb }}
class NS_NO_VTABLE nsIEmbeddingSiteWindow : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IEMBEDDINGSITEWINDOW_IID)
enum {
DIM_FLAGS_POSITION = 1U,
DIM_FLAGS_SIZE_INNER = 2U,
DIM_FLAGS_SIZE_OUTER = 4U,
DIM_FLAGS_IGNORE_X = 8U,
DIM_FLAGS_IGNORE_Y = 16U,
DIM_FLAGS_IGNORE_CX = 32U,
DIM_FLAGS_IGNORE_CY = 64U
};
/* void setDimensions (in unsigned long flags, in long x, in long y, in long cx, in long cy); */
NS_IMETHOD SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy) = 0;
/* void getDimensions (in unsigned long flags, out long x, out long y, out long cx, out long cy); */
NS_IMETHOD GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy) = 0;
/* void setFocus (); */
NS_IMETHOD SetFocus(void) = 0;
/* attribute boolean visibility; */
NS_IMETHOD GetVisibility(bool *aVisibility) = 0;
NS_IMETHOD SetVisibility(bool aVisibility) = 0;
/* attribute wstring title; */
NS_IMETHOD GetTitle(char16_t * *aTitle) = 0;
NS_IMETHOD SetTitle(const char16_t * aTitle) = 0;
/* [noscript] readonly attribute voidPtr siteWindow; */
NS_IMETHOD GetSiteWindow(void **aSiteWindow) = 0;
/* void blur (); */
NS_IMETHOD Blur(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIEmbeddingSiteWindow, NS_IEMBEDDINGSITEWINDOW_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIEMBEDDINGSITEWINDOW \
NS_IMETHOD SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy) override; \
NS_IMETHOD GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy) override; \
NS_IMETHOD SetFocus(void) override; \
NS_IMETHOD GetVisibility(bool *aVisibility) override; \
NS_IMETHOD SetVisibility(bool aVisibility) override; \
NS_IMETHOD GetTitle(char16_t * *aTitle) override; \
NS_IMETHOD SetTitle(const char16_t * aTitle) override; \
NS_IMETHOD GetSiteWindow(void **aSiteWindow) override; \
NS_IMETHOD Blur(void) 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_NSIEMBEDDINGSITEWINDOW \
NS_METHOD SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy); \
NS_METHOD GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy); \
NS_METHOD SetFocus(void); \
NS_METHOD GetVisibility(bool *aVisibility); \
NS_METHOD SetVisibility(bool aVisibility); \
NS_METHOD GetTitle(char16_t * *aTitle); \
NS_METHOD SetTitle(const char16_t * aTitle); \
NS_METHOD GetSiteWindow(void **aSiteWindow); \
NS_METHOD Blur(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIEMBEDDINGSITEWINDOW(_to) \
NS_IMETHOD SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy) override { return _to SetDimensions(flags, x, y, cx, cy); } \
NS_IMETHOD GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy) override { return _to GetDimensions(flags, x, y, cx, cy); } \
NS_IMETHOD SetFocus(void) override { return _to SetFocus(); } \
NS_IMETHOD GetVisibility(bool *aVisibility) override { return _to GetVisibility(aVisibility); } \
NS_IMETHOD SetVisibility(bool aVisibility) override { return _to SetVisibility(aVisibility); } \
NS_IMETHOD GetTitle(char16_t * *aTitle) override { return _to GetTitle(aTitle); } \
NS_IMETHOD SetTitle(const char16_t * aTitle) override { return _to SetTitle(aTitle); } \
NS_IMETHOD GetSiteWindow(void **aSiteWindow) override { return _to GetSiteWindow(aSiteWindow); } \
NS_IMETHOD Blur(void) override { return _to Blur(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIEMBEDDINGSITEWINDOW(_to) \
NS_IMETHOD SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDimensions(flags, x, y, cx, cy); } \
NS_IMETHOD GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDimensions(flags, x, y, cx, cy); } \
NS_IMETHOD SetFocus(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFocus(); } \
NS_IMETHOD GetVisibility(bool *aVisibility) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetVisibility(aVisibility); } \
NS_IMETHOD SetVisibility(bool aVisibility) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetVisibility(aVisibility); } \
NS_IMETHOD GetTitle(char16_t * *aTitle) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTitle(aTitle); } \
NS_IMETHOD SetTitle(const char16_t * aTitle) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTitle(aTitle); } \
NS_IMETHOD GetSiteWindow(void **aSiteWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSiteWindow(aSiteWindow); } \
NS_IMETHOD Blur(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Blur(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsEmbeddingSiteWindow : public nsIEmbeddingSiteWindow
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIEMBEDDINGSITEWINDOW
nsEmbeddingSiteWindow();
private:
~nsEmbeddingSiteWindow();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsEmbeddingSiteWindow, nsIEmbeddingSiteWindow)
nsEmbeddingSiteWindow::nsEmbeddingSiteWindow()
{
/* member initializers and constructor code */
}
nsEmbeddingSiteWindow::~nsEmbeddingSiteWindow()
{
/* destructor code */
}
/* void setDimensions (in unsigned long flags, in long x, in long y, in long cx, in long cy); */
NS_IMETHODIMP nsEmbeddingSiteWindow::SetDimensions(uint32_t flags, int32_t x, int32_t y, int32_t cx, int32_t cy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getDimensions (in unsigned long flags, out long x, out long y, out long cx, out long cy); */
NS_IMETHODIMP nsEmbeddingSiteWindow::GetDimensions(uint32_t flags, int32_t *x, int32_t *y, int32_t *cx, int32_t *cy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setFocus (); */
NS_IMETHODIMP nsEmbeddingSiteWindow::SetFocus()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean visibility; */
NS_IMETHODIMP nsEmbeddingSiteWindow::GetVisibility(bool *aVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsEmbeddingSiteWindow::SetVisibility(bool aVisibility)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute wstring title; */
NS_IMETHODIMP nsEmbeddingSiteWindow::GetTitle(char16_t * *aTitle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsEmbeddingSiteWindow::SetTitle(const char16_t * aTitle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute voidPtr siteWindow; */
NS_IMETHODIMP nsEmbeddingSiteWindow::GetSiteWindow(void **aSiteWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void blur (); */
NS_IMETHODIMP nsEmbeddingSiteWindow::Blur()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIEmbeddingSiteWindow_h__ */
|