/usr/include/thunderbird/nsINewsDownloadDialogArgs.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/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 nsINewsDownloadDialogArgs : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_INEWSDOWNLOADDIALOGARGS_IID)
/* attribute AString groupName; */
NS_IMETHOD GetGroupName(nsAString & aGroupName) = 0;
NS_IMETHOD SetGroupName(const nsAString & aGroupName) = 0;
/* attribute long articleCount; */
NS_IMETHOD GetArticleCount(int32_t *aArticleCount) = 0;
NS_IMETHOD SetArticleCount(int32_t aArticleCount) = 0;
/* attribute string serverKey; */
NS_IMETHOD GetServerKey(char * *aServerKey) = 0;
NS_IMETHOD SetServerKey(const char * aServerKey) = 0;
/* attribute boolean hitOK; */
NS_IMETHOD GetHitOK(bool *aHitOK) = 0;
NS_IMETHOD SetHitOK(bool aHitOK) = 0;
/* attribute boolean downloadAll; */
NS_IMETHOD GetDownloadAll(bool *aDownloadAll) = 0;
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_IMETHOD GetGroupName(nsAString & aGroupName) override; \
NS_IMETHOD SetGroupName(const nsAString & aGroupName) override; \
NS_IMETHOD GetArticleCount(int32_t *aArticleCount) override; \
NS_IMETHOD SetArticleCount(int32_t aArticleCount) override; \
NS_IMETHOD GetServerKey(char * *aServerKey) override; \
NS_IMETHOD SetServerKey(const char * aServerKey) override; \
NS_IMETHOD GetHitOK(bool *aHitOK) override; \
NS_IMETHOD SetHitOK(bool aHitOK) override; \
NS_IMETHOD GetDownloadAll(bool *aDownloadAll) override; \
NS_IMETHOD SetDownloadAll(bool aDownloadAll) 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_NSINEWSDOWNLOADDIALOGARGS \
NS_METHOD GetGroupName(nsAString & aGroupName); \
NS_METHOD SetGroupName(const nsAString & aGroupName); \
NS_METHOD GetArticleCount(int32_t *aArticleCount); \
NS_METHOD SetArticleCount(int32_t aArticleCount); \
NS_METHOD GetServerKey(char * *aServerKey); \
NS_METHOD SetServerKey(const char * aServerKey); \
NS_METHOD GetHitOK(bool *aHitOK); \
NS_METHOD SetHitOK(bool aHitOK); \
NS_METHOD GetDownloadAll(bool *aDownloadAll); \
NS_METHOD 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_IMETHOD GetGroupName(nsAString & aGroupName) override { return _to GetGroupName(aGroupName); } \
NS_IMETHOD SetGroupName(const nsAString & aGroupName) override { return _to SetGroupName(aGroupName); } \
NS_IMETHOD GetArticleCount(int32_t *aArticleCount) override { return _to GetArticleCount(aArticleCount); } \
NS_IMETHOD SetArticleCount(int32_t aArticleCount) override { return _to SetArticleCount(aArticleCount); } \
NS_IMETHOD GetServerKey(char * *aServerKey) override { return _to GetServerKey(aServerKey); } \
NS_IMETHOD SetServerKey(const char * aServerKey) override { return _to SetServerKey(aServerKey); } \
NS_IMETHOD GetHitOK(bool *aHitOK) override { return _to GetHitOK(aHitOK); } \
NS_IMETHOD SetHitOK(bool aHitOK) override { return _to SetHitOK(aHitOK); } \
NS_IMETHOD GetDownloadAll(bool *aDownloadAll) override { return _to GetDownloadAll(aDownloadAll); } \
NS_IMETHOD SetDownloadAll(bool aDownloadAll) override { 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_IMETHOD GetGroupName(nsAString & aGroupName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGroupName(aGroupName); } \
NS_IMETHOD SetGroupName(const nsAString & aGroupName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGroupName(aGroupName); } \
NS_IMETHOD GetArticleCount(int32_t *aArticleCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetArticleCount(aArticleCount); } \
NS_IMETHOD SetArticleCount(int32_t aArticleCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetArticleCount(aArticleCount); } \
NS_IMETHOD GetServerKey(char * *aServerKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerKey(aServerKey); } \
NS_IMETHOD SetServerKey(const char * aServerKey) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetServerKey(aServerKey); } \
NS_IMETHOD GetHitOK(bool *aHitOK) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHitOK(aHitOK); } \
NS_IMETHOD SetHitOK(bool aHitOK) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHitOK(aHitOK); } \
NS_IMETHOD GetDownloadAll(bool *aDownloadAll) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownloadAll(aDownloadAll); } \
NS_IMETHOD SetDownloadAll(bool aDownloadAll) override { 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_ISUPPORTS(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(int32_t *aArticleCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsNewsDownloadDialogArgs::SetArticleCount(int32_t 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__ */
|