comparison dwt/internal/mozilla/nsIProgressDialog_1_8.d @ 286:44258e0b6687

More fixes for xpcom
author John Reimer<terminal.node@gmail.com>
date Tue, 05 Aug 2008 10:11:58 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
280:e72345914350 286:44258e0b6687
1 module dwt.internal.mozilla.nsIProgressDialog_1_8;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6 import dwt.internal.mozilla.nsIDownload;
7 import dwt.internal.mozilla.nsIDOMWindow;
8 import dwt.internal.mozilla.nsIObserver;
9
10 const char[] NS_IPROGRESSDIALOG_IID_STR = "20e790a2-76c6-462d-851a-22ab6cbbe48b";
11
12 const nsIID NS_IPROGRESSDIALOG_IID=
13 {0x20e790a2, 0x76c6, 0x462d,
14 [ 0x85, 0x1a, 0x22, 0xab, 0x6c, 0xbb, 0xe4, 0x8b ]};
15
16 extern(System)
17
18 interface nsIProgressDialog_1_8 : nsIDownload_1_8 {
19
20 static const char[] IID_STR = NS_IPROGRESSDIALOG_IID_STR;
21 static const nsIID IID = NS_IPROGRESSDIALOG_IID;
22
23 nsresult Open(nsIDOMWindow aParent);
24 nsresult GetCancelDownloadOnClose(PRBool *aCancelDownloadOnClose);
25 nsresult SetCancelDownloadOnClose(PRBool aCancelDownloadOnClose);
26 nsresult GetObserver(nsIObserver *aObserver);
27 nsresult SetObserver(nsIObserver aObserver);
28 nsresult GetDialog(nsIDOMWindow *aDialog);
29 nsresult SetDialog(nsIDOMWindow aDialog);
30
31 }
32