1999-06-10 04:41:28 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "domstubs.idl"
|
|
|
|
#include "nsIMsgCompose.idl"
|
1999-09-21 09:37:23 +04:00
|
|
|
#include "nsIMsgIdentity.idl"
|
1999-06-10 04:41:28 +04:00
|
|
|
|
|
|
|
%{ C++
|
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
%}
|
|
|
|
|
|
|
|
[scriptable, uuid(B004F4AE-1AC2-11d3-A715-0060B0EB39B5)]
|
|
|
|
interface nsIMsgComposeService : nsISupports {
|
|
|
|
|
|
|
|
/* ... */
|
1999-06-11 02:06:01 +04:00
|
|
|
void OpenComposeWindow(in wstring msgComposeWindowURL, in wstring originalMsgURI, in MSG_ComposeType type, in MSG_ComposeFormat format,
|
1999-09-20 06:12:28 +04:00
|
|
|
in nsISupports object,
|
|
|
|
in nsIMsgIdentity identity); /*object is temporary*/
|
1999-06-10 04:41:28 +04:00
|
|
|
|
1999-07-14 00:07:10 +04:00
|
|
|
/* ... */
|
|
|
|
void OpenComposeWindowWithValues(in wstring msgComposeWindowURL, in MSG_ComposeFormat format,
|
|
|
|
in wstring to, in wstring cc, in wstring bcc, in wstring newsgroups,
|
1999-10-23 08:50:20 +04:00
|
|
|
in wstring subject, in wstring body, in wstring attachment);
|
1999-07-14 00:07:10 +04:00
|
|
|
|
1999-06-10 04:41:28 +04:00
|
|
|
/* ... */
|
1999-07-15 01:34:25 +04:00
|
|
|
void OpenComposeWindowWithCompFields(in wstring msgComposeWindowURL, in MSG_ComposeFormat format, in nsIMsgCompFields compFields);
|
|
|
|
|
|
|
|
/* ... */
|
1999-09-21 09:37:23 +04:00
|
|
|
nsIMsgCompose InitCompose(in nsIDOMWindow aWindow,
|
|
|
|
in wstring originalMsgURI,
|
|
|
|
in long type, in long format,
|
|
|
|
in long compFieldsAddr,
|
|
|
|
in nsIMsgIdentity identity);
|
1999-06-10 04:41:28 +04:00
|
|
|
|
|
|
|
/* ... */
|
1999-07-14 00:07:10 +04:00
|
|
|
void DisposeCompose(in nsIMsgCompose compose, in boolean closeWindow);
|
1999-06-10 04:41:28 +04:00
|
|
|
};
|
|
|
|
|