From: <kr_...@us...> - 2003-11-23 10:23:18
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv3738/src/include Modified Files: HsPort.h Added Files: TrackBar.h Log Message: Add implementation for TrackBar control --- NEW FILE: TrackBar.h --- #ifndef UPDOWN_H #define UPDOWN_H #include "Types.h" WindowHandle osCreateHorzTrackBar(WindowHandle form); WindowHandle osCreateVertTrackBar(WindowHandle form); void osGetTrackBarReqSize(WindowHandle trackBar, int *res); #endif Index: HsPort.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/HsPort.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** HsPort.h 15 Nov 2003 10:31:50 -0000 1.9 --- HsPort.h 23 Nov 2003 10:23:14 -0000 1.10 *************** *** 13,16 **** --- 13,17 ---- #include "port/ProgressBar.h" #include "port/Slider.h" + #include "port/TrackBar.h" #include "port/Menu.h" #include "port/ToolBar.h" |