/usr/include/thunderbird-11.0.1/nsINewsDownloadDialogArgs.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mailnews/news/public/nsINewsDownloadDialogArgs.idl
*/
#ifndef __gen_nsINewsDownloadDialogArgs_h__
#define __gen_nsINewsDownloadDialogArgs_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: nsINewsDownloadDialogArgs */
#define NS_INEWSDOWNLOADDIALOGARGS_IID_STR "3634327c-392b-4686-adf5-576e6cef9196"
#define NS_INEWSDOWNLOADDIALOGARGS_IID \
{0x3634327c, 0x392b, 0x4686, \
{ 0xad, 0xf5, 0x57, 0x6e, 0x6c, 0xef, 0x91, 0x96 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsINewsDownloadDialogArgs : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_INEWSDOWNLOADDIALOGARGS_IID)
/* attribute AString groupName; */
NS_SCRIPTABLE NS_IMETHOD GetGroupName(nsAString & aGroupName) = 0;
NS_SCRIPTABLE NS_IMETHOD SetGroupName(const nsAString & aGroupName) = 0;
/* attribute long articleCount; */
NS_SCRIPTABLE NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) = 0;
NS_SCRIPTABLE NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) = 0;
/* attribute string serverKey; */
NS_SCRIPTABLE NS_IMETHOD GetServerKey(char * *aServerKey) = 0;
NS_SCRIPTABLE NS_IMETHOD SetServerKey(const char * aServerKey) = 0;
/* attribute boolean hitOK; */
NS_SCRIPTABLE NS_IMETHOD GetHitOK(bool *aHitOK) = 0;
NS_SCRIPTABLE NS_IMETHOD SetHitOK(bool aHitOK) = 0;
/* attribute boolean downloadAll; */
NS_SCRIPTABLE NS_IMETHOD GetDownloadAll(bool *aDownloadAll) = 0;
NS_SCRIPTABLE NS_IMETHOD SetDownloadAll(bool aDownloadAll) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsINewsDownloadDialogArgs, NS_INEWSDOWNLOADDIALOGARGS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSINEWSDOWNLOADDIALOGARGS \
NS_SCRIPTABLE NS_IMETHOD GetGroupName(nsAString & aGroupName); \
NS_SCRIPTABLE NS_IMETHOD SetGroupName(const nsAString & aGroupName); \
NS_SCRIPTABLE NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount); \
NS_SCRIPTABLE NS_IMETHOD SetArticleCount(PRInt32 aArticleCount); \
NS_SCRIPTABLE NS_IMETHOD GetServerKey(char * *aServerKey); \
NS_SCRIPTABLE NS_IMETHOD SetServerKey(const char * aServerKey); \
NS_SCRIPTABLE NS_IMETHOD GetHitOK(bool *aHitOK); \
NS_SCRIPTABLE NS_IMETHOD SetHitOK(bool aHitOK); \
NS_SCRIPTABLE NS_IMETHOD GetDownloadAll(bool *aDownloadAll); \
NS_SCRIPTABLE NS_IMETHOD SetDownloadAll(bool aDownloadAll);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSINEWSDOWNLOADDIALOGARGS(_to) \
NS_SCRIPTABLE NS_IMETHOD GetGroupName(nsAString & aGroupName) { return _to GetGroupName(aGroupName); } \
NS_SCRIPTABLE NS_IMETHOD SetGroupName(const nsAString & aGroupName) { return _to SetGroupName(aGroupName); } \
NS_SCRIPTABLE NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) { return _to GetArticleCount(aArticleCount); } \
NS_SCRIPTABLE NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) { return _to SetArticleCount(aArticleCount); } \
NS_SCRIPTABLE NS_IMETHOD GetServerKey(char * *aServerKey) { return _to GetServerKey(aServerKey); } \
NS_SCRIPTABLE NS_IMETHOD SetServerKey(const char * aServerKey) { return _to SetServerKey(aServerKey); } \
NS_SCRIPTABLE NS_IMETHOD GetHitOK(bool *aHitOK) { return _to GetHitOK(aHitOK); } \
NS_SCRIPTABLE NS_IMETHOD SetHitOK(bool aHitOK) { return _to SetHitOK(aHitOK); } \
NS_SCRIPTABLE NS_IMETHOD GetDownloadAll(bool *aDownloadAll) { return _to GetDownloadAll(aDownloadAll); } \
NS_SCRIPTABLE NS_IMETHOD SetDownloadAll(bool aDownloadAll) { return _to SetDownloadAll(aDownloadAll); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSINEWSDOWNLOADDIALOGARGS(_to) \
NS_SCRIPTABLE NS_IMETHOD GetGroupName(nsAString & aGroupName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGroupName(aGroupName); } \
NS_SCRIPTABLE NS_IMETHOD SetGroupName(const nsAString & aGroupName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGroupName(aGroupName); } \
NS_SCRIPTABLE NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetArticleCount(aArticleCount); } \
NS_SCRIPTABLE NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetArticleCount(aArticleCount); } \
NS_SCRIPTABLE NS_IMETHOD GetServerKey(char * *aServerKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerKey(aServerKey); } \
NS_SCRIPTABLE NS_IMETHOD SetServerKey(const char * aServerKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetServerKey(aServerKey); } \
NS_SCRIPTABLE NS_IMETHOD GetHitOK(bool *aHitOK) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHitOK(aHitOK); } \
NS_SCRIPTABLE NS_IMETHOD SetHitOK(bool aHitOK) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHitOK(aHitOK); } \
NS_SCRIPTABLE NS_IMETHOD GetDownloadAll(bool *aDownloadAll) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownloadAll(aDownloadAll); } \
NS_SCRIPTABLE NS_IMETHOD SetDownloadAll(bool aDownloadAll) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDownloadAll(aDownloadAll); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsNewsDownloadDialogArgs : public nsINewsDownloadDialogArgs
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSINEWSDOWNLOADDIALOGARGS
nsNewsDownloadDialogArgs();
private:
~nsNewsDownloadDialogArgs();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsNewsDownloadDialogArgs, nsINewsDownloadDialogArgs)
nsNewsDownloadDialogArgs::nsNewsDownloadDialogArgs()
{
/* member initializers and constructor code */
}
nsNewsDownloadDialogArgs::~nsNewsDownloadDialogArgs()
{
/* destructor code */
}
/* attribute AString groupName; */
NS_IMETHODIMP nsNewsDownloadDialogArgs::GetGroupName(nsAString & aGroupName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetGroupName(const nsAString & aGroupName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long articleCount; */
NS_IMETHODIMP nsNewsDownloadDialogArgs::GetArticleCount(PRInt32 *aArticleCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetArticleCount(PRInt32 aArticleCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute string serverKey; */
NS_IMETHODIMP nsNewsDownloadDialogArgs::GetServerKey(char * *aServerKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetServerKey(const char * aServerKey)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean hitOK; */
NS_IMETHODIMP nsNewsDownloadDialogArgs::GetHitOK(bool *aHitOK)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetHitOK(bool aHitOK)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean downloadAll; */
NS_IMETHODIMP nsNewsDownloadDialogArgs::GetDownloadAll(bool *aDownloadAll)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetDownloadAll(bool aDownloadAll)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define DOWNLOAD_HEADERS_URL "chrome://messenger/content/downloadheaders.xul"
#endif /* __gen_nsINewsDownloadDialogArgs_h__ */
|