1 module org.eclipse.swt.internal.mozilla.nsITooltipListener; 2 3 import java.lang.all; 4 5 import org.eclipse.swt.internal.mozilla.Common; 6 import org.eclipse.swt.internal.mozilla.nsID; 7 import org.eclipse.swt.internal.mozilla.nsISupports; 8 9 const char[] NS_ITOOLTIPLISTENER_IID_STR = "44b78386-1dd2-11b2-9ad2-e4eee2ca1916"; 10 11 const nsIID NS_ITOOLTIPLISTENER_IID= 12 {0x44b78386, 0x1dd2, 0x11b2, 13 [ 0x9a, 0xd2, 0xe4, 0xee, 0xe2, 0xca, 0x19, 0x16 ]}; 14 15 interface nsITooltipListener : nsISupports { 16 17 static const char[] IID_STR = NS_ITOOLTIPLISTENER_IID_STR; 18 static const nsIID IID = NS_ITOOLTIPLISTENER_IID; 19 20 extern(System): 21 nsresult OnShowTooltip(PRInt32 aXCoords, PRInt32 aYCoords, PRUnichar *aTipText); 22 nsresult OnHideTooltip(); 23 24 } 25