annotate dwt/internal/mozilla/nsIProgressDialog_1_8.d @ 348:9a4d7706df52

Test Update to fix linux XPCOM interface issues
author John Reimer <terminal.node@gmail.com>
date Fri, 31 Oct 2008 21:46:44 -0700
parents 8198e6052012
children
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
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
17 interface nsIProgressDialog_1_8 : nsIDownload_1_8 {
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 static const char[] IID_STR = NS_IPROGRESSDIALOG_IID_STR;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
20 static const nsIID IID = NS_IPROGRESSDIALOG_IID;
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
21
348
9a4d7706df52 Test Update to fix linux XPCOM interface issues
John Reimer <terminal.node@gmail.com>
parents: 344
diff changeset
22 extern(System):
286
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
23 nsresult Open(nsIDOMWindow aParent);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
24 nsresult GetCancelDownloadOnClose(PRBool *aCancelDownloadOnClose);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
25 nsresult SetCancelDownloadOnClose(PRBool aCancelDownloadOnClose);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
26 nsresult GetObserver(nsIObserver *aObserver);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
27 nsresult SetObserver(nsIObserver aObserver);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
28 nsresult GetDialog(nsIDOMWindow *aDialog);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
29 nsresult SetDialog(nsIDOMWindow aDialog);
44258e0b6687 More fixes for xpcom
John Reimer<terminal.node@gmail.com>
parents:
diff changeset
30
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