/* * DO NOT EDIT. THIS FILE IS GENERATED FROM 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 "b5037f06-1dd1-11b2-bf61-fcab5b5837a7" #define NS_INEWSDOWNLOADDIALOGARGS_IID \ {0xb5037f06, 0x1dd1, 0x11b2, \ { 0xbf, 0x61, 0xfc, 0xab, 0x5b, 0x58, 0x37, 0xa7 }} class NS_NO_VTABLE nsINewsDownloadDialogArgs : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_INEWSDOWNLOADDIALOGARGS_IID) /* attribute string groupName; */ NS_IMETHOD GetGroupName(char * *aGroupName) = 0; NS_IMETHOD SetGroupName(const char * aGroupName) = 0; /* attribute long articleCount; */ NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) = 0; NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) = 0; /* attribute string serverKey; */ NS_IMETHOD GetServerKey(char * *aServerKey) = 0; NS_IMETHOD SetServerKey(const char * aServerKey) = 0; /* attribute boolean hitOK; */ NS_IMETHOD GetHitOK(PRBool *aHitOK) = 0; NS_IMETHOD SetHitOK(PRBool aHitOK) = 0; /* attribute boolean downloadAll; */ NS_IMETHOD GetDownloadAll(PRBool *aDownloadAll) = 0; NS_IMETHOD SetDownloadAll(PRBool aDownloadAll) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSINEWSDOWNLOADDIALOGARGS \ NS_IMETHOD GetGroupName(char * *aGroupName); \ NS_IMETHOD SetGroupName(const char * aGroupName); \ NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount); \ NS_IMETHOD SetArticleCount(PRInt32 aArticleCount); \ NS_IMETHOD GetServerKey(char * *aServerKey); \ NS_IMETHOD SetServerKey(const char * aServerKey); \ NS_IMETHOD GetHitOK(PRBool *aHitOK); \ NS_IMETHOD SetHitOK(PRBool aHitOK); \ NS_IMETHOD GetDownloadAll(PRBool *aDownloadAll); \ NS_IMETHOD SetDownloadAll(PRBool 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(char * *aGroupName) { return _to GetGroupName(aGroupName); } \ NS_IMETHOD SetGroupName(const char * aGroupName) { return _to SetGroupName(aGroupName); } \ NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) { return _to GetArticleCount(aArticleCount); } \ NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) { return _to SetArticleCount(aArticleCount); } \ NS_IMETHOD GetServerKey(char * *aServerKey) { return _to GetServerKey(aServerKey); } \ NS_IMETHOD SetServerKey(const char * aServerKey) { return _to SetServerKey(aServerKey); } \ NS_IMETHOD GetHitOK(PRBool *aHitOK) { return _to GetHitOK(aHitOK); } \ NS_IMETHOD SetHitOK(PRBool aHitOK) { return _to SetHitOK(aHitOK); } \ NS_IMETHOD GetDownloadAll(PRBool *aDownloadAll) { return _to GetDownloadAll(aDownloadAll); } \ NS_IMETHOD SetDownloadAll(PRBool 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_IMETHOD GetGroupName(char * *aGroupName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGroupName(aGroupName); } \ NS_IMETHOD SetGroupName(const char * aGroupName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGroupName(aGroupName); } \ NS_IMETHOD GetArticleCount(PRInt32 *aArticleCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetArticleCount(aArticleCount); } \ NS_IMETHOD SetArticleCount(PRInt32 aArticleCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetArticleCount(aArticleCount); } \ NS_IMETHOD GetServerKey(char * *aServerKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerKey(aServerKey); } \ NS_IMETHOD SetServerKey(const char * aServerKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetServerKey(aServerKey); } \ NS_IMETHOD GetHitOK(PRBool *aHitOK) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHitOK(aHitOK); } \ NS_IMETHOD SetHitOK(PRBool aHitOK) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHitOK(aHitOK); } \ NS_IMETHOD GetDownloadAll(PRBool *aDownloadAll) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownloadAll(aDownloadAll); } \ NS_IMETHOD SetDownloadAll(PRBool 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(); virtual ~nsNewsDownloadDialogArgs(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsNewsDownloadDialogArgs, nsINewsDownloadDialogArgs) nsNewsDownloadDialogArgs::nsNewsDownloadDialogArgs() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsNewsDownloadDialogArgs::~nsNewsDownloadDialogArgs() { /* destructor code */ } /* attribute string groupName; */ NS_IMETHODIMP nsNewsDownloadDialogArgs::GetGroupName(char * *aGroupName) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsNewsDownloadDialogArgs::SetGroupName(const char * 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(PRBool *aHitOK) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsNewsDownloadDialogArgs::SetHitOK(PRBool aHitOK) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean downloadAll; */ NS_IMETHODIMP nsNewsDownloadDialogArgs::GetDownloadAll(PRBool *aDownloadAll) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsNewsDownloadDialogArgs::SetDownloadAll(PRBool 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__ */ .