1999-06-04 01:18:13 +04:00
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
1999-11-06 06:43:54 +03:00
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1999-06-04 01:18:13 +04:00
*
1999-11-06 06:43:54 +03:00
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1999-06-04 01:18:13 +04:00
*
1999-11-06 06:43:54 +03:00
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-06-04 01:18:13 +04:00
* Communications Corporation. Portions created by Netscape are
1999-11-06 06:43:54 +03:00
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-06-04 01:18:13 +04:00
*/
#include "nsISupports.idl"
1999-09-30 00:37:12 +04:00
#include "nsrootidl.idl"
1999-06-04 01:18:13 +04:00
#include "domstubs.idl"
#include "xulstubs.idl"
#include "nsIRDFCompositeDataSource.idl"
1999-10-29 08:39:06 +04:00
#include "nsIMsgWindow.idl"
1999-11-24 01:19:48 +03:00
#include "nsIMsgIdentity.idl"
2000-03-14 08:34:42 +03:00
#include "nsIMsgThread.idl"
#include "nsIMsgFolder.idl"
1999-06-04 01:18:13 +04:00
%{C++
2000-09-01 05:54:35 +04:00
#include "nsIDOMWindowInternal.h"
1999-06-04 01:18:13 +04:00
%}
1999-06-09 05:30:27 +04:00
interface nsITransactionManager;
1999-06-04 01:18:13 +04:00
[scriptable, uuid(4f7966d0-c14f-11d2-b7f2-00805f05ffa5)]
interface nsIMessenger : nsISupports {
2000-05-15 00:41:40 +04:00
const long eUnknown = 0;
const long eDeleteMsg = 1;
const long eMoveMsg = 2;
const long eCopyMsg = 3;
2000-02-07 18:15:14 +03:00
1999-06-09 05:30:27 +04:00
readonly attribute nsITransactionManager transactionManager;
2000-09-01 05:54:35 +04:00
void SetWindow(in nsIDOMWindowInternal ptr, in nsIMsgWindow msgWindow);
1999-08-05 23:47:58 +04:00
void DoPrint();
void DoPrintPreview();
1999-12-18 03:48:25 +03:00
void DeleteMessages(in nsIRDFCompositeDataSource database,
in nsIRDFResource srcFolderResource,
2000-03-25 03:58:20 +03:00
in nsISupportsArray messages,
in boolean reallyDelete);
1999-12-18 03:48:25 +03:00
void DeleteFolders(in nsIRDFCompositeDataSource db,
in nsIRDFResource parentFolder,
in nsIRDFResource folder);
void CopyMessages(in nsIRDFCompositeDataSource database,
in nsIRDFResource srcFolder,
in nsIRDFResource dstFolder,
in nsISupportsArray messages,
1999-06-04 01:18:13 +04:00
in boolean isMove);
2001-02-02 23:21:52 +03:00
void CopyFolders(in nsIRDFCompositeDataSource database,
in nsIRDFResource dstFolder,
in nsISupportsArray folders,
in boolean isMoveFolder);
1999-09-18 03:15:02 +04:00
void OpenURL(in string url);
1999-08-06 17:32:19 +04:00
void RenameFolder(in nsIRDFCompositeDataSource db,
2000-02-08 04:20:00 +03:00
in nsIRDFResource folder, in wstring name);
1999-12-18 03:48:25 +03:00
void CompactFolder(in nsIRDFCompositeDataSource db,
2001-02-16 05:05:41 +03:00
in nsIRDFResource folder,
in boolean forAll);
1999-12-18 03:48:25 +03:00
void EmptyTrash(in nsIRDFCompositeDataSource db,
in nsIRDFResource folder);
1999-08-06 17:32:19 +04:00
2000-02-07 18:15:14 +03:00
boolean CanUndo();
boolean CanRedo();
unsigned long GetUndoTransactionType();
unsigned long GetRedoTransactionType();
void Undo(in nsIMsgWindow msgWindow);
void Redo(in nsIMsgWindow msgWindow);
2000-02-02 10:28:23 +03:00
void SendUnsentMessages(in nsIMsgIdentity aIdentity);
1999-06-15 05:23:34 +04:00
void SetDocumentCharset(in wstring characterSet);
2000-03-25 03:58:20 +03:00
void saveAs(in string url, in boolean asFile, in nsIMsgIdentity identity, in nsIMsgWindow aMsgWindow);
2000-05-03 02:45:44 +04:00
void openAttachment(in string contentTpe, in string url, in string displayName, in string messageUri);
2000-04-29 04:26:07 +04:00
void saveAttachment(in string url, in string displayName, in string messageUri);
2000-04-14 02:19:48 +04:00
void saveAllAttachments(in unsigned long count, [array, size_is(count)] in string urlArray, [array, size_is(count)] in string displayNameArray, [array, size_is(count)] in string messageUriArray);
2000-03-24 08:44:32 +03:00
void find();
void findAgain();
1999-06-04 01:18:13 +04:00
};
1999-06-09 02:15:58 +04:00