|
Revision 327:b0d7eb5bd76c, 0.8 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.nsIDOMUIEvent; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
|
|---|
| 6 |
import dwt.internal.mozilla.nsIDOMEvent; |
|---|
| 7 |
import dwt.internal.mozilla.nsStringAPI; |
|---|
| 8 |
import dwt.internal.mozilla.nsIDOMAbstractView; |
|---|
| 9 |
|
|---|
| 10 |
const char[] NS_IDOMUIEVENT_IID_STR = "a6cf90c3-15b3-11d2-932e-00805f8add32"; |
|---|
| 11 |
|
|---|
| 12 |
const nsIID NS_IDOMUIEVENT_IID= |
|---|
| 13 |
{0xa6cf90c3, 0x15b3, 0x11d2, |
|---|
| 14 |
[ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]}; |
|---|
| 15 |
|
|---|
| 16 |
interface nsIDOMUIEvent : nsIDOMEvent { |
|---|
| 17 |
|
|---|
| 18 |
static const char[] IID_STR = NS_IDOMUIEVENT_IID_STR; |
|---|
| 19 |
static const nsIID IID = NS_IDOMUIEVENT_IID; |
|---|
| 20 |
|
|---|
| 21 |
extern(System): |
|---|
| 22 |
nsresult GetView(nsIDOMAbstractView *aView); |
|---|
| 23 |
nsresult GetDetail(PRInt32 *aDetail); |
|---|
| 24 |
nsresult InitUIEvent(nsAString * typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView viewArg, PRInt32 detailArg); |
|---|
| 25 |
|
|---|
| 26 |
} |
|---|