comparison dwt/internal/mozilla.old/nsIProgressDialog.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.nsIProgressDialog;
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 : nsIDownload {
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