/usr/include/thunderbird-11.0.1/nsIPrintOptions.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 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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/widget/public/nsIPrintOptions.idl
*/
#ifndef __gen_nsIPrintOptions_h__
#define __gen_nsIPrintOptions_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIPrintSettings_h__
#include "nsIPrintSettings.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
struct nsFont;
class nsIStringEnumerator; /* forward declaration */
/* starting interface: nsIPrintOptions */
#define NS_IPRINTOPTIONS_IID_STR "92597c2b-109b-40bb-8f93-9b9acfa31de8"
#define NS_IPRINTOPTIONS_IID \
{0x92597c2b, 0x109b, 0x40bb, \
{ 0x8f, 0x93, 0x9b, 0x9a, 0xcf, 0xa3, 0x1d, 0xe8 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIPrintOptions : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRINTOPTIONS_IID)
/* void ShowPrintSetupDialog (in nsIPrintSettings aThePrintSettings); */
NS_SCRIPTABLE NS_IMETHOD ShowPrintSetupDialog(nsIPrintSettings *aThePrintSettings) = 0;
/* nsIPrintSettings CreatePrintSettings (); */
NS_SCRIPTABLE NS_IMETHOD CreatePrintSettings(nsIPrintSettings * *_retval NS_OUTPARAM) = 0;
/* PRInt32 getPrinterPrefInt (in nsIPrintSettings aPrintSettings, in wstring aPrefName); */
NS_SCRIPTABLE NS_IMETHOD GetPrinterPrefInt(nsIPrintSettings *aPrintSettings, const PRUnichar * aPrefName, PRInt32 *_retval NS_OUTPARAM) = 0;
/* void displayJobProperties (in wstring aPrinter, in nsIPrintSettings aPrintSettings, out boolean aDisplayed); */
NS_SCRIPTABLE NS_IMETHOD DisplayJobProperties(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings, bool *aDisplayed NS_OUTPARAM) = 0;
enum {
kNativeDataPrintRecord = 0
};
/* [noscript] voidPtr GetNativeData (in short aDataType); */
NS_IMETHOD GetNativeData(PRInt16 aDataType, void **_retval NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPrintOptions, NS_IPRINTOPTIONS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRINTOPTIONS \
NS_SCRIPTABLE NS_IMETHOD ShowPrintSetupDialog(nsIPrintSettings *aThePrintSettings); \
NS_SCRIPTABLE NS_IMETHOD CreatePrintSettings(nsIPrintSettings * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetPrinterPrefInt(nsIPrintSettings *aPrintSettings, const PRUnichar * aPrefName, PRInt32 *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD DisplayJobProperties(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings, bool *aDisplayed NS_OUTPARAM); \
NS_IMETHOD GetNativeData(PRInt16 aDataType, void **_retval NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRINTOPTIONS(_to) \
NS_SCRIPTABLE NS_IMETHOD ShowPrintSetupDialog(nsIPrintSettings *aThePrintSettings) { return _to ShowPrintSetupDialog(aThePrintSettings); } \
NS_SCRIPTABLE NS_IMETHOD CreatePrintSettings(nsIPrintSettings * *_retval NS_OUTPARAM) { return _to CreatePrintSettings(_retval); } \
NS_SCRIPTABLE NS_IMETHOD GetPrinterPrefInt(nsIPrintSettings *aPrintSettings, const PRUnichar * aPrefName, PRInt32 *_retval NS_OUTPARAM) { return _to GetPrinterPrefInt(aPrintSettings, aPrefName, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DisplayJobProperties(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings, bool *aDisplayed NS_OUTPARAM) { return _to DisplayJobProperties(aPrinter, aPrintSettings, aDisplayed); } \
NS_IMETHOD GetNativeData(PRInt16 aDataType, void **_retval NS_OUTPARAM) { return _to GetNativeData(aDataType, _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_NSIPRINTOPTIONS(_to) \
NS_SCRIPTABLE NS_IMETHOD ShowPrintSetupDialog(nsIPrintSettings *aThePrintSettings) { return !_to ? NS_ERROR_NULL_POINTER : _to->ShowPrintSetupDialog(aThePrintSettings); } \
NS_SCRIPTABLE NS_IMETHOD CreatePrintSettings(nsIPrintSettings * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreatePrintSettings(_retval); } \
NS_SCRIPTABLE NS_IMETHOD GetPrinterPrefInt(nsIPrintSettings *aPrintSettings, const PRUnichar * aPrefName, PRInt32 *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrinterPrefInt(aPrintSettings, aPrefName, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DisplayJobProperties(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings, bool *aDisplayed NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->DisplayJobProperties(aPrinter, aPrintSettings, aDisplayed); } \
NS_IMETHOD GetNativeData(PRInt16 aDataType, void **_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNativeData(aDataType, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPrintOptions : public nsIPrintOptions
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRINTOPTIONS
nsPrintOptions();
private:
~nsPrintOptions();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsPrintOptions, nsIPrintOptions)
nsPrintOptions::nsPrintOptions()
{
/* member initializers and constructor code */
}
nsPrintOptions::~nsPrintOptions()
{
/* destructor code */
}
/* void ShowPrintSetupDialog (in nsIPrintSettings aThePrintSettings); */
NS_IMETHODIMP nsPrintOptions::ShowPrintSetupDialog(nsIPrintSettings *aThePrintSettings)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIPrintSettings CreatePrintSettings (); */
NS_IMETHODIMP nsPrintOptions::CreatePrintSettings(nsIPrintSettings * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* PRInt32 getPrinterPrefInt (in nsIPrintSettings aPrintSettings, in wstring aPrefName); */
NS_IMETHODIMP nsPrintOptions::GetPrinterPrefInt(nsIPrintSettings *aPrintSettings, const PRUnichar * aPrefName, PRInt32 *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void displayJobProperties (in wstring aPrinter, in nsIPrintSettings aPrintSettings, out boolean aDisplayed); */
NS_IMETHODIMP nsPrintOptions::DisplayJobProperties(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings, bool *aDisplayed NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] voidPtr GetNativeData (in short aDataType); */
NS_IMETHODIMP nsPrintOptions::GetNativeData(PRInt16 aDataType, void **_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIPrinterEnumerator */
#define NS_IPRINTERENUMERATOR_IID_STR "5e738fff-404c-4c94-9189-e8f2cce93e94"
#define NS_IPRINTERENUMERATOR_IID \
{0x5e738fff, 0x404c, 0x4c94, \
{ 0x91, 0x89, 0xe8, 0xf2, 0xcc, 0xe9, 0x3e, 0x94 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIPrinterEnumerator : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRINTERENUMERATOR_IID)
/* readonly attribute wstring defaultPrinterName; */
NS_SCRIPTABLE NS_IMETHOD GetDefaultPrinterName(PRUnichar * *aDefaultPrinterName) = 0;
/* void initPrintSettingsFromPrinter (in wstring aPrinterName, in nsIPrintSettings aPrintSettings); */
NS_SCRIPTABLE NS_IMETHOD InitPrintSettingsFromPrinter(const PRUnichar * aPrinterName, nsIPrintSettings *aPrintSettings) = 0;
/* readonly attribute nsIStringEnumerator printerNameList; */
NS_SCRIPTABLE NS_IMETHOD GetPrinterNameList(nsIStringEnumerator * *aPrinterNameList) = 0;
/* void displayPropertiesDlg (in wstring aPrinter, in nsIPrintSettings aPrintSettings); */
NS_SCRIPTABLE NS_IMETHOD DisplayPropertiesDlg(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPrinterEnumerator, NS_IPRINTERENUMERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRINTERENUMERATOR \
NS_SCRIPTABLE NS_IMETHOD GetDefaultPrinterName(PRUnichar * *aDefaultPrinterName); \
NS_SCRIPTABLE NS_IMETHOD InitPrintSettingsFromPrinter(const PRUnichar * aPrinterName, nsIPrintSettings *aPrintSettings); \
NS_SCRIPTABLE NS_IMETHOD GetPrinterNameList(nsIStringEnumerator * *aPrinterNameList); \
NS_SCRIPTABLE NS_IMETHOD DisplayPropertiesDlg(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRINTERENUMERATOR(_to) \
NS_SCRIPTABLE NS_IMETHOD GetDefaultPrinterName(PRUnichar * *aDefaultPrinterName) { return _to GetDefaultPrinterName(aDefaultPrinterName); } \
NS_SCRIPTABLE NS_IMETHOD InitPrintSettingsFromPrinter(const PRUnichar * aPrinterName, nsIPrintSettings *aPrintSettings) { return _to InitPrintSettingsFromPrinter(aPrinterName, aPrintSettings); } \
NS_SCRIPTABLE NS_IMETHOD GetPrinterNameList(nsIStringEnumerator * *aPrinterNameList) { return _to GetPrinterNameList(aPrinterNameList); } \
NS_SCRIPTABLE NS_IMETHOD DisplayPropertiesDlg(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings) { return _to DisplayPropertiesDlg(aPrinter, aPrintSettings); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRINTERENUMERATOR(_to) \
NS_SCRIPTABLE NS_IMETHOD GetDefaultPrinterName(PRUnichar * *aDefaultPrinterName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultPrinterName(aDefaultPrinterName); } \
NS_SCRIPTABLE NS_IMETHOD InitPrintSettingsFromPrinter(const PRUnichar * aPrinterName, nsIPrintSettings *aPrintSettings) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitPrintSettingsFromPrinter(aPrinterName, aPrintSettings); } \
NS_SCRIPTABLE NS_IMETHOD GetPrinterNameList(nsIStringEnumerator * *aPrinterNameList) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrinterNameList(aPrinterNameList); } \
NS_SCRIPTABLE NS_IMETHOD DisplayPropertiesDlg(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings) { return !_to ? NS_ERROR_NULL_POINTER : _to->DisplayPropertiesDlg(aPrinter, aPrintSettings); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPrinterEnumerator : public nsIPrinterEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRINTERENUMERATOR
nsPrinterEnumerator();
private:
~nsPrinterEnumerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsPrinterEnumerator, nsIPrinterEnumerator)
nsPrinterEnumerator::nsPrinterEnumerator()
{
/* member initializers and constructor code */
}
nsPrinterEnumerator::~nsPrinterEnumerator()
{
/* destructor code */
}
/* readonly attribute wstring defaultPrinterName; */
NS_IMETHODIMP nsPrinterEnumerator::GetDefaultPrinterName(PRUnichar * *aDefaultPrinterName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void initPrintSettingsFromPrinter (in wstring aPrinterName, in nsIPrintSettings aPrintSettings); */
NS_IMETHODIMP nsPrinterEnumerator::InitPrintSettingsFromPrinter(const PRUnichar * aPrinterName, nsIPrintSettings *aPrintSettings)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIStringEnumerator printerNameList; */
NS_IMETHODIMP nsPrinterEnumerator::GetPrinterNameList(nsIStringEnumerator * *aPrinterNameList)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void displayPropertiesDlg (in wstring aPrinter, in nsIPrintSettings aPrintSettings); */
NS_IMETHODIMP nsPrinterEnumerator::DisplayPropertiesDlg(const PRUnichar * aPrinter, nsIPrintSettings *aPrintSettings)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPrintOptions_h__ */
|