annotate dwt/internal/mozilla/nsIProgressDialog_1_8.d @ 344:8198e6052012

more fixups:
author John Reimer <terminal.node@gmail.com>
date Mon, 27 Oct 2008 22:41:01 -0700
parents 942da4b6558a
children 9a4d7706df52
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
286
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
1 module dwt.internal.mozilla.nsIProgressDialog_1_8;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
2
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
3 import dwt.internal.mozilla.Common;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
4 import dwt.internal.mozilla.nsID;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
5 import dwt.internal.mozilla.nsISupports;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
6 import dwt.internal.mozilla.nsIDownload;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
7 import dwt.internal.mozilla.nsIDOMWindow;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
8 import dwt.internal.mozilla.nsIObserver;
344
8198e6052012 more fixups:
John Reimer <terminal.node@gmail.com>
parents: 341
diff changeset
9 import dwt.internal.mozilla.nsIDownload_1_8;
286
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
10
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
11 const char[] NS_IPROGRESSDIALOG_IID_STR = "20e790a2-76c6-462d-851a-22ab6cbbe48b";
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
12
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
13 const nsIID NS_IPROGRESSDIALOG_IID=
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
14 {0x20e790a2, 0x76c6, 0x462d,
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
15 [ 0x85, 0x1a, 0x22, 0xab, 0x6c, 0xbb, 0xe4, 0x8b ]};
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
16
341
942da4b6558a Ongoing fixup for compile
John Reimer <terminal.node@gmail.com>
parents: 286
diff changeset
17 //extern(System)
286
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
18
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
19 interface nsIProgressDialog_1_8 : nsIDownload_1_8 {
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
20
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
21 static const char[] IID_STR = NS_IPROGRESSDIALOG_IID_STR;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
22 static const nsIID IID = NS_IPROGRESSDIALOG_IID;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
23
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
24 nsresult Open(nsIDOMWindow aParent);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
25 nsresult GetCancelDownloadOnClose(PRBool *aCancelDownloadOnClose);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
26 nsresult SetCancelDownloadOnClose(PRBool aCancelDownloadOnClose);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
27 nsresult GetObserver(nsIObserver *aObserver);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
28 nsresult SetObserver(nsIObserver aObserver);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
29 nsresult GetDialog(nsIDOMWindow *aDialog);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
30 nsresult SetDialog(nsIDOMWindow aDialog);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
31
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
32 }
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
33