00001 00017 #ifndef INC_MI32_XTABPAGE_H 00018 #define INC_MI32_XTABPAGE_H 00019 00020 #ifndef INC_MI32_STDDEFNS_H 00021 #include <mi32/stddefns.h> 00022 #endif 00023 00024 /*----------------------------------------------------------------------------*/ 00025 /* TABPAGE definitions */ 00026 /*----------------------------------------------------------------------------*/ 00027 00028 typedef void (*TABPAGEFUNC) (Widget, int, void*); 00029 00030 struct MxTABPAGEITEM { 00031 char *label; 00032 UINT32 flags; 00033 TABPAGEFUNC create; 00034 TABPAGEFUNC activate; 00035 TABPAGEFUNC deactivate; 00036 TABPAGEFUNC destroy; 00037 void *pageUserData; 00038 }; 00039 00040 #define MxTABPAGE_DISABLED 0x0001 00041 #define MxTABPAGE_FreeLabel 0x0002 00042 #define MxTABPAGE_LabelUnicode 0x0004 00043 00044 #endif // INC_MI32_XTABPAGE_H
1.6.1