Ignore:
Timestamp:
Sep 16, 2001, 11:04:07 AM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/commctrl.h

    r5774 r6727  
    10781078#define    TBNRF_ENDCUSTOMIZE   0x00000002
    10791079
     1080/* Return values from TBN_DROPDOWN */
     1081#define TBDDRET_DEFAULT  0
     1082#define TBDDRET_NODEFAULT  1
     1083#define TBDDRET_TREATPRESSED  2
     1084
     1085typedef 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
    10801102/* This is just for old CreateToolbar. */
    10811103/* Don't use it in new programs. */
     
    12161238#define NMTBGETINFOTIP   WINELIB_NAME_AW(NMTBGETINFOFTIP)
    12171239#define LPNMTBGETINFOTIP WINELIB_NAME_AW(LPNMTBGETINFOTIP)
     1240
     1241typedef 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
     1252typedef 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
    12181270
    12191271typedef struct tagNMTOOLBARA
Note: See TracChangeset for help on using the changeset viewer.