root/dwt/internal/mozilla/nsITooltipListener.d

Revision 327:b0d7eb5bd76c, 0.6 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.nsITooltipListener;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 const char[] NS_ITOOLTIPLISTENER_IID_STR = "44b78386-1dd2-11b2-9ad2-e4eee2ca1916";
8
9 const nsIID NS_ITOOLTIPLISTENER_IID=
10   {0x44b78386, 0x1dd2, 0x11b2,
11     [ 0x9a, 0xd2, 0xe4, 0xee, 0xe2, 0xca, 0x19, 0x16 ]};
12
13 interface nsITooltipListener : nsISupports {
14
15   static const char[] IID_STR = NS_ITOOLTIPLISTENER_IID_STR;
16   static const nsIID IID = NS_ITOOLTIPLISTENER_IID;
17
18 extern(System):
19   nsresult OnShowTooltip(PRInt32 aXCoords, PRInt32 aYCoords, PRUnichar *aTipText);
20   nsresult OnHideTooltip();
21
22 }
Note: See TracBrowser for help on using the browser.