Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv31265/port/src/include
Modified Files:
Window.h
Log Message:
Added implementation for tooltips
Index: Window.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Window.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Window.h 26 Mar 2003 15:39:49 -0000 1.4
--- Window.h 26 Mar 2003 19:20:22 -0000 1.5
***************
*** 60,63 ****
--- 60,66 ----
void osSetControlEnabled(WindowHandle ctrl, BOOL enabled);
BOOL osGetControlEnabled(WindowHandle ctrl);
+ void osSetControlTip(WindowHandle ctrl, char *text);
+ char *osGetControlTip(WindowHandle ctrl);
+
void osInvalidateWindow(WindowHandle window);
void osInvalidateWindowRect(WindowHandle window, int left, int top, int right, int bottom);
|