Changeset 2835 for trunk/include/win/commctrl.h
- Timestamp:
- Feb 20, 2000, 7:29:58 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r2805 r2835 1 /* $Id: commctrl.h,v 1.2 1 2000-02-16 17:20:28cbratschi Exp $ */1 /* $Id: commctrl.h,v 1.22 2000-02-20 18:26:07 cbratschi Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 120 120 121 121 #define I_IMAGECALLBACK (-1) 122 #define I_IMAGENONE (-2) 122 123 #define I_INDENTCALLBACK (-1) 123 124 #define I_CHILDRENCALLBACK (-1) … … 339 340 #define UDM_SETRANGE32 (WM_USER+111) 340 341 #define UDM_GETRANGE32 (WM_USER+112) 342 #define UDM_SETPOS32 (WM_USER+113) 343 #define UDM_GETPOS32 (WM_USER+114) 341 344 342 345 HWND WINAPI CreateUpDownControl (DWORD, INT, INT, INT, INT, … … 880 883 #define TBSTATE_MARKED 0x80 881 884 882 #define TBSTYLE_BUTTON 0x00 883 #define TBSTYLE_SEP 0x01 884 #define TBSTYLE_CHECK 0x02 885 #define TBSTYLE_GROUP 0x04 885 #define TBSTYLE_BUTTON 0x00 //obsolete 886 #define TBSTYLE_SEP 0x01 //obsolete 887 #define TBSTYLE_CHECK 0x02 //obsolete 888 #define TBSTYLE_GROUP 0x04 //obsolete 886 889 #define TBSTYLE_CHECKGROUP (TBSTYLE_GROUP | TBSTYLE_CHECK) 887 #define TBSTYLE_DROPDOWN 0x08 888 890 #define TBSTYLE_DROPDOWN 0x08 //obsolete 891 #define TBSTYLE_AUTOSIZE 0x0010 //obsolete 892 #define TBSTYLE_NOPREFIX 0x0020 //obsolete 889 893 #define TBSTYLE_TOOLTIPS 0x0100 890 894 #define TBSTYLE_WRAPABLE 0x0200 … … 893 897 #define TBSTYLE_LIST 0x1000 894 898 #define TBSTYLE_CUSTOMERASE 0x2000 899 #define TBSTYLE_REGISTERDROP 0x4000 900 #define TBSTYLE_TRANSPARENT 0x8000 901 #define TBSTYLE_EX_DRAWDDARROWS 0x00000001 902 #define TBSTYLE_EX_MIXEDBUTTONS 0x00000008 903 #define TBSTYLE_EX_HIDECLIPPEDBUTTONS 0x00000010 904 905 #define BTNS_BUTTON TBSTYLE_BUTTON // 0x0000 906 #define BTNS_SEP TBSTYLE_SEP // 0x0001 907 #define BTNS_CHECK TBSTYLE_CHECK // 0x0002 908 #define BTNS_GROUP TBSTYLE_GROUP // 0x0004 909 #define BTNS_CHECKGROUP TBSTYLE_CHECKGROUP // (TBSTYLE_GROUP | TBSTYLE_CHECK) 910 #define BTNS_DROPDOWN TBSTYLE_DROPDOWN // 0x0008 911 #define BTNS_AUTOSIZE TBSTYLE_AUTOSIZE // 0x0010 912 #define BTNS_NOPREFIX TBSTYLE_NOPREFIX // 0x0020 913 #define BTNS_SHOWTEXT 0x0040 914 #define BTNS_WHOLEDROPDOWN 0x0080 895 915 896 916 #define TBIF_IMAGE 0x00000001 … … 1240 1260 #define TTS_ALWAYSTIP 0x01 1241 1261 #define TTS_NOPREFIX 0x02 1262 #define TTS_NOANIMATE 0x10 1263 #define TTS_NOFADE 0x20 1264 #define TTS_BALLOON 0x40 1242 1265 1243 1266 #define TTF_IDISHWND 0x0001 … … 1443 1466 #define RBBS_GRIPPERALWAYS 0x00000080 1444 1467 #define RBBS_NOGRIPPER 0x00000100 1468 #define RBBS_USECHEVRON 0x00000200 1469 #define RBBS_HIDETITLE 0x00000400 1445 1470 1446 1471 #define RBNM_ID 0x00000001 … … 1491 1516 #define RB_GETPALETTE (WM_USER+38) 1492 1517 #define RB_MOVEBAND (WM_USER+39) 1518 #define RB_PUSHCHEVRON (WM_USER + 43) 1493 1519 #define RB_GETDROPTARGET CCM_GETDROPTARGET 1494 1520 #define RB_SETCOLORSCHEME CCM_SETCOLORSCHEME … … 1944 1970 #define TVC_BYKEYBOARD 0x02 1945 1971 1972 #define TVNRET_DEFAULT 0 1973 #define TVNRET_SKIPOLD 1 1974 #define TVNRET_SKIPNEW 2 1946 1975 1947 1976 typedef struct _TREEITEM *HTREEITEM; … … 2527 2556 #define LVN_FIRST (0U-100U) 2528 2557 #define LVN_LAST (0U-199U) 2558 2559 // Property sheet reserved (0U-200U) - (0U-299U) - see prsht.h 2560 2529 2561 #define LVN_ITEMCHANGING (LVN_FIRST-0) 2530 2562 #define LVN_ITEMCHANGED (LVN_FIRST-1)
Note:
See TracChangeset
for help on using the changeset viewer.