From: <kr_...@us...> - 2003-03-26 15:39:53
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv16051/port/src/include Modified Files: Window.h Log Message: This commit implements instances for Able type class for all kinds of windows and controls. Index: Window.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/Window.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Window.h 10 Feb 2003 22:42:11 -0000 1.3 --- Window.h 26 Mar 2003 15:39:49 -0000 1.4 *************** *** 58,61 **** --- 58,63 ---- void osMoveResizeControl(WindowHandle ctrl, int x, int y, int w, int h); void osGetControlRect(WindowHandle ctrl, int *res); + void osSetControlEnabled(WindowHandle ctrl, BOOL enabled); + BOOL osGetControlEnabled(WindowHandle ctrl); void osInvalidateWindow(WindowHandle window); void osInvalidateWindowRect(WindowHandle window, int left, int top, int right, int bottom); *************** *** 78,81 **** --- 80,85 ---- BOOL osDismissWindow(WindowHandle window); void osDestroyWindow(WindowHandle window); + void osSetWindowEnabled(WindowHandle ctrl, BOOL enabled); + BOOL osGetWindowEnabled(WindowHandle ctrl); CanvasHandle osGetWindowCanvas(WindowHandle window); void osReleaseWindowCanvas(WindowHandle window,CanvasHandle canvas); |