| 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 |
import dwt.internal.mozilla.nsIDownload_1_8; |
|---|
| 10 |
|
|---|
| 11 |
const char[] NS_IPROGRESSDIALOG_IID_STR = "20e790a2-76c6-462d-851a-22ab6cbbe48b"; |
|---|
| 12 |
|
|---|
| 13 |
const nsIID NS_IPROGRESSDIALOG_IID= |
|---|
| 14 |
{0x20e790a2, 0x76c6, 0x462d, |
|---|
| 15 |
[ 0x85, 0x1a, 0x22, 0xab, 0x6c, 0xbb, 0xe4, 0x8b ]}; |
|---|
| 16 |
|
|---|
| 17 |
interface nsIProgressDialog_1_8 : nsIDownload_1_8 { |
|---|
| 18 |
|
|---|
| 19 |
static const char[] IID_STR = NS_IPROGRESSDIALOG_IID_STR; |
|---|
| 20 |
static const nsIID IID = NS_IPROGRESSDIALOG_IID; |
|---|
| 21 |
|
|---|
| 22 |
extern(System): |
|---|
| 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 |
} |
|---|