00001 00018 /* 00019 * $Id: toolbar.h,v 1.2.12.4 2006/06/05 08:51:21 xwyan Exp $ 00020 * 00021 * MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks, 00022 * pSOS, ThreadX, NuCleus, OSE, and Win32 version 1.6.x 00023 * Copyright (C) 2002-2006 Feynman Software. 00024 * Copyright (C) 1999-2002 Wei Yongming. 00025 */ 00026 00027 #ifndef _MGUI_CTRL_TOOLBAR_H 00028 #define _MGUI_CTRL_TOOLBAR_H 00029 00030 #ifdef __cplusplus 00031 extern "C" { 00032 #endif /* __cplusplus */ 00033 00063 #define CTRL_TOOLBAR ("toolbar") 00064 00066 typedef struct _TOOLBARITEMINFO 00067 { 00069 int insPos; 00070 00076 int id; 00077 00079 char NBmpPath[MAX_PATH+10]; 00081 char HBmpPath[MAX_PATH+10]; 00083 char DBmpPath[MAX_PATH+10]; 00084 00086 DWORD dwAddData; 00087 } TOOLBARITEMINFO; 00092 typedef TOOLBARITEMINFO* PTOOLBARITEMINFO; 00093 00114 #define TBM_ADDITEM 0xFE00 00115 00116 #define TBM_MSGMAX 0xFE10 00117 00124 #ifdef __cplusplus 00125 } 00126 #endif /* __cplusplus */ 00127 00128 #endif /* _MGUI_CTRL_TOOLBAR_H */ 00129
1.4.2