root/lang/pascal/Interfaces/nsTooltipListener.pas @ 4249

Revision 4249, 468 bytes (checked in by plus7, 5 years ago)

initial import

  • Property svn:executable set to *
Line 
1unit nsTooltipListener;
2
3interface
4
5uses nsTypes, nsXPCOM;
6
7const
8  NS_ITOOLTIPLISTENER_IID: TGUID = '{44b78386-1dd2-11b2-9ad2-e4eee2ca1916}';
9
10type
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
18implementation
19
20end.
Note: See TracBrowser for help on using the browser.