Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv14422/src/include
Modified Files:
StatusBar.h Types.h
Log Message:
Added support for status bar indicators. (Linux only)
Index: StatusBar.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/StatusBar.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** StatusBar.h 16 Nov 2003 09:02:00 -0000 1.3
--- StatusBar.h 16 Nov 2003 13:25:21 -0000 1.4
***************
*** 13,15 ****
--- 13,21 ----
void osSetStatusBarTitle(char *title);
+
+ IndicatorHandle osCreateIndicator(int index);
+ void osDestroyIndicator(IndicatorHandle indicator);
+ char *osGetIndicatorTitle(IndicatorHandle indicator);
+ void osSetIndicatorTitle(IndicatorHandle indicator, char *title);
+
#endif
Index: Types.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Types.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** Types.h 7 Oct 2003 19:44:10 -0000 1.18
--- Types.h 16 Nov 2003 13:25:21 -0000 1.19
***************
*** 110,113 ****
--- 110,115 ----
typedef GtkWidget *ToolHandle;
+ typedef GtkWidget *IndicatorHandle;
+
typedef struct
{
|