mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
123 lines
3.0 KiB
Plaintext
123 lines
3.0 KiB
Plaintext
/* -*- 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 "nsIMsgCompFields.idl"
|
|
#include "nsIEditorShell.idl"
|
|
#include "nsIMsgIdentity.idl"
|
|
|
|
%{ C++
|
|
#include "nsIDOMWindow.h"
|
|
#include "nsIEditorShell.h"
|
|
%}
|
|
|
|
|
|
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)]
|
|
interface nsIMsgCompose : nsISupports {
|
|
|
|
/* ... */
|
|
void Initialize(in nsIDOMWindow aWindow, in wstring originalMsgURI,
|
|
in MSG_ComposeType type, in MSG_ComposeFormat format,
|
|
in nsIMsgCompFields compFields,
|
|
in nsISupports object); /*object is temporary*/
|
|
|
|
/* ... */
|
|
void LoadFields();
|
|
|
|
/* ... */
|
|
void SetDocumentCharset(in wstring charset);
|
|
|
|
/* ... */
|
|
void SendMsg(in MSG_DeliverMode deliverMode,
|
|
in nsIMsgIdentity identity,
|
|
in wstring callback);
|
|
|
|
/* ... */
|
|
void SendMsgEx(in MSG_DeliverMode deliverMode,
|
|
in nsIMsgIdentity identity,
|
|
in wstring addrTo, in wstring addrCc, in wstring addrBcc,
|
|
in wstring newsgroup, in wstring subject, in wstring body,
|
|
in wstring callback);
|
|
|
|
/* ... */
|
|
void CloseWindow();
|
|
|
|
/* ... */
|
|
attribute nsIEditorShell editor;
|
|
|
|
/* ... */
|
|
readonly attribute nsIDOMWindow domWindow;
|
|
|
|
/* ... */
|
|
readonly attribute nsIMsgCompFields compFields;
|
|
|
|
/* ... */
|
|
readonly attribute boolean composeHTML;
|
|
|
|
/* ... */
|
|
readonly attribute long wrapLength;
|
|
};
|
|
|