2008-07-22 16:21:15 +04:00
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-05-30 20:48:24 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2008-07-22 16:21:15 +04:00
#include "nsISupports.idl"
#include "nsrootidl.idl"
#include "nsIMsgWindow.idl"
#include "nsIMsgIdentity.idl"
interface nsIMsgDBHdr;
2016-02-04 13:39:46 +03:00
interface mozIDOMWindowProxy;
2008-07-22 16:21:15 +04:00
interface nsITransactionManager;
interface nsIMsgMessageService;
interface nsIFile;
interface nsIUrlListener;
2016-02-04 13:39:46 +03:00
[scriptable, uuid(01b967c8-b289-4e32-ad46-6eb7c89d4106)]
2008-07-22 16:21:15 +04:00
interface nsIMessenger : nsISupports {
const long eUnknown = 0;
const long eDeleteMsg = 1;
const long eMoveMsg = 2;
const long eCopyMsg = 3;
2008-12-09 05:09:53 +03:00
const long eMarkAllMsg = 4;
2008-07-22 16:21:15 +04:00
void setDisplayCharset(in ACString aCharset);
readonly attribute nsITransactionManager transactionManager;
2016-02-04 13:39:46 +03:00
void setWindow(in mozIDOMWindowProxy ptr, in nsIMsgWindow msgWindow);
2008-07-22 16:21:15 +04:00
2012-01-27 17:21:32 +04:00
void addMsgUrlToNavigateHistory(in ACString aURL);
2008-07-22 16:21:15 +04:00
void openURL(in ACString aURL);
2020-01-21 10:06:47 +03:00
/**
* Load a custom message by url, e.g load a attachment as a email
*/
2016-02-04 13:39:46 +03:00
void loadURL(in mozIDOMWindowProxy ptr, in ACString aURL);
2008-07-22 16:21:15 +04:00
void launchExternalURL(in ACString aURL);
boolean canUndo();
boolean canRedo();
unsigned long getUndoTransactionType();
unsigned long getRedoTransactionType();
void undo(in nsIMsgWindow msgWindow);
void redo(in nsIMsgWindow msgWindow);
void setDocumentCharset(in ACString characterSet);
2010-11-02 13:33:38 +03:00
/**
* Saves a given message to a file or template.
*
* @param aURI The URI of the message to save
* @param aAsFile If true, save as file, otherwise save as a template
* @param aIdentity When saving as a template, this is used to determine
* the location to save the template to.
* @param aMsgFilename When saving as a file, the filename to save the
* message as, or the default filename for the file
* picker.
* @param aBypassFilePicker
* If not specified or false, this function will show
* a file picker when saving as a file. If true, no
* file picker will be shown.
*/
void saveAs(in ACString aURI, in boolean aAsFile,
in nsIMsgIdentity aIdentity, in AString aMsgFilename,
[optional] in boolean aBypassFilePicker);
2009-11-29 22:31:03 +03:00
/**
* Save the given messages as files in a folder - the user will be prompted
* for which folder to use.
* @param count message count
* @param filenameArray the filenames to use
* @param messageUriArray uris of the messages to save
*/
2019-11-20 02:05:08 +03:00
void saveMessages(in Array<AString> filenameArray,
in Array<ACString> messageUriArray);
2009-11-29 22:31:03 +03:00
2008-07-22 16:21:15 +04:00
void openAttachment(in ACString contentTpe, in ACString url, in ACString displayName, in ACString messageUri, in boolean isExternalAttachment);
void saveAttachment(in ACString contentTpe, in ACString url, in ACString displayName, in ACString messageUri, in boolean isExternalAttachment);
2019-11-20 02:05:08 +03:00
void saveAllAttachments(in Array<ACString> contentTypeArray,
in Array<ACString> urlArray,
in Array<ACString> displayNameArray,
in Array<ACString> messageUriArray);
2017-12-19 01:37:21 +03:00
void saveAttachmentToFile(in nsIFile aFile, in ACString aUrl, in ACString aMessageUri,
2008-07-22 16:21:15 +04:00
in ACString aContentType, in nsIUrlListener aListener);
2010-04-07 18:41:10 +04:00
/**
* For a single message and attachments, save these attachments to a file, and
* remove from the message. No warning windows will appear, so this is
* suitable for use in test and filtering.
*
* @param aDestFolder Folder to save files in
* @param aCount Number of attachments to save
* @param aContentTypeArray Content types of the attachments
* @param aUrlArray Urls for the attachments
* @param aDisplayNameArray Files names to save attachments to. Unique
* names will be created if needed.
* @param aMessageUriArray Uri for the source message
* @param aListener Listener to inform of start and stop of detach
*/
void detachAttachmentsWOPrompts(in nsIFile aDestFolder,
2019-11-20 02:05:08 +03:00
in Array<ACString> aContentTypeArray,
in Array<ACString> aUrlArray,
in Array<ACString> aDisplayNameArray,
in Array<ACString> aMessageUriArray,
2010-04-07 18:41:10 +04:00
in nsIUrlListener aListener);
2019-11-20 02:05:08 +03:00
void detachAttachment(in ACString contentTpe, in ACString url, in ACString displayName, in ACString messageUri, in boolean saveFirst, [optional] in boolean withoutWarning);
void detachAllAttachments(in Array<ACString> contentTypeArray,
in Array<ACString> urlArray,
in Array<ACString> displayNameArray,
in Array<ACString> messageUriArray,
in boolean saveFirst,
[optional] in boolean withoutWarning);
2008-07-22 16:21:15 +04:00
// saveAttachmentToFolder is used by the drag and drop code to drop an attachment to a destination folder
2008-10-16 19:18:01 +04:00
// We need to return the actual file path (including the filename).
2012-06-06 06:24:01 +04:00
nsIFile saveAttachmentToFolder(in ACString contentType, in ACString url, in ACString displayName, in ACString messageUri, in nsIFile aDestFolder);
2008-07-22 16:21:15 +04:00
readonly attribute ACString lastDisplayedMessageUri;
2020-10-07 22:51:37 +03:00
nsIMsgMessageService messageServiceFromURI(in AUTF8String aUri);
nsIMsgDBHdr msgHdrFromURI(in AUTF8String aUri);
2008-10-16 19:18:01 +04:00
// For back forward history, we need a list of visited messages,
2008-07-22 16:21:15 +04:00
// and where we are in the list.
2017-12-19 01:37:21 +03:00
2008-07-22 16:21:15 +04:00
// aPos is relative to the current history cursor - 1 is forward, -1 is back.
// Unfortunately, you must call this before navigating to this position,
// because calling this has the side effect of making us adjust our current
// history pos, and *not* adding the loaded message to the history queue.
ACString getMsgUriAtNavigatePos(in long aPos);
ACString getFolderUriAtNavigatePos(in long aPos);
attribute long navigatePos;
2020-01-21 10:06:47 +03:00
/**
* Fetch the message navigation history.
*
* @returns An array containing two URIs for each history position.
* First msgURI, then folderURI. So the array will be
* twice as long as the number of history positions.
*/
2019-12-22 01:08:49 +03:00
Array<ACString> getNavigateHistory();
2010-05-13 14:12:04 +04:00
AString formatFileSize(in unsigned long long aPos, [optional] in boolean aUseKB);
2008-07-22 16:21:15 +04:00
};