2000-11-09 20:30:35 +00:00
|
|
|
#include "nsISupports.idl"
|
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 16:46:42 +00:00
|
|
|
|
|
|
|
interface nsIDOMDocument;
|
2005-05-04 20:22:32 +00:00
|
|
|
interface nsISHEntry;
|
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 16:46:42 +00:00
|
|
|
|
2000-11-09 20:30:35 +00:00
|
|
|
|
|
|
|
%{ C++
|
2001-07-16 02:40:48 +00:00
|
|
|
class nsIWidget;
|
2000-11-09 20:30:35 +00:00
|
|
|
class nsIDeviceContext;
|
|
|
|
struct nsRect;
|
|
|
|
%}
|
|
|
|
|
|
|
|
[ptr] native nsIWidgetPtr(nsIWidget);
|
|
|
|
[ptr] native nsIDeviceContextPtr(nsIDeviceContext);
|
|
|
|
[ref] native nsRectRef(nsRect);
|
|
|
|
|
2005-05-04 20:22:32 +00:00
|
|
|
[scriptable, uuid(e2c68a4d-b396-11d9-a3d1-00112478d626)]
|
2000-11-09 20:30:35 +00:00
|
|
|
interface nsIContentViewer : nsISupports
|
|
|
|
{
|
|
|
|
|
|
|
|
[noscript] void init(in nsIWidgetPtr aParentWidget,
|
|
|
|
in nsIDeviceContextPtr aDeviceContext,
|
|
|
|
[const] in nsRectRef aBounds);
|
|
|
|
|
|
|
|
attribute nsISupports container;
|
|
|
|
|
2001-05-25 08:49:03 +00:00
|
|
|
void loadStart(in nsISupports aDoc);
|
2000-11-09 20:30:35 +00:00
|
|
|
void loadComplete(in unsigned long aStatus);
|
2004-02-11 06:09:51 +00:00
|
|
|
boolean permitUnload();
|
2001-07-17 20:17:38 +00:00
|
|
|
void unload();
|
2001-05-25 08:49:03 +00:00
|
|
|
|
2001-08-01 03:15:50 +00:00
|
|
|
/**
|
|
|
|
* All users of a content viewer are responsible for calling both
|
|
|
|
* close() and destroy(), in that order.
|
|
|
|
*
|
|
|
|
* close() should be called when the load of a new page for the next
|
|
|
|
* content viewer begins, and destroy() should be called when the next
|
|
|
|
* content viewer replaces this one.
|
|
|
|
*/
|
|
|
|
void close();
|
2000-11-09 20:30:35 +00:00
|
|
|
void destroy();
|
2001-08-01 03:15:50 +00:00
|
|
|
|
2000-11-09 20:30:35 +00:00
|
|
|
void stop();
|
|
|
|
|
|
|
|
attribute nsIDOMDocument DOMDocument;
|
|
|
|
|
|
|
|
[noscript] void getBounds(in nsRectRef aBounds);
|
|
|
|
[noscript] void setBounds([const] in nsRectRef aBounds);
|
|
|
|
|
2001-08-01 03:15:50 +00:00
|
|
|
/**
|
|
|
|
* The previous content viewer, which has been |close|d but not
|
|
|
|
* |destroy|ed.
|
|
|
|
*/
|
|
|
|
[noscript] attribute nsIContentViewer previousViewer;
|
2001-05-01 22:54:11 +00:00
|
|
|
|
2000-11-09 20:30:35 +00:00
|
|
|
void move(in long aX, in long aY);
|
|
|
|
|
|
|
|
void show();
|
|
|
|
void hide();
|
|
|
|
|
|
|
|
attribute boolean enableRendering;
|
2002-04-24 00:33:56 +00:00
|
|
|
|
|
|
|
attribute boolean sticky;
|
2003-09-26 21:45:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is called when the DOM window wants to be closed. Returns true
|
|
|
|
* if the window can close immediately. Otherwise, returns false and will
|
|
|
|
* close the DOM window as soon as practical.
|
|
|
|
*/
|
|
|
|
|
|
|
|
boolean requestWindowClose();
|
2005-05-04 20:22:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach the content viewer to its DOM window and docshell.
|
|
|
|
*/
|
|
|
|
void open();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the session history entry for the content viewer. If this is set,
|
|
|
|
* then the following actions will happen when destroy() is called (*):
|
|
|
|
* - Sanitize() will be called on the viewer's document
|
|
|
|
* - The content viewer will set the contentViewer property on the
|
|
|
|
* history entry, and release its reference (ownership reversal).
|
|
|
|
* - hide() will be called, and no further destruction will happen.
|
|
|
|
*
|
|
|
|
* (*) unless the document is currently being printed, in which case
|
|
|
|
* it will never be saved in session history.
|
|
|
|
*/
|
|
|
|
void setHistoryEntry(in nsISHEntry entry);
|
2000-11-09 20:30:35 +00:00
|
|
|
};
|