|
Revision 327:b0d7eb5bd76c, 0.9 kB
(checked in by John Reimer <terminal.node@gmail.com>, 3 years ago)
|
Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win
|
| Line | |
|---|
| 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 = "88a478b3-af65-440a-94dc-ed9b154d2990"; |
|---|
| 11 |
|
|---|
| 12 |
const nsIID NS_IPROGRESSDIALOG_IID= |
|---|
| 13 |
{0x88a478b3, 0xaf65, 0x440a, |
|---|
| 14 |
[ 0x94, 0xdc, 0xed, 0x9b, 0x15, 0x4d, 0x29, 0x90 ]}; |
|---|
| 15 |
|
|---|
| 16 |
interface nsIProgressDialog : nsIDownload { |
|---|
| 17 |
|
|---|
| 18 |
static const char[] IID_STR = NS_IPROGRESSDIALOG_IID_STR; |
|---|
| 19 |
static const nsIID IID = NS_IPROGRESSDIALOG_IID; |
|---|
| 20 |
|
|---|
| 21 |
extern(System): |
|---|
| 22 |
nsresult Open(nsIDOMWindow aParent); |
|---|
| 23 |
nsresult GetCancelDownloadOnClose(PRBool *aCancelDownloadOnClose); |
|---|
| 24 |
nsresult SetCancelDownloadOnClose(PRBool aCancelDownloadOnClose); |
|---|
| 25 |
nsresult GetDialog(nsIDOMWindow *aDialog); |
|---|
| 26 |
nsresult SetDialog(nsIDOMWindow aDialog); |
|---|
| 27 |
|
|---|
| 28 |
} |
|---|