1999-06-23 21:17:24 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
1999-06-22 23:20:56 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00: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-22 23:20:56 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00: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-22 23:20:56 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-06-22 23:20:56 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998, 1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-06-22 23:20:56 +00:00
|
|
|
*/
|
|
|
|
|
1999-06-26 18:19:33 +00:00
|
|
|
#include "nsrootidl.idl"
|
1999-06-22 23:20:56 +00:00
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIMsgFolder.idl"
|
|
|
|
#include "nsIFileSpec.idl"
|
1999-06-23 21:17:24 +00:00
|
|
|
#include "nsIMsgCopyServiceListener.idl"
|
1999-06-29 19:45:19 +00:00
|
|
|
#include "nsISupportsArray.idl"
|
1999-06-22 23:20:56 +00:00
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
interface nsIMsgDBHdr;
|
1999-06-22 23:20:56 +00:00
|
|
|
%{C++
|
|
|
|
#include "nsITransactionManager.h"
|
|
|
|
%}
|
|
|
|
|
|
|
|
interface nsITransactionManager;
|
1999-10-29 04:39:06 +00:00
|
|
|
interface nsIMsgWindow;
|
1999-06-22 23:20:56 +00:00
|
|
|
|
|
|
|
[scriptable, uuid(bce41600-28df-11d3-abf7-00805f8ac968)]
|
|
|
|
interface nsIMsgCopyService : nsISupports {
|
|
|
|
|
1999-06-25 14:33:40 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void CopyMessages(in nsIMsgFolder srcFolder,
|
|
|
|
in nsISupportsArray messages,
|
|
|
|
in nsIMsgFolder dstFolder,
|
|
|
|
in boolean isMove,
|
|
|
|
in nsIMsgCopyServiceListener listener,
|
2001-05-04 23:29:50 +00:00
|
|
|
in nsIMsgWindow msgWindow,
|
|
|
|
in boolean allowUndo);
|
1999-06-23 21:17:24 +00:00
|
|
|
|
1999-06-25 14:33:40 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2001-02-02 20:21:52 +00:00
|
|
|
void CopyFolders( in nsISupportsArray folders,
|
|
|
|
in nsIMsgFolder dstFolder,
|
|
|
|
in boolean isMove,
|
|
|
|
in nsIMsgCopyServiceListener listener,
|
|
|
|
in nsIMsgWindow msgWindow);
|
|
|
|
|
|
|
|
void CopyFileMessage(in nsIFileSpec fileSpec,
|
1999-06-25 14:33:40 +00:00
|
|
|
in nsIMsgFolder dstFolder,
|
2001-03-17 01:59:34 +00:00
|
|
|
in nsIMsgDBHdr msgToReplace,
|
1999-07-13 20:03:57 +00:00
|
|
|
in boolean isDraftOrTemplate,
|
1999-06-25 14:33:40 +00:00
|
|
|
in nsIMsgCopyServiceListener listener,
|
1999-10-29 04:39:06 +00:00
|
|
|
in nsIMsgWindow msgWindow);
|
1999-06-23 21:17:24 +00:00
|
|
|
|
1999-06-25 14:33:40 +00:00
|
|
|
/**
|
|
|
|
* Notify the message copy service that the destination folder has finished
|
|
|
|
* it's messages copying operation so that the copy service can continue
|
|
|
|
* copying the rest of the messages if there are more to copy with.
|
|
|
|
* aSupport and dstFolder uniquely identify a copy service request.
|
|
|
|
*
|
|
|
|
* aSupport -- the originator of CopyMessages or CopyFileMessage; it can
|
|
|
|
* be either a nsIMsgFolder or a nsIFileSpec
|
|
|
|
* dstFolder -- the destination folder which performs the copy operation
|
1999-06-26 18:19:33 +00:00
|
|
|
* result -- the result of the copy operation
|
1999-06-25 14:33:40 +00:00
|
|
|
*/
|
|
|
|
void NotifyCompletion(in nsISupports aSupport,
|
1999-06-26 18:19:33 +00:00
|
|
|
in nsIMsgFolder dstFolder,
|
|
|
|
in nsresult result);
|
1999-06-23 21:17:24 +00:00
|
|
|
|
|
|
|
};
|