Changeset 6727 for trunk/include/win/commctrl.h
- Timestamp:
- Sep 16, 2001, 11:04:07 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r5774 r6727 1078 1078 #define TBNRF_ENDCUSTOMIZE 0x00000002 1079 1079 1080 /* Return values from TBN_DROPDOWN */ 1081 #define TBDDRET_DEFAULT 0 1082 #define TBDDRET_NODEFAULT 1 1083 #define TBDDRET_TREATPRESSED 2 1084 1085 typedef struct _NMTBCUSTOMDRAW 1086 { 1087 NMCUSTOMDRAW nmcd; 1088 HBRUSH hbrMonoDither; 1089 HBRUSH hbrLines; 1090 HPEN hpenLines; 1091 COLORREF clrText; 1092 COLORREF clrMark; 1093 COLORREF clrTextHighlight; 1094 COLORREF clrBtnFace; 1095 COLORREF clrBtnHighlight; 1096 COLORREF clrHighlightHotTrack; 1097 RECT rcText; 1098 int nStringBkMode; 1099 int nHLStringBkMode; 1100 } NMTBCUSTOMDRAW, *LPNMTBCUSTOMDRAW; 1101 1080 1102 /* This is just for old CreateToolbar. */ 1081 1103 /* Don't use it in new programs. */ … … 1216 1238 #define NMTBGETINFOTIP WINELIB_NAME_AW(NMTBGETINFOFTIP) 1217 1239 #define LPNMTBGETINFOTIP WINELIB_NAME_AW(LPNMTBGETINFOTIP) 1240 1241 typedef struct 1242 { 1243 NMHDR hdr; 1244 DWORD dwMask; 1245 int idCommand; 1246 DWORD lParam; 1247 int iImage; 1248 LPSTR pszText; 1249 int cchText; 1250 } NMTBDISPINFOA, *LPNMTBDISPINFOA; 1251 1252 typedef struct 1253 { 1254 NMHDR hdr; 1255 DWORD dwMask; 1256 int idCommand; 1257 DWORD lParam; 1258 int iImage; 1259 LPWSTR pszText; 1260 int cchText; 1261 } NMTBDISPINFOW, *LPNMTBDISPINFOW; 1262 1263 #define NMTBDISPINFO WINELIB_NAME_AW(NMTBDISPINFO) 1264 #define LPNMTBDISPINFO WINELIB_NAME_AW(LPNMTBDISPINFO) 1265 1266 /* contents of dwMask in the NMTBDISPINFO structure */ 1267 #define TBNF_IMAGE 0x00000001 1268 #define TBNF_TEXT 0x00000002 1269 #define TBNF_DI_SETITEM 0x10000000 1218 1270 1219 1271 typedef struct tagNMTOOLBARA
Note:
See TracChangeset
for help on using the changeset viewer.