gecko-dev/mailnews/compose/public/nsIMsgCompose.idl

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

1999-02-09 03:08:18 +03: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"
1999-06-11 02:04:21 +04:00
#include "domstubs.idl"
1999-02-09 03:08:18 +03:00
#include "nsIMsgCompFields.idl"
#include "nsIEditorShell.idl"
1999-06-22 00:28:39 +04:00
#include "nsIMsgIdentity.idl"
1999-02-09 03:08:18 +03:00
1999-06-11 02:04:21 +04:00
%{ C++
#include "nsIDOMWindow.h"
#include "nsIEditorShell.h"
1999-06-11 02:04:21 +04:00
%}
1999-02-09 03:08:18 +03:00
1999-06-11 02:04:21 +04:00
typedef long MSG_ComposeType;
%{ C++
enum
{
MSGCOMP_TYPE_New = 0,
MSGCOMP_TYPE_Reply,
MSGCOMP_TYPE_ReplyAll,
MSGCOMP_TYPE_ForwardInline,
MSGCOMP_TYPE_ForwardAsAttachment
};
%}
typedef long MSG_ComposeFormat;
%{ C++
enum
{
MSGCOMP_FORMAT_Default = 0, //Will use user's preference
MSGCOMP_FORMAT_HTML,
MSGCOMP_FORMAT_PlainText
};
%}
typedef long MSG_ComposeSaveType;
%{ C++
enum
{
MSGCOMP_SAVETYPE_File = 0,
MSGCOMP_SAVETYPE_Template,
MSGCOMP_SAVETYPE_Draft
};
%}
typedef long MSG_DeliverMode;
%{ C++
//#include "nsMsgComposeBE.h"
enum
{
MSGCOMP_DELIVER_Now /*= nsMsgDeliverNow, */=0,
MSGCOMP_DELIVER_Later /*= nsMsgQueueForLater, */=1,
MSGCOMP_DELIVER_Save /*= nsMsgSave, */=2,
MSGCOMP_DELIVER_SaveAs /*= nsMsgSaveAs, */=3,
MSGCOMP_DELIVER_SaveAsDraft /*= nsMsgSaveAsDraft, */=4,
MSGCOMP_DELIVER_SaveAsTemplate /*= nsMsgSaveAsTemplate */=5
};
%}
[scriptable, uuid(4E606270-B588-11D2-8289-00805F2A0107)]
1999-02-09 03:08:18 +03:00
interface nsIMsgCompose : nsISupports {
1999-06-11 02:04:21 +04:00
/* ... */
void Initialize(in nsIDOMWindow aWindow, in wstring originalMsgURI,
in MSG_ComposeType type, in MSG_ComposeFormat format, in nsISupports object); /*object is temporary*/
/* ... */
void LoadFields();
/* ... */
void SetDocumentCharset(in wstring charset);
/* ... */
void SendMsg(in MSG_DeliverMode deliverMode, in wstring callback);
/* ... */
void SendMsgEx(in MSG_DeliverMode deliverMode, in wstring addrTo, in wstring addrCc, in wstring addrBcc,
in wstring newsgroup, in wstring subject, in wstring body,
in wstring callback);
1999-06-22 00:28:39 +04:00
1999-06-11 02:04:21 +04:00
/* ... */
void CloseWindow();
/* ... */
attribute nsIEditorShell editor;
1999-06-11 02:04:21 +04:00
/* ... */
readonly attribute nsIDOMWindow domWindow;
/* ... */
readonly attribute nsIMsgCompFields compFields;
/* ... */
readonly attribute boolean composeHTML;
/* ... */
readonly attribute long wrapLength;
1999-02-09 03:08:18 +03:00
};