gecko-dev/mailnews/base/public/nsIMsgCopyServiceListener.idl

77 строки
2.6 KiB
Plaintext
Исходник Обычный вид История

1999-06-24 01:17:24 +04:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* 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-24 01:17:24 +04: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-24 01:17:24 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-06-24 01:17:24 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-06-24 01:17:24 +04:00
*/
#include "nsrootidl.idl"
1999-06-24 04:52:19 +04:00
#include "nsISupports.idl"
1999-06-24 01:17:24 +04:00
[ptr] native nsCString(nsCString);
/* [ptr] native nsString(nsString); */
1999-06-24 01:17:24 +04:00
[scriptable, uuid(1caa10b6-29a6-11d3-afb2-001083002da8)]
interface nsIMsgCopyServiceListener : nsISupports {
/**
* Notify the observer that the message has started to be copied. This
* method is called only once, at the beginning of a message
* copyoperation.
1999-06-24 01:17:24 +04:00
*/
void OnStartCopy();
1999-06-24 01:17:24 +04:00
/**
* Notify the observer that progress as occurred for the message copy
* aProgress -
* aProgressMax -
1999-06-24 01:17:24 +04:00
*/
void OnProgress(in PRUint32 aProgress,
in PRUint32 aProgressMax);
/**
* Setting newly created message key. This method is taylored specifically
* for nsIMsgCopyService::CopyFileMessage() when saveing Drafts/Templates.
* We need to have a way to inform the client what's the key of the newly
* created message.
* aKey -
*/
void SetMessageKey(in PRUint32 aKey);
/**
* Getting the file message message ID. This method is taylored
* specifically for nsIMsgCopyService::CopyFileMessage() when saving
* Drafts/Templates. In order to work with imap server which doesn't
* support uidplus we have to use search comman to retrieve the key of
* newly created message. Message ID generated by the compose gurantee its
* uniqueness.
* aMessageId -
*/
[noscript] void GetMessageId(in nsCString aMessageId);
1999-06-24 01:17:24 +04:00
/**
* Notify the observer that the message copied operation has completed.
* This method is called regardless of whether the the operation was
* successful.
* aStatus - indicate whether the operation was succeeded
1999-06-24 01:17:24 +04:00
*/
void OnStopCopy(in nsresult aStatus);
1999-06-24 01:17:24 +04:00
};