pjs/mailnews/compose/public/nsIMsgComposeService.idl

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

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"
#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 {
/* ... */
void OpenComposeWindow(in wstring msgComposeWindowURL, in wstring originalMsgURI, in MSG_ComposeType type, in MSG_ComposeFormat format,
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,
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
/* ... */
void OpenComposeWindowWithCompFields(in wstring msgComposeWindowURL, in MSG_ComposeFormat format, in nsIMsgCompFields compFields);
/* ... */
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
};