From: <kr_...@us...> - 2003-08-25 04:39:20
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv6171/port/src/include Modified Files: HsPort.h Added Files: Notebook.h Log Message: Implementation for Notebook control --- NEW FILE: Notebook.h --- #ifndef NOTEBOOK_H #define NOTEBOOK_H #include "Types.h" WindowHandle osCreateNotebook(WindowHandle form); void osGetNotebookReqSize(WindowHandle notebook, int *res); void osSetNotebookLabelsPosition(WindowHandle notebook, PositionType position); PositionType osGetNotebookLabelsPosition(WindowHandle notebook); int osGetNotebookSelection(WindowHandle notebook); void osSetNotebookSelection(WindowHandle notebook, int index); WindowHandle osInsertNotebookPage(WindowHandle notebook, int pos); char *osGetNotebookPageTitle(WindowHandle window); void osSetNotebookPageTitle(WindowHandle window, char *txt); int osGetNotebookPagePos(WindowHandle handle); void osDestroyNotebookPage(WindowHandle window); void osGetNotebookPageSize(WindowHandle window, int *res); #endif Index: HsPort.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/HsPort.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HsPort.h 16 Jul 2003 22:11:06 -0000 1.6 --- HsPort.h 24 Aug 2003 13:57:34 -0000 1.7 *************** *** 21,22 **** --- 21,23 ---- #include "port/Message.h" #include "port/ConfigKey.h" + #include "port/Notebook.h" |