comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIWebBrowser.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsIWebBrowser;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsISupports;
6
7 import org.eclipse.swt.internal.mozilla.nsIWebBrowserChrome;
8 import org.eclipse.swt.internal.mozilla.nsIURIContentListener;
9 import org.eclipse.swt.internal.mozilla.nsIDOMWindow;
10 import org.eclipse.swt.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 interface nsIWebBrowser : nsISupports {
19
20 static const char[] IID_STR = NS_IWEBBROWSER_IID_STR;
21 static const nsIID IID = NS_IWEBBROWSER_IID;
22
23 extern(System):
24 nsresult AddWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
25 nsresult RemoveWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
26 nsresult GetContainerWindow(nsIWebBrowserChrome *aContainerWindow);
27 nsresult SetContainerWindow(nsIWebBrowserChrome aContainerWindow);
28 nsresult GetParentURIContentListener(nsIURIContentListener *aParentURIContentListener);
29 nsresult SetParentURIContentListener(nsIURIContentListener aParentURIContentListener);
30 nsresult GetContentDOMWindow(nsIDOMWindow *aContentDOMWindow);
31
32 }
33