comparison dwt/internal/mozilla.old/nsIWebBrowser.d @ 288:4ee8c4237614

old branches... commit by mistake
author John Reimer<terminal.node@gmail.com>
date Tue, 05 Aug 2008 18:00:50 -0700
parents
children
comparison
equal deleted inserted replaced
287:9cbe6285f746 288:4ee8c4237614
1 module dwt.internal.mozilla.nsIWebBrowser;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 import dwt.internal.mozilla.nsIWebBrowserChrome;
8 import dwt.internal.mozilla.nsIURIContentListener;
9 import dwt.internal.mozilla.nsIDOMWindow;
10 import dwt.internal.mozilla.nsIWeakReference;
11
12 const char[] NS_IWEBBROWSER_IID_STR = "69e5df00-7b8b-11d3-af61-00a024ffc08c";
13
14 const nsIID NS_IWEBBROWSER_IID=
15 {0x69e5df00, 0x7b8b, 0x11d3,
16 [ 0xaf, 0x61, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]};
17
18 extern(System)
19
20 interface nsIWebBrowser : nsISupports {
21
22 static const char[] IID_STR = NS_IWEBBROWSER_IID_STR;
23 static const nsIID IID = NS_IWEBBROWSER_IID;
24
25 nsresult AddWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
26 nsresult RemoveWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
27 nsresult GetContainerWindow(nsIWebBrowserChrome *aContainerWindow);
28 nsresult SetContainerWindow(nsIWebBrowserChrome aContainerWindow);
29 nsresult GetParentURIContentListener(nsIURIContentListener *aParentURIContentListener);
30 nsresult SetParentURIContentListener(nsIURIContentListener aParentURIContentListener);
31 nsresult GetContentDOMWindow(nsIDOMWindow *aContentDOMWindow);
32
33 }
34