1999-06-10 04:41:28 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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-10 04:41:28 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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-10 04:41:28 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-06-10 04:41:28 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-06-10 04:41:28 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIMsgCompose.idl"
|
2000-12-06 22:56:27 +03:00
|
|
|
#include "nsIMsgComposeParams.idl"
|
1999-09-21 09:37:23 +04:00
|
|
|
#include "nsIMsgIdentity.idl"
|
1999-06-10 04:41:28 +04:00
|
|
|
|
1999-11-18 11:36:39 +03:00
|
|
|
interface nsIURI;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
interface nsIDOMWindowInternal;
|
1999-11-18 11:36:39 +03:00
|
|
|
|
1999-06-10 04:41:28 +04:00
|
|
|
|
|
|
|
[scriptable, uuid(B004F4AE-1AC2-11d3-A715-0060B0EB39B5)]
|
|
|
|
interface nsIMsgComposeService : nsISupports {
|
|
|
|
|
|
|
|
/* ... */
|
2001-03-17 04:59:34 +03:00
|
|
|
void OpenComposeWindow(in string msgComposeWindowURL, in string originalMsgURI, in MSG_ComposeType type, in MSG_ComposeFormat format,
|
2000-01-28 09:20:44 +03:00
|
|
|
in nsIMsgIdentity identity);
|
1999-11-18 11:36:39 +03:00
|
|
|
|
|
|
|
/* use this method to invoke a compose window given a mailto url.
|
|
|
|
aMsgComposeWindowURL --> can be null in most cases. If you have your own chrome
|
|
|
|
url you want to use in brining up a compose window, pass it in here.
|
|
|
|
aURI --> the mailto url you want to use as the foundation for the data inside
|
|
|
|
the compose window */
|
2001-03-17 04:59:34 +03:00
|
|
|
void OpenComposeWindowWithURI(in string msgComposeWindowURL, in nsIURI aURI);
|
1999-06-10 04:41:28 +04:00
|
|
|
|
1999-07-14 00:07:10 +04:00
|
|
|
/* ... */
|
2001-03-17 04:59:34 +03:00
|
|
|
void OpenComposeWindowWithValues(in string msgComposeWindowURL, in MSG_ComposeType type, in MSG_ComposeFormat format,
|
|
|
|
in wstring to, in wstring cc, in wstring bcc, in string newsgroups,
|
|
|
|
in wstring subject, in wstring body, in string attachment, in nsIMsgIdentity identity);
|
1999-07-14 00:07:10 +04:00
|
|
|
|
1999-06-10 04:41:28 +04:00
|
|
|
/* ... */
|
2001-03-17 04:59:34 +03:00
|
|
|
void OpenComposeWindowWithCompFields(in string msgComposeWindowURL, in MSG_ComposeType type, in MSG_ComposeFormat format,
|
2000-01-28 09:20:44 +03:00
|
|
|
in nsIMsgCompFields compFields, in nsIMsgIdentity identity);
|
1999-07-15 01:34:25 +04:00
|
|
|
|
|
|
|
/* ... */
|
2001-03-17 04:59:34 +03:00
|
|
|
nsIMsgCompose InitCompose(in nsIDOMWindowInternal aWindow, in nsIMsgComposeParams params);
|
1999-06-10 04:41:28 +04:00
|
|
|
|
2001-03-05 23:00:26 +03:00
|
|
|
/* This function is use for debugging purpose only and may go away at anytime without warning */
|
|
|
|
void TimeStamp(in string label, in boolean resetTime);
|
1999-06-10 04:41:28 +04:00
|
|
|
};
|
|
|
|
|