|
Revision 4249, 468 bytes
(checked in by plus7, 5 years ago)
|
|
initial import
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | unit nsTooltipListener;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | uses nsTypes, nsXPCOM;
|
|---|
| 6 |
|
|---|
| 7 | const
|
|---|
| 8 | NS_ITOOLTIPLISTENER_IID: TGUID = '{44b78386-1dd2-11b2-9ad2-e4eee2ca1916}';
|
|---|
| 9 |
|
|---|
| 10 | type
|
|---|
| 11 | nsITooltipListener = interface;
|
|---|
| 12 | nsITooltipListener = interface(nsISupports)
|
|---|
| 13 | ['{44b78386-1dd2-11b2-9ad2-e4eee2ca1916}']
|
|---|
| 14 | procedure OnShowTooltip(aXCoords: PRInt32; aYCoords: PRInt32; const aTipText: PWideChar); safecall;
|
|---|
| 15 | procedure OnHideTooltip(); safecall;
|
|---|
| 16 | end;
|
|---|
| 17 |
|
|---|
| 18 | implementation
|
|---|
| 19 |
|
|---|
| 20 | end.
|
|---|