|
Revision 327:b0d7eb5bd76c, 0.7 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.nsIChromeEventHandler; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
import dwt.internal.mozilla.nsISupports; |
|---|
| 6 |
|
|---|
| 7 |
import dwt.internal.mozilla.nsIDOMEvent; |
|---|
| 8 |
|
|---|
| 9 |
const char[] NS_ICHROMEEVENTHANDLER_IID_STR = "7bc08970-9e6c-11d3-afb2-00a024ffc08c"; |
|---|
| 10 |
|
|---|
| 11 |
const nsIID NS_ICHROMEEVENTHANDLER_IID= |
|---|
| 12 |
{0x7bc08970, 0x9e6c, 0x11d3, |
|---|
| 13 |
[ 0xaf, 0xb2, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]}; |
|---|
| 14 |
|
|---|
| 15 |
interface nsIChromeEventHandler : nsISupports { |
|---|
| 16 |
|
|---|
| 17 |
static const char[] IID_STR = NS_ICHROMEEVENTHANDLER_IID_STR; |
|---|
| 18 |
static const nsIID IID = NS_ICHROMEEVENTHANDLER_IID; |
|---|
| 19 |
|
|---|
| 20 |
extern(System): |
|---|
| 21 |
nsresult HandleChromeEvent(nsPresContext * aPresContext, nsEvent * aEvent, nsIDOMEvent *aDOMEvent, PRUint32 aFlags, nsEventStatus *aStatus); |
|---|
| 22 |
|
|---|
| 23 |
} |
|---|