/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIMsgSend.idl */ #ifndef __gen_nsIMsgSend_h__ #define __gen_nsIMsgSend_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif #ifndef __gen_nsISupportsArray_h__ #include "nsISupportsArray.h" #endif #ifndef __gen_nsrootidl_h__ #include "nsrootidl.h" #endif #ifndef __gen_nsIMsgIdentity_h__ #include "nsIMsgIdentity.h" #endif #ifndef __gen_nsIMsgCompFields_h__ #include "nsIMsgCompFields.h" #endif #ifndef __gen_nsIMsgSendListener_h__ #include "nsIMsgSendListener.h" #endif #ifndef __gen_nsIEditorShell_h__ #include "nsIEditorShell.h" #endif #ifndef __gen_nsIMsgProgress_h__ #include "nsIMsgProgress.h" #endif #ifndef __gen_nsIMsgSendReport_h__ #include "nsIMsgSendReport.h" #endif #ifndef __gen_domstubs_h__ #include "domstubs.h" #endif #ifndef __gen_nsIPrompt_h__ #include "nsIPrompt.h" #endif #ifndef __gen_MailNewsTypes2_h__ #include "MailNewsTypes2.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif #include "nsIURL.h" #include "nsString.h" class nsFileSpec; class nsOutputFileStream; class nsIURI; /* forward declaration */ class nsIRequest; /* forward declaration */ class nsIMsgDBHdr; /* forward declaration */ class nsIMsgHdr; /* forward declaration */ class nsIDocShell; /* forward declaration */ class nsIFileSpec; /* forward declaration */ class nsIMsgComposeSecure; /* forward declaration */ class nsIMsgStatusFeedback; /* forward declaration */ typedef PRInt32 nsMsgDeliverMode; // // Callback declarations for message delivery // // For completion of send/message creation operations... typedef nsresult (*nsMsgSendCompletionCallback) (nsresult aExitCode, void *tagData, nsFileSpec *returnFileSpec); // For completion of sending unsent messages operations... typedef nsresult (*nsMsgSendUnsentMessagesCallback) (nsresult aExitCode, PRUint32 totalSentCount, PRUint32 totalSentSuccessfully, void *tagData); // Forward declaration class nsMsgAttachmentHandler; // Attachment file/URL structures struct nsMsgAttachmentData { nsIURI* url; // The URL to attach. This should be 0 to signify "end of list". char *desired_type; // The type to which this document should be // converted. Legal values are NULL, TEXT_PLAIN // and APPLICATION_POSTSCRIPT (which are macros // defined in net.h); other values are ignored. char *real_type; // The type of the URL if known, otherwise NULL. For example, if // you were attaching a temp file which was known to contain HTML data, // you would pass in TEXT_HTML as the real_type, to override whatever type // the name of the tmp file might otherwise indicate. char *real_encoding; // Goes along with real_type char *real_name; // The original name of this document, which will eventually show up in the // Content-Disposition header. For example, if you had copied a document to a // tmp file, this would be the original, human-readable name of the document. char *description; // If you put a string here, it will show up as the Content-Description header. // This can be any explanatory text; it's not a file name. char *x_mac_type, *x_mac_creator; // Mac-specific data that should show up as optional parameters // to the content-type header. PRBool notDownloaded; // Flag for IMAP parts on demand status }; // // When we have downloaded a URL to a tmp file for attaching, this // represents everything we learned about it (and did to it) in the // process. // typedef struct nsMsgAttachedFile { nsCOMPtr orig_url; // Where it came from on the network (or even elsewhere on the local disk.) nsFileSpec *file_spec; // The tmp file in which the (possibly converted) data now resides. char *type; // The type of the data in file_name (not necessarily the same as the type of orig_url.) char *encoding; // Likewise, the encoding of the tmp file. This will be set only if the original // document had an encoding already; we don't do base64 encoding and so forth until // it's time to assemble a full MIME message of all parts. char *description; // For Content-Description header char *x_mac_type; // mac-specific info char *x_mac_creator; // mac-specific info char *real_name; // The real name of the file. // Some statistics about the data that was written to the file, so that when // it comes time to compose a MIME message, we can make an informed decision // about what Content-Transfer-Encoding would be best for this attachment. // (If it's encoded already, we ignore this information and ship it as-is.) PRUint32 size; PRUint32 unprintable_count; PRUint32 highbit_count; PRUint32 ctl_count; PRUint32 null_count; PRUint32 max_line_length; } nsMsgAttachedFile; /* starting interface: nsIMsgSend */ #define NS_IMSGSEND_IID_STR "9e9bd970-c5d6-11d2-8297-000000000000" #define NS_IMSGSEND_IID \ {0x9e9bd970, 0xc5d6, 0x11d2, \ { 0x82, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }} class NS_NO_VTABLE nsIMsgSend : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IMSGSEND_IID) enum { nsMsgDeliverNow = 0 }; enum { nsMsgQueueForLater = 1 }; enum { nsMsgSave = 2 }; enum { nsMsgSaveAs = 3 }; enum { nsMsgSaveAsDraft = 4 }; enum { nsMsgSaveAsTemplate = 5 }; enum { nsMsgSendUnsent = 6 }; /* [noscript] void createAndSendMessage (in nsIEditorShell aEditor, in nsIMsgIdentity aUserIdentity, in nsIMsgCompFields fields, in PRBool digest_p, in PRBool dont_deliver_p, in nsMsgDeliverMode mode, in nsIMsgDBHdr msgToReplace, in string attachment1_type, in string attachment1_body, in PRUint32 attachment1_body_length, [const] in nsMsgAttachmentData attachments, [const] in nsMsgAttachedFile preloaded_attachments, in voidPtr relatedPart, in nsIDOMWindowInternal parentWindow, in nsIMsgProgress progress, in nsIMsgSendListener aListener, in string password); */ NS_IMETHOD CreateAndSendMessage(nsIEditorShell *aEditor, nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, PRBool digest_p, PRBool dont_deliver_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, const char *attachment1_type, const char *attachment1_body, PRUint32 attachment1_body_length, const nsMsgAttachmentData * attachments, const nsMsgAttachedFile * preloaded_attachments, void * relatedPart, nsIDOMWindowInternal *parentWindow, nsIMsgProgress *progress, nsIMsgSendListener *aListener, const char *password) = 0; /* void sendMessageFile (in nsIMsgIdentity aUserIdentity, in nsIMsgCompFields fields, in nsIFileSpec sendIFileSpec, in PRBool deleteSendFileOnCompletion, in PRBool digest_p, in nsMsgDeliverMode mode, in nsIMsgDBHdr msgToReplace, in nsIMsgSendListener aListener, in nsIMsgStatusFeedback aStatusFeedback, in string password); */ NS_IMETHOD SendMessageFile(nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, nsIFileSpec *sendIFileSpec, PRBool deleteSendFileOnCompletion, PRBool digest_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, nsIMsgSendListener *aListener, nsIMsgStatusFeedback *aStatusFeedback, const char *password) = 0; /* void abort (); */ NS_IMETHOD Abort(void) = 0; /* nsresult fail (in nsresult failure_code, in wstring error_msg); */ NS_IMETHOD Fail(nsresult failure_code, const PRUnichar *error_msg, nsresult *_retval) = 0; /* void setGUINotificationState (in PRBool aEnableFlag); */ NS_IMETHOD SetGUINotificationState(PRBool aEnableFlag) = 0; /* void BeginCryptoEncapsulation (); */ NS_IMETHOD BeginCryptoEncapsulation(void) = 0; /* readonly attribute nsIMsgSendReport sendReport; */ NS_IMETHOD GetSendReport(nsIMsgSendReport * *aSendReport) = 0; /* [noscript] void notifyListenerOnStartSending (in string aMsgID, in unsigned long aMsgSize); */ NS_IMETHOD NotifyListenerOnStartSending(const char *aMsgID, PRUint32 aMsgSize) = 0; /* [noscript] void notifyListenerOnProgress (in string aMsgID, in unsigned long aProgress, in unsigned long aProgressMax); */ NS_IMETHOD NotifyListenerOnProgress(const char *aMsgID, PRUint32 aProgress, PRUint32 aProgressMax) = 0; /* [noscript] void notifyListenerOnStatus (in string aMsgID, in wstring aMsg); */ NS_IMETHOD NotifyListenerOnStatus(const char *aMsgID, const PRUnichar *aMsg) = 0; /* [noscript] void notifyListenerOnStopSending (in string aMsgID, in nsresult aStatus, in wstring aMsg, in nsIFileSpec returnFileSpec); */ NS_IMETHOD NotifyListenerOnStopSending(const char *aMsgID, nsresult aStatus, const PRUnichar *aMsg, nsIFileSpec *returnFileSpec) = 0; /* [noscript] void deliverAsMailExit (in nsIURI aUrl, in nsresult aExitCode); */ NS_IMETHOD DeliverAsMailExit(nsIURI *aUrl, nsresult aExitCode) = 0; /* [noscript] void deliverAsNewsExit (in nsIURI aUrl, in nsresult aExitCode); */ NS_IMETHOD DeliverAsNewsExit(nsIURI *aUrl, nsresult aExitCode) = 0; /* [noscript] void notifyListenerOnStartCopy (); */ NS_IMETHOD NotifyListenerOnStartCopy(void) = 0; /* [noscript] void notifyListenerOnProgressCopy (in unsigned long aProgress, in unsigned long aProgressMax); */ NS_IMETHOD NotifyListenerOnProgressCopy(PRUint32 aProgress, PRUint32 aProgressMax) = 0; /* [noscript] void notifyListenerOnStopCopy (in nsresult aStatus); */ NS_IMETHOD NotifyListenerOnStopCopy(nsresult aStatus) = 0; /* [noscript] void getMessageId (in nsCString messageID); */ NS_IMETHOD GetMessageId(nsCString * messageID) = 0; /* [noscript] attribute nsMsgKey messageKey; */ NS_IMETHOD GetMessageKey(nsMsgKey *aMessageKey) = 0; NS_IMETHOD SetMessageKey(nsMsgKey aMessageKey) = 0; /* [noscript] nsIPrompt getDefaultPrompt (); */ NS_IMETHOD GetDefaultPrompt(nsIPrompt **_retval) = 0; /* [noscript] void gatherMimeAttachments (); */ NS_IMETHOD GatherMimeAttachments(void) = 0; /* [noscript] boolean getProcessAttachmentsSynchronously (); */ NS_IMETHOD GetProcessAttachmentsSynchronously(PRBool *_retval) = 0; /* [noscript] nsMsgAttachmentHandler getAttachmentHandlers (); */ NS_IMETHOD GetAttachmentHandlers(nsMsgAttachmentHandler * *_retval) = 0; /* [noscript] readonly attribute unsigned long attachmentCount; */ NS_IMETHOD GetAttachmentCount(PRUint32 *aAttachmentCount) = 0; /* [noscript] attribute unsigned long pendingAttachmentCount; */ NS_IMETHOD GetPendingAttachmentCount(PRUint32 *aPendingAttachmentCount) = 0; NS_IMETHOD SetPendingAttachmentCount(PRUint32 aPendingAttachmentCount) = 0; /* [noscript] readonly attribute nsMsgDeliverMode deliveryMode; */ NS_IMETHOD GetDeliveryMode(nsMsgDeliverMode *aDeliveryMode) = 0; /* [noscript] nsIMsgProgress getProgress (); */ NS_IMETHOD GetProgress(nsIMsgProgress **_retval) = 0; /* [noscript] nsOutputFileStream getOutputStream (); */ NS_IMETHOD GetOutputStream(nsOutputFileStream * *_retval) = 0; /* [noscript] attribute nsIRequest runningRequest; */ NS_IMETHOD GetRunningRequest(nsIRequest * *aRunningRequest) = 0; NS_IMETHOD SetRunningRequest(nsIRequest * aRunningRequest) = 0; /* [noscript] attribute nsresult status; */ NS_IMETHOD GetStatus(nsresult *aStatus) = 0; NS_IMETHOD SetStatus(nsresult aStatus) = 0; /* [noscript] attribute nsIMsgComposeSecure cryptoclosure; */ NS_IMETHOD GetCryptoclosure(nsIMsgComposeSecure * *aCryptoclosure) = 0; NS_IMETHOD SetCryptoclosure(nsIMsgComposeSecure * aCryptoclosure) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIMSGSEND \ NS_IMETHOD CreateAndSendMessage(nsIEditorShell *aEditor, nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, PRBool digest_p, PRBool dont_deliver_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, const char *attachment1_type, const char *attachment1_body, PRUint32 attachment1_body_length, const nsMsgAttachmentData * attachments, const nsMsgAttachedFile * preloaded_attachments, void * relatedPart, nsIDOMWindowInternal *parentWindow, nsIMsgProgress *progress, nsIMsgSendListener *aListener, const char *password); \ NS_IMETHOD SendMessageFile(nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, nsIFileSpec *sendIFileSpec, PRBool deleteSendFileOnCompletion, PRBool digest_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, nsIMsgSendListener *aListener, nsIMsgStatusFeedback *aStatusFeedback, const char *password); \ NS_IMETHOD Abort(void); \ NS_IMETHOD Fail(nsresult failure_code, const PRUnichar *error_msg, nsresult *_retval); \ NS_IMETHOD SetGUINotificationState(PRBool aEnableFlag); \ NS_IMETHOD BeginCryptoEncapsulation(void); \ NS_IMETHOD GetSendReport(nsIMsgSendReport * *aSendReport); \ NS_IMETHOD NotifyListenerOnStartSending(const char *aMsgID, PRUint32 aMsgSize); \ NS_IMETHOD NotifyListenerOnProgress(const char *aMsgID, PRUint32 aProgress, PRUint32 aProgressMax); \ NS_IMETHOD NotifyListenerOnStatus(const char *aMsgID, const PRUnichar *aMsg); \ NS_IMETHOD NotifyListenerOnStopSending(const char *aMsgID, nsresult aStatus, const PRUnichar *aMsg, nsIFileSpec *returnFileSpec); \ NS_IMETHOD DeliverAsMailExit(nsIURI *aUrl, nsresult aExitCode); \ NS_IMETHOD DeliverAsNewsExit(nsIURI *aUrl, nsresult aExitCode); \ NS_IMETHOD NotifyListenerOnStartCopy(void); \ NS_IMETHOD NotifyListenerOnProgressCopy(PRUint32 aProgress, PRUint32 aProgressMax); \ NS_IMETHOD NotifyListenerOnStopCopy(nsresult aStatus); \ NS_IMETHOD GetMessageId(nsCString * messageID); \ NS_IMETHOD GetMessageKey(nsMsgKey *aMessageKey); \ NS_IMETHOD SetMessageKey(nsMsgKey aMessageKey); \ NS_IMETHOD GetDefaultPrompt(nsIPrompt **_retval); \ NS_IMETHOD GatherMimeAttachments(void); \ NS_IMETHOD GetProcessAttachmentsSynchronously(PRBool *_retval); \ NS_IMETHOD GetAttachmentHandlers(nsMsgAttachmentHandler * *_retval); \ NS_IMETHOD GetAttachmentCount(PRUint32 *aAttachmentCount); \ NS_IMETHOD GetPendingAttachmentCount(PRUint32 *aPendingAttachmentCount); \ NS_IMETHOD SetPendingAttachmentCount(PRUint32 aPendingAttachmentCount); \ NS_IMETHOD GetDeliveryMode(nsMsgDeliverMode *aDeliveryMode); \ NS_IMETHOD GetProgress(nsIMsgProgress **_retval); \ NS_IMETHOD GetOutputStream(nsOutputFileStream * *_retval); \ NS_IMETHOD GetRunningRequest(nsIRequest * *aRunningRequest); \ NS_IMETHOD SetRunningRequest(nsIRequest * aRunningRequest); \ NS_IMETHOD GetStatus(nsresult *aStatus); \ NS_IMETHOD SetStatus(nsresult aStatus); \ NS_IMETHOD GetCryptoclosure(nsIMsgComposeSecure * *aCryptoclosure); \ NS_IMETHOD SetCryptoclosure(nsIMsgComposeSecure * aCryptoclosure); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIMSGSEND(_to) \ NS_IMETHOD CreateAndSendMessage(nsIEditorShell *aEditor, nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, PRBool digest_p, PRBool dont_deliver_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, const char *attachment1_type, const char *attachment1_body, PRUint32 attachment1_body_length, const nsMsgAttachmentData * attachments, const nsMsgAttachedFile * preloaded_attachments, void * relatedPart, nsIDOMWindowInternal *parentWindow, nsIMsgProgress *progress, nsIMsgSendListener *aListener, const char *password) { return _to CreateAndSendMessage(aEditor, aUserIdentity, fields, digest_p, dont_deliver_p, mode, msgToReplace, attachment1_type, attachment1_body, attachment1_body_length, attachments, preloaded_attachments, relatedPart, parentWindow, progress, aListener, password); } \ NS_IMETHOD SendMessageFile(nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, nsIFileSpec *sendIFileSpec, PRBool deleteSendFileOnCompletion, PRBool digest_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, nsIMsgSendListener *aListener, nsIMsgStatusFeedback *aStatusFeedback, const char *password) { return _to SendMessageFile(aUserIdentity, fields, sendIFileSpec, deleteSendFileOnCompletion, digest_p, mode, msgToReplace, aListener, aStatusFeedback, password); } \ NS_IMETHOD Abort(void) { return _to Abort(); } \ NS_IMETHOD Fail(nsresult failure_code, const PRUnichar *error_msg, nsresult *_retval) { return _to Fail(failure_code, error_msg, _retval); } \ NS_IMETHOD SetGUINotificationState(PRBool aEnableFlag) { return _to SetGUINotificationState(aEnableFlag); } \ NS_IMETHOD BeginCryptoEncapsulation(void) { return _to BeginCryptoEncapsulation(); } \ NS_IMETHOD GetSendReport(nsIMsgSendReport * *aSendReport) { return _to GetSendReport(aSendReport); } \ NS_IMETHOD NotifyListenerOnStartSending(const char *aMsgID, PRUint32 aMsgSize) { return _to NotifyListenerOnStartSending(aMsgID, aMsgSize); } \ NS_IMETHOD NotifyListenerOnProgress(const char *aMsgID, PRUint32 aProgress, PRUint32 aProgressMax) { return _to NotifyListenerOnProgress(aMsgID, aProgress, aProgressMax); } \ NS_IMETHOD NotifyListenerOnStatus(const char *aMsgID, const PRUnichar *aMsg) { return _to NotifyListenerOnStatus(aMsgID, aMsg); } \ NS_IMETHOD NotifyListenerOnStopSending(const char *aMsgID, nsresult aStatus, const PRUnichar *aMsg, nsIFileSpec *returnFileSpec) { return _to NotifyListenerOnStopSending(aMsgID, aStatus, aMsg, returnFileSpec); } \ NS_IMETHOD DeliverAsMailExit(nsIURI *aUrl, nsresult aExitCode) { return _to DeliverAsMailExit(aUrl, aExitCode); } \ NS_IMETHOD DeliverAsNewsExit(nsIURI *aUrl, nsresult aExitCode) { return _to DeliverAsNewsExit(aUrl, aExitCode); } \ NS_IMETHOD NotifyListenerOnStartCopy(void) { return _to NotifyListenerOnStartCopy(); } \ NS_IMETHOD NotifyListenerOnProgressCopy(PRUint32 aProgress, PRUint32 aProgressMax) { return _to NotifyListenerOnProgressCopy(aProgress, aProgressMax); } \ NS_IMETHOD NotifyListenerOnStopCopy(nsresult aStatus) { return _to NotifyListenerOnStopCopy(aStatus); } \ NS_IMETHOD GetMessageId(nsCString * messageID) { return _to GetMessageId(messageID); } \ NS_IMETHOD GetMessageKey(nsMsgKey *aMessageKey) { return _to GetMessageKey(aMessageKey); } \ NS_IMETHOD SetMessageKey(nsMsgKey aMessageKey) { return _to SetMessageKey(aMessageKey); } \ NS_IMETHOD GetDefaultPrompt(nsIPrompt **_retval) { return _to GetDefaultPrompt(_retval); } \ NS_IMETHOD GatherMimeAttachments(void) { return _to GatherMimeAttachments(); } \ NS_IMETHOD GetProcessAttachmentsSynchronously(PRBool *_retval) { return _to GetProcessAttachmentsSynchronously(_retval); } \ NS_IMETHOD GetAttachmentHandlers(nsMsgAttachmentHandler * *_retval) { return _to GetAttachmentHandlers(_retval); } \ NS_IMETHOD GetAttachmentCount(PRUint32 *aAttachmentCount) { return _to GetAttachmentCount(aAttachmentCount); } \ NS_IMETHOD GetPendingAttachmentCount(PRUint32 *aPendingAttachmentCount) { return _to GetPendingAttachmentCount(aPendingAttachmentCount); } \ NS_IMETHOD SetPendingAttachmentCount(PRUint32 aPendingAttachmentCount) { return _to SetPendingAttachmentCount(aPendingAttachmentCount); } \ NS_IMETHOD GetDeliveryMode(nsMsgDeliverMode *aDeliveryMode) { return _to GetDeliveryMode(aDeliveryMode); } \ NS_IMETHOD GetProgress(nsIMsgProgress **_retval) { return _to GetProgress(_retval); } \ NS_IMETHOD GetOutputStream(nsOutputFileStream * *_retval) { return _to GetOutputStream(_retval); } \ NS_IMETHOD GetRunningRequest(nsIRequest * *aRunningRequest) { return _to GetRunningRequest(aRunningRequest); } \ NS_IMETHOD SetRunningRequest(nsIRequest * aRunningRequest) { return _to SetRunningRequest(aRunningRequest); } \ NS_IMETHOD GetStatus(nsresult *aStatus) { return _to GetStatus(aStatus); } \ NS_IMETHOD SetStatus(nsresult aStatus) { return _to SetStatus(aStatus); } \ NS_IMETHOD GetCryptoclosure(nsIMsgComposeSecure * *aCryptoclosure) { return _to GetCryptoclosure(aCryptoclosure); } \ NS_IMETHOD SetCryptoclosure(nsIMsgComposeSecure * aCryptoclosure) { return _to SetCryptoclosure(aCryptoclosure); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIMSGSEND(_to) \ NS_IMETHOD CreateAndSendMessage(nsIEditorShell *aEditor, nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, PRBool digest_p, PRBool dont_deliver_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, const char *attachment1_type, const char *attachment1_body, PRUint32 attachment1_body_length, const nsMsgAttachmentData * attachments, const nsMsgAttachedFile * preloaded_attachments, void * relatedPart, nsIDOMWindowInternal *parentWindow, nsIMsgProgress *progress, nsIMsgSendListener *aListener, const char *password) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateAndSendMessage(aEditor, aUserIdentity, fields, digest_p, dont_deliver_p, mode, msgToReplace, attachment1_type, attachment1_body, attachment1_body_length, attachments, preloaded_attachments, relatedPart, parentWindow, progress, aListener, password); } \ NS_IMETHOD SendMessageFile(nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, nsIFileSpec *sendIFileSpec, PRBool deleteSendFileOnCompletion, PRBool digest_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, nsIMsgSendListener *aListener, nsIMsgStatusFeedback *aStatusFeedback, const char *password) { return !_to ? NS_ERROR_NULL_POINTER : _to->SendMessageFile(aUserIdentity, fields, sendIFileSpec, deleteSendFileOnCompletion, digest_p, mode, msgToReplace, aListener, aStatusFeedback, password); } \ NS_IMETHOD Abort(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Abort(); } \ NS_IMETHOD Fail(nsresult failure_code, const PRUnichar *error_msg, nsresult *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Fail(failure_code, error_msg, _retval); } \ NS_IMETHOD SetGUINotificationState(PRBool aEnableFlag) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGUINotificationState(aEnableFlag); } \ NS_IMETHOD BeginCryptoEncapsulation(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->BeginCryptoEncapsulation(); } \ NS_IMETHOD GetSendReport(nsIMsgSendReport * *aSendReport) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSendReport(aSendReport); } \ NS_IMETHOD NotifyListenerOnStartSending(const char *aMsgID, PRUint32 aMsgSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnStartSending(aMsgID, aMsgSize); } \ NS_IMETHOD NotifyListenerOnProgress(const char *aMsgID, PRUint32 aProgress, PRUint32 aProgressMax) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnProgress(aMsgID, aProgress, aProgressMax); } \ NS_IMETHOD NotifyListenerOnStatus(const char *aMsgID, const PRUnichar *aMsg) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnStatus(aMsgID, aMsg); } \ NS_IMETHOD NotifyListenerOnStopSending(const char *aMsgID, nsresult aStatus, const PRUnichar *aMsg, nsIFileSpec *returnFileSpec) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnStopSending(aMsgID, aStatus, aMsg, returnFileSpec); } \ NS_IMETHOD DeliverAsMailExit(nsIURI *aUrl, nsresult aExitCode) { return !_to ? NS_ERROR_NULL_POINTER : _to->DeliverAsMailExit(aUrl, aExitCode); } \ NS_IMETHOD DeliverAsNewsExit(nsIURI *aUrl, nsresult aExitCode) { return !_to ? NS_ERROR_NULL_POINTER : _to->DeliverAsNewsExit(aUrl, aExitCode); } \ NS_IMETHOD NotifyListenerOnStartCopy(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnStartCopy(); } \ NS_IMETHOD NotifyListenerOnProgressCopy(PRUint32 aProgress, PRUint32 aProgressMax) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnProgressCopy(aProgress, aProgressMax); } \ NS_IMETHOD NotifyListenerOnStopCopy(nsresult aStatus) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyListenerOnStopCopy(aStatus); } \ NS_IMETHOD GetMessageId(nsCString * messageID) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMessageId(messageID); } \ NS_IMETHOD GetMessageKey(nsMsgKey *aMessageKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMessageKey(aMessageKey); } \ NS_IMETHOD SetMessageKey(nsMsgKey aMessageKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMessageKey(aMessageKey); } \ NS_IMETHOD GetDefaultPrompt(nsIPrompt **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultPrompt(_retval); } \ NS_IMETHOD GatherMimeAttachments(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->GatherMimeAttachments(); } \ NS_IMETHOD GetProcessAttachmentsSynchronously(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProcessAttachmentsSynchronously(_retval); } \ NS_IMETHOD GetAttachmentHandlers(nsMsgAttachmentHandler * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAttachmentHandlers(_retval); } \ NS_IMETHOD GetAttachmentCount(PRUint32 *aAttachmentCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAttachmentCount(aAttachmentCount); } \ NS_IMETHOD GetPendingAttachmentCount(PRUint32 *aPendingAttachmentCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPendingAttachmentCount(aPendingAttachmentCount); } \ NS_IMETHOD SetPendingAttachmentCount(PRUint32 aPendingAttachmentCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPendingAttachmentCount(aPendingAttachmentCount); } \ NS_IMETHOD GetDeliveryMode(nsMsgDeliverMode *aDeliveryMode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDeliveryMode(aDeliveryMode); } \ NS_IMETHOD GetProgress(nsIMsgProgress **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProgress(_retval); } \ NS_IMETHOD GetOutputStream(nsOutputFileStream * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOutputStream(_retval); } \ NS_IMETHOD GetRunningRequest(nsIRequest * *aRunningRequest) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRunningRequest(aRunningRequest); } \ NS_IMETHOD SetRunningRequest(nsIRequest * aRunningRequest) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRunningRequest(aRunningRequest); } \ NS_IMETHOD GetStatus(nsresult *aStatus) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStatus(aStatus); } \ NS_IMETHOD SetStatus(nsresult aStatus) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStatus(aStatus); } \ NS_IMETHOD GetCryptoclosure(nsIMsgComposeSecure * *aCryptoclosure) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCryptoclosure(aCryptoclosure); } \ NS_IMETHOD SetCryptoclosure(nsIMsgComposeSecure * aCryptoclosure) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCryptoclosure(aCryptoclosure); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsMsgSend : public nsIMsgSend { public: NS_DECL_ISUPPORTS NS_DECL_NSIMSGSEND nsMsgSend(); virtual ~nsMsgSend(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsMsgSend, nsIMsgSend) nsMsgSend::nsMsgSend() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsMsgSend::~nsMsgSend() { /* destructor code */ } /* [noscript] void createAndSendMessage (in nsIEditorShell aEditor, in nsIMsgIdentity aUserIdentity, in nsIMsgCompFields fields, in PRBool digest_p, in PRBool dont_deliver_p, in nsMsgDeliverMode mode, in nsIMsgDBHdr msgToReplace, in string attachment1_type, in string attachment1_body, in PRUint32 attachment1_body_length, [const] in nsMsgAttachmentData attachments, [const] in nsMsgAttachedFile preloaded_attachments, in voidPtr relatedPart, in nsIDOMWindowInternal parentWindow, in nsIMsgProgress progress, in nsIMsgSendListener aListener, in string password); */ NS_IMETHODIMP nsMsgSend::CreateAndSendMessage(nsIEditorShell *aEditor, nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, PRBool digest_p, PRBool dont_deliver_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, const char *attachment1_type, const char *attachment1_body, PRUint32 attachment1_body_length, const nsMsgAttachmentData * attachments, const nsMsgAttachedFile * preloaded_attachments, void * relatedPart, nsIDOMWindowInternal *parentWindow, nsIMsgProgress *progress, nsIMsgSendListener *aListener, const char *password) { return NS_ERROR_NOT_IMPLEMENTED; } /* void sendMessageFile (in nsIMsgIdentity aUserIdentity, in nsIMsgCompFields fields, in nsIFileSpec sendIFileSpec, in PRBool deleteSendFileOnCompletion, in PRBool digest_p, in nsMsgDeliverMode mode, in nsIMsgDBHdr msgToReplace, in nsIMsgSendListener aListener, in nsIMsgStatusFeedback aStatusFeedback, in string password); */ NS_IMETHODIMP nsMsgSend::SendMessageFile(nsIMsgIdentity *aUserIdentity, nsIMsgCompFields *fields, nsIFileSpec *sendIFileSpec, PRBool deleteSendFileOnCompletion, PRBool digest_p, nsMsgDeliverMode mode, nsIMsgDBHdr *msgToReplace, nsIMsgSendListener *aListener, nsIMsgStatusFeedback *aStatusFeedback, const char *password) { return NS_ERROR_NOT_IMPLEMENTED; } /* void abort (); */ NS_IMETHODIMP nsMsgSend::Abort() { return NS_ERROR_NOT_IMPLEMENTED; } /* nsresult fail (in nsresult failure_code, in wstring error_msg); */ NS_IMETHODIMP nsMsgSend::Fail(nsresult failure_code, const PRUnichar *error_msg, nsresult *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* void setGUINotificationState (in PRBool aEnableFlag); */ NS_IMETHODIMP nsMsgSend::SetGUINotificationState(PRBool aEnableFlag) { return NS_ERROR_NOT_IMPLEMENTED; } /* void BeginCryptoEncapsulation (); */ NS_IMETHODIMP nsMsgSend::BeginCryptoEncapsulation() { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIMsgSendReport sendReport; */ NS_IMETHODIMP nsMsgSend::GetSendReport(nsIMsgSendReport * *aSendReport) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnStartSending (in string aMsgID, in unsigned long aMsgSize); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnStartSending(const char *aMsgID, PRUint32 aMsgSize) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnProgress (in string aMsgID, in unsigned long aProgress, in unsigned long aProgressMax); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnProgress(const char *aMsgID, PRUint32 aProgress, PRUint32 aProgressMax) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnStatus (in string aMsgID, in wstring aMsg); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnStatus(const char *aMsgID, const PRUnichar *aMsg) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnStopSending (in string aMsgID, in nsresult aStatus, in wstring aMsg, in nsIFileSpec returnFileSpec); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnStopSending(const char *aMsgID, nsresult aStatus, const PRUnichar *aMsg, nsIFileSpec *returnFileSpec) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void deliverAsMailExit (in nsIURI aUrl, in nsresult aExitCode); */ NS_IMETHODIMP nsMsgSend::DeliverAsMailExit(nsIURI *aUrl, nsresult aExitCode) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void deliverAsNewsExit (in nsIURI aUrl, in nsresult aExitCode); */ NS_IMETHODIMP nsMsgSend::DeliverAsNewsExit(nsIURI *aUrl, nsresult aExitCode) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnStartCopy (); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnStartCopy() { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnProgressCopy (in unsigned long aProgress, in unsigned long aProgressMax); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnProgressCopy(PRUint32 aProgress, PRUint32 aProgressMax) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void notifyListenerOnStopCopy (in nsresult aStatus); */ NS_IMETHODIMP nsMsgSend::NotifyListenerOnStopCopy(nsresult aStatus) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void getMessageId (in nsCString messageID); */ NS_IMETHODIMP nsMsgSend::GetMessageId(nsCString * messageID) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] attribute nsMsgKey messageKey; */ NS_IMETHODIMP nsMsgSend::GetMessageKey(nsMsgKey *aMessageKey) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsMsgSend::SetMessageKey(nsMsgKey aMessageKey) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] nsIPrompt getDefaultPrompt (); */ NS_IMETHODIMP nsMsgSend::GetDefaultPrompt(nsIPrompt **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void gatherMimeAttachments (); */ NS_IMETHODIMP nsMsgSend::GatherMimeAttachments() { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] boolean getProcessAttachmentsSynchronously (); */ NS_IMETHODIMP nsMsgSend::GetProcessAttachmentsSynchronously(PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] nsMsgAttachmentHandler getAttachmentHandlers (); */ NS_IMETHODIMP nsMsgSend::GetAttachmentHandlers(nsMsgAttachmentHandler * *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] readonly attribute unsigned long attachmentCount; */ NS_IMETHODIMP nsMsgSend::GetAttachmentCount(PRUint32 *aAttachmentCount) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] attribute unsigned long pendingAttachmentCount; */ NS_IMETHODIMP nsMsgSend::GetPendingAttachmentCount(PRUint32 *aPendingAttachmentCount) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsMsgSend::SetPendingAttachmentCount(PRUint32 aPendingAttachmentCount) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] readonly attribute nsMsgDeliverMode deliveryMode; */ NS_IMETHODIMP nsMsgSend::GetDeliveryMode(nsMsgDeliverMode *aDeliveryMode) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] nsIMsgProgress getProgress (); */ NS_IMETHODIMP nsMsgSend::GetProgress(nsIMsgProgress **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] nsOutputFileStream getOutputStream (); */ NS_IMETHODIMP nsMsgSend::GetOutputStream(nsOutputFileStream * *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] attribute nsIRequest runningRequest; */ NS_IMETHODIMP nsMsgSend::GetRunningRequest(nsIRequest * *aRunningRequest) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsMsgSend::SetRunningRequest(nsIRequest * aRunningRequest) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] attribute nsresult status; */ NS_IMETHODIMP nsMsgSend::GetStatus(nsresult *aStatus) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsMsgSend::SetStatus(nsresult aStatus) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] attribute nsIMsgComposeSecure cryptoclosure; */ NS_IMETHODIMP nsMsgSend::GetCryptoclosure(nsIMsgComposeSecure * *aCryptoclosure) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsMsgSend::SetCryptoclosure(nsIMsgComposeSecure * aCryptoclosure) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIMsgSend_h__ */ .