commctrl.h
上传用户:whjcdz88
上传日期:2007-01-02
资源大小:350k
文件大小:181k
源码类别:

工具条

开发平台:

Visual C++

  1. /*****************************************************************************
  2. *                                                                             * 
  3. * commctrl.h - - Interface for the Windows Common Controls                    * 
  4. *                                                                             * 
  5. * Version 1.2                                                                 * 
  6. *                                                                             * 
  7. * Copyright (c) 1991-1997, Microsoft Corp.      All rights reserved.          * 
  8. *                                                                             * 
  9. *****************************************************************************/ 
  10.  
  11.  
  12. #ifndef _INC_COMMCTRL 
  13. #define _INC_COMMCTRL 
  14.  
  15. #ifndef _WIN32_IE 
  16. #define _WIN32_IE 0x0400 
  17. #else 
  18. #if (_WIN32_IE < 0x0400) && defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0500) 
  19. #error _WIN32_IE setting conflicts with _WIN32_WINNT setting 
  20. #endif 
  21. #endif 
  22.  
  23. #ifndef _HRESULT_DEFINED 
  24. #define _HRESULT_DEFINED 
  25. typedef LONG HRESULT; 
  26. #endif // _HRESULT_DEFINED 
  27.  
  28. #ifndef NOUSER 
  29.  
  30.  
  31. // 
  32. // Define API decoration for direct importing of DLL references. 
  33. // 
  34. #ifndef WINCOMMCTRLAPI 
  35. #if !defined(_COMCTL32_) && defined(_WIN32) 
  36. #define WINCOMMCTRLAPI DECLSPEC_IMPORT 
  37. #else 
  38. #define WINCOMMCTRLAPI 
  39. #endif 
  40. #endif // WINCOMMCTRLAPI 
  41.  
  42. // 
  43. // For compilers that don't support nameless unions 
  44. // 
  45. #ifndef DUMMYUNIONNAME 
  46. #ifdef NONAMELESSUNION 
  47. #define DUMMYUNIONNAME          u 
  48. #define DUMMYUNIONNAME2         u2 
  49. #define DUMMYUNIONNAME3         u3 
  50. #define DUMMYUNIONNAME4         u4 
  51. #define DUMMYUNIONNAME5         u5 
  52. #else 
  53. #define DUMMYUNIONNAME 
  54. #define DUMMYUNIONNAME2 
  55. #define DUMMYUNIONNAME3 
  56. #define DUMMYUNIONNAME4 
  57. #define DUMMYUNIONNAME5 
  58. #endif 
  59. #endif // DUMMYUNIONNAME 
  60.  
  61. #ifdef _WIN32 
  62. #include <pshpack1.h> 
  63. #endif 
  64.  
  65. #ifdef __cplusplus 
  66. extern "C" { 
  67. #endif 
  68.  
  69. // 
  70. // Users of this header may define any number of these constants to avoid 
  71. // the definitions of each functional group. 
  72. // 
  73. //    NOTOOLBAR    Customizable bitmap-button toolbar control. 
  74. //    NOUPDOWN     Up and Down arrow increment/decrement control. 
  75. //    NOSTATUSBAR  Status bar control. 
  76. //    NOMENUHELP   APIs to help manage menus, especially with a status bar. 
  77. //    NOTRACKBAR   Customizable column-width tracking control. 
  78. //    NODRAGLIST   APIs to make a listbox source and sink drag&drop actions. 
  79. //    NOPROGRESS   Progress gas gauge. 
  80. //    NOHOTKEY     HotKey control 
  81. //    NOHEADER     Header bar control. 
  82. //    NOIMAGEAPIS  ImageList apis. 
  83. //    NOLISTVIEW   ListView control. 
  84. //    NOTREEVIEW   TreeView control. 
  85. //    NOTABCONTROL Tab control. 
  86. //    NOANIMATE    Animate control. 
  87. // 
  88. //============================================================================= 
  89.  
  90. #include <prsht.h> 
  91.  
  92. #ifndef SNDMSG 
  93. #ifdef __cplusplus 
  94. #ifndef _MAC 
  95. #define SNDMSG ::SendMessage 
  96. #else 
  97. #define SNDMSG ::AfxSendMessage 
  98. #endif 
  99. #else 
  100. #ifndef _MAC 
  101. #define SNDMSG SendMessage 
  102. #else 
  103. #define SNDMSG AfxSendMessage 
  104. #endif //_MAC 
  105. #endif 
  106. #endif // ifndef SNDMSG 
  107.  
  108. #ifdef _MAC 
  109. #ifndef RC_INVOKED 
  110. #ifndef _WLM_NOFORCE_LIBS 
  111.  
  112. #ifndef _WLMDLL 
  113.     #ifdef _DEBUG 
  114.         #pragma comment(lib, "comctld.lib") 
  115.     #else 
  116.         #pragma comment(lib, "comctl.lib") 
  117.     #endif 
  118.     #pragma comment(linker, "/macres:comctl.rsc") 
  119.     #else 
  120.     #ifdef _DEBUG 
  121.         #pragma comment(lib, "msvcctld.lib") 
  122.     #else 
  123.         #pragma comment(lib, "msvcctl.lib") 
  124.     #endif 
  125. #endif // _WLMDLL 
  126.  
  127. #endif // _WLM_NOFORCE_LIBS 
  128. #endif // RC_INVOKED 
  129. #endif //_MAC 
  130.  
  131. WINCOMMCTRLAPI void WINAPI InitCommonControls(void); 
  132.  
  133. #if (_WIN32_IE >= 0x0300) 
  134. typedef struct tagINITCOMMONCONTROLSEX { 
  135.     DWORD dwSize;             // size of this structure 
  136.     DWORD dwICC;              // flags indicating which classes to be initialized 
  137. } INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX; 
  138. #define ICC_LISTVIEW_CLASSES 0x00000001 // listview, header 
  139. #define ICC_TREEVIEW_CLASSES 0x00000002 // treeview, tooltips 
  140. #define ICC_BAR_CLASSES      0x00000004 // toolbar, statusbar, trackbar, tooltips 
  141. #define ICC_TAB_CLASSES      0x00000008 // tab, tooltips 
  142. #define ICC_UPDOWN_CLASS     0x00000010 // updown 
  143. #define ICC_PROGRESS_CLASS   0x00000020 // progress 
  144. #define ICC_HOTKEY_CLASS     0x00000040 // hotkey 
  145. #define ICC_ANIMATE_CLASS    0x00000080 // animate 
  146. #define ICC_WIN95_CLASSES    0x000000FF 
  147. #define ICC_DATE_CLASSES     0x00000100 // month picker, date picker, time picker, updown 
  148. #define ICC_USEREX_CLASSES   0x00000200 // comboex 
  149. #define ICC_COOL_CLASSES     0x00000400 // rebar (coolbar) control 
  150. #if (_WIN32_IE >= 0x0400) 
  151. #define ICC_INTERNET_CLASSES 0x00000800 
  152. #define ICC_PAGESCROLLER_CLASS 0x00001000   // page scroller 
  153. #endif 
  154. WINCOMMCTRLAPI BOOL WINAPI InitCommonControlsEx(LPINITCOMMONCONTROLSEX); 
  155. #endif      // _WIN32_IE >= 0x0300 
  156.  
  157. #define ODT_HEADER              100 
  158. #define ODT_TAB                 101 
  159. #define ODT_LISTVIEW            102 
  160.  
  161.  
  162. //====== Ranges for control message IDs ======================================= 
  163.  
  164. #define LVM_FIRST               0x1000      // ListView messages 
  165. #define TV_FIRST                0x1100      // TreeView messages 
  166. #define HDM_FIRST               0x1200      // Header messages 
  167. #define TCM_FIRST               0x1300      // Tab control messages 
  168.  
  169. #if (_WIN32_IE >= 0x0400) 
  170. #define PGM_FIRST               0x1400      // Pager control messages 
  171. #define CCM_FIRST               0x2000      // Common control shared messages 
  172.  
  173.  
  174. #define CCM_SETBKCOLOR          (CCM_FIRST + 1) // lParam is bkColor 
  175.  
  176. typedef struct tagCOLORSCHEME { 
  177.    DWORD            dwSize; 
  178.    COLORREF         clrBtnHighlight;       // highlight color 
  179.    COLORREF         clrBtnShadow;          // shadow color 
  180. } COLORSCHEME, *LPCOLORSCHEME; 
  181.  
  182. #define CCM_SETCOLORSCHEME      (CCM_FIRST + 2) // lParam is color scheme 
  183.  
  184. #endif 
  185.  
  186. //====== WM_NOTIFY Macros ===================================================== 
  187.  
  188. #define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) 
  189.     (fn)((hwnd), (int)(wParam), (NMHDR FAR*)(lParam)) 
  190. #define FORWARD_WM_NOTIFY(hwnd, idFrom, pnmhdr, fn) 
  191.     (LRESULT)(fn)((hwnd), WM_NOTIFY, (WPARAM)(int)(idFrom), (LPARAM)(NMHDR FAR*)(pnmhdr)) 
  192.  
  193.  
  194. //====== Generic WM_NOTIFY notification codes ================================= 
  195.  
  196. #define NM_OUTOFMEMORY          (NM_FIRST-1) 
  197. #define NM_CLICK                (NM_FIRST-2) 
  198. #define NM_DBLCLK               (NM_FIRST-3) 
  199. #define NM_RETURN               (NM_FIRST-4) 
  200. #define NM_RCLICK               (NM_FIRST-5) 
  201. #define NM_RDBLCLK              (NM_FIRST-6) 
  202. #define NM_SETFOCUS             (NM_FIRST-7) 
  203. #define NM_KILLFOCUS            (NM_FIRST-8) 
  204. #if (_WIN32_IE >= 0x0300) 
  205. #define NM_CUSTOMDRAW           (NM_FIRST-12) 
  206. #define NM_HOVER                (NM_FIRST-13) 
  207. #endif 
  208. #if (_WIN32_IE >= 0x0400) 
  209. #define NM_NCHITTEST            (NM_FIRST-14) // uses NMMOUSE struct 
  210. #define NM_KEYDOWN              (NM_FIRST-15) 
  211. #define NM_RELEASEDCAPTURE      (NM_FIRST-16) 
  212. #define NM_SETCURSOR            (NM_FIRST-17)  // uses NMMOUSE struct 
  213. #endif 
  214.  
  215. #if (_WIN32_IE >= 0x0400) 
  216. //====== Generic WM_NOTIFY notification structures ============================ 
  217.  
  218. typedef struct tagNMMOUSE { 
  219.     NMHDR   hdr; 
  220.     DWORD   dwItemSpec; 
  221.     DWORD   dwItemData; 
  222.     POINT   pt; 
  223.     DWORD   dwHitInfo; // any specifics about where on the item or control the mouse is 
  224. } NMMOUSE, FAR* LPNMMOUSE; 
  225.  
  226. typedef NMMOUSE NMCLICK; 
  227. typedef LPNMMOUSE LPNMCLICK; 
  228.  
  229. // Generic structure to request an object of a specific type. 
  230.  
  231. typedef struct tagNMOBJECTNOTIFY { 
  232.     NMHDR   hdr; 
  233.     int     iItem; 
  234. #ifdef __IID_DEFINED__ 
  235.     const IID *piid; 
  236. #else 
  237.     const void *piid; 
  238. #endif 
  239.     void *pObject; 
  240.     HRESULT hResult; 
  241.     DWORD dwFlags;    // control specific flags (hints as to where in iItem it hit) 
  242. } NMOBJECTNOTIFY, *LPNMOBJECTNOTIFY; 
  243.  
  244. // Generic structure for a key 
  245.  
  246. typedef struct tagNMKEY 
  247.     NMHDR hdr; 
  248.     WORD wVKey; 
  249.     UINT flags; 
  250. } NMKEY, FAR *LPNMKEY; 
  251.  
  252. #endif           // _WIN32_IE >= 0x0400 
  253.  
  254. //====== WM_NOTIFY codes (NMHDR.code values) ================================== 
  255.  
  256. #define NM_FIRST                (0U-  0U)       // generic to all controls 
  257. #define NM_LAST                 (0U- 99U) 
  258.  
  259. #define LVN_FIRST               (0U-100U)       // listview 
  260. #define LVN_LAST                (0U-199U) 
  261.  
  262. #define HDN_FIRST               (0U-300U)       // header 
  263. #define HDN_LAST                (0U-399U) 
  264.  
  265. #define TVN_FIRST               (0U-400U)       // treeview 
  266. #define TVN_LAST                (0U-499U) 
  267.  
  268. #define TTN_FIRST               (0U-520U)       // tooltips 
  269. #define TTN_LAST                (0U-549U) 
  270.  
  271. #define TCN_FIRST               (0U-550U)       // tab control 
  272. #define TCN_LAST                (0U-580U) 
  273.  
  274. // Shell reserved               (0U-580U) -  (0U-589U) 
  275.  
  276. #define CDN_FIRST               (0U-601U)       // common dialog (new) 
  277. #define CDN_LAST                (0U-699U) 
  278.  
  279. #define TBN_FIRST               (0U-700U)       // toolbar 
  280. #define TBN_LAST                (0U-720U) 
  281.  
  282. #define UDN_FIRST               (0U-721)        // updown 
  283. #define UDN_LAST                (0U-740) 
  284. #if (_WIN32_IE >= 0x0300) 
  285. #define MCN_FIRST               (0U-750U)       // monthcal 
  286. #define MCN_LAST                (0U-759U) 
  287.  
  288. #define DTN_FIRST               (0U-760U)       // datetimepick 
  289. #define DTN_LAST                (0U-799U) 
  290.  
  291. #define CBEN_FIRST              (0U-800U)       // combo box ex 
  292. #define CBEN_LAST               (0U-830U) 
  293.  
  294. #define RBN_FIRST               (0U-831U)       // rebar 
  295. #define RBN_LAST                (0U-859U) 
  296. #endif 
  297.  
  298. #if (_WIN32_IE >= 0x0400) 
  299. #define IPN_FIRST               (0U-860U)       // internet address 
  300. #define IPN_LAST                (0U-879U)       // internet address 
  301.  
  302. #define SBN_FIRST               (0U-880U)       // status bar 
  303. #define SBN_LAST                (0U-899U) 
  304.  
  305. #define PGN_FIRST               (0U-900U)       // Pager Control 
  306. #define PGN_LAST                (0U-950U) 
  307.  
  308. #endif 
  309.  
  310. #define MSGF_COMMCTRL_BEGINDRAG     0x4200 
  311. #define MSGF_COMMCTRL_SIZEHEADER    0x4201 
  312. #define MSGF_COMMCTRL_DRAGSELECT    0x4202 
  313. #define MSGF_COMMCTRL_TOOLBARCUST   0x4203 
  314.  
  315. #if (_WIN32_IE >= 0x0300) 
  316. //==================== CUSTOM DRAW ========================================== 
  317.  
  318.  
  319. // custom draw return flags 
  320. // values under 0x00010000 are reserved for global custom draw values. 
  321. // above that are for specific controls 
  322. #define CDRF_DODEFAULT          0x00000000 
  323. #define CDRF_NEWFONT            0x00000002 
  324. #define CDRF_SKIPDEFAULT        0x00000004 
  325.  
  326.  
  327. #define CDRF_NOTIFYPOSTPAINT    0x00000010 
  328. #define CDRF_NOTIFYITEMDRAW     0x00000020 
  329. #if (_WIN32_IE >= 0x0400) 
  330. #define CDRF_NOTIFYSUBITEMDRAW  0x00000020  // flags are the same, we can distinguish by context 
  331. #endif 
  332. #define CDRF_NOTIFYPOSTERASE    0x00000040 
  333.  
  334. // drawstage flags 
  335. // values under 0x00010000 are reserved for global custom draw values. 
  336. // above that are for specific controls 
  337. #define CDDS_PREPAINT           0x00000001 
  338. #define CDDS_POSTPAINT          0x00000002 
  339. #define CDDS_PREERASE           0x00000003 
  340. #define CDDS_POSTERASE          0x00000004 
  341. // the 0x000010000 bit means it's individual item specific 
  342. #define CDDS_ITEM               0x00010000 
  343. #define CDDS_ITEMPREPAINT       (CDDS_ITEM | CDDS_PREPAINT) 
  344. #define CDDS_ITEMPOSTPAINT      (CDDS_ITEM | CDDS_POSTPAINT) 
  345. #define CDDS_ITEMPREERASE       (CDDS_ITEM | CDDS_PREERASE) 
  346. #define CDDS_ITEMPOSTERASE      (CDDS_ITEM | CDDS_POSTERASE) 
  347. #if (_WIN32_IE >= 0x0400) 
  348. #define CDDS_SUBITEM            0x00020000 
  349. #endif 
  350.  
  351.  
  352. // itemState flags 
  353. #define CDIS_SELECTED    0x0001 
  354. #define CDIS_GRAYED      0x0002 
  355. #define CDIS_DISABLED    0x0004 
  356. #define CDIS_CHECKED     0x0008 
  357. #define CDIS_FOCUS       0x0010 
  358. #define CDIS_DEFAULT     0x0020 
  359. #define CDIS_HOT         0x0040 
  360. #define CDIS_MARKED      0x0080 
  361.  
  362. typedef struct tagNMCUSTOMDRAWINFO 
  363.     NMHDR hdr; 
  364.     DWORD dwDrawStage; 
  365.     HDC hdc; 
  366.     RECT rc; 
  367.     DWORD dwItemSpec;  // this is control specific, but it's how to specify an item.  valid only with CDDS_ITEM bit set 
  368.     UINT  uItemState; 
  369.     LPARAM lItemlParam; 
  370. } NMCUSTOMDRAW, FAR * LPNMCUSTOMDRAW; 
  371.  
  372.  
  373.  
  374. // for tooltips 
  375.  
  376. typedef struct tagNMTTCUSTOMDRAW 
  377.     NMCUSTOMDRAW nmcd; 
  378.     UINT uDrawFlags; 
  379. } NMTTCUSTOMDRAW, FAR * LPNMTTCUSTOMDRAW; 
  380.  
  381. #endif      // _WIN32_IE >= 0x0300 
  382.  
  383.  
  384. //====== IMAGE APIS =========================================================== 
  385.  
  386. #ifndef NOIMAGEAPIS 
  387.  
  388. #define CLR_NONE                0xFFFFFFFFL 
  389. #define CLR_DEFAULT             0xFF000000L 
  390.  
  391. struct _IMAGELIST; 
  392. typedef struct _IMAGELIST NEAR* HIMAGELIST; 
  393.  
  394. #if (_WIN32_IE >= 0x0300) 
  395. typedef struct _IMAGELISTDRAWPARAMS { 
  396.     DWORD       cbSize; 
  397.     HIMAGELIST  himl; 
  398.     int         i; 
  399.     HDC         hdcDst; 
  400.     int         x; 
  401.     int         y; 
  402.     int         cx; 
  403.     int         cy; 
  404.     int         xBitmap;        // x offest from the upperleft of bitmap 
  405.     int         yBitmap;        // y offset from the upperleft of bitmap 
  406.     COLORREF    rgbBk; 
  407.     COLORREF    rgbFg; 
  408.     UINT        fStyle; 
  409.     DWORD       dwRop; 
  410. } IMAGELISTDRAWPARAMS, FAR * LPIMAGELISTDRAWPARAMS; 
  411. #endif      // _WIN32_IE >= 0x0300 
  412.  
  413. #define ILC_MASK                0x0001 
  414. #define ILC_COLOR               0x0000 
  415. #define ILC_COLORDDB            0x00FE 
  416. #define ILC_COLOR4              0x0004 
  417. #define ILC_COLOR8              0x0008 
  418. #define ILC_COLOR16             0x0010 
  419. #define ILC_COLOR24             0x0018 
  420. #define ILC_COLOR32             0x0020 
  421. #define ILC_PALETTE             0x0800      // (no longer supported...never worked anyway) 
  422.  
  423. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_Create(int cx, int cy, UINT flags, int cInitial, int cGrow); 
  424. WINCOMMCTRLAPI BOOL        WINAPI ImageList_Destroy(HIMAGELIST himl); 
  425. WINCOMMCTRLAPI int         WINAPI ImageList_GetImageCount(HIMAGELIST himl); 
  426. #if (_WIN32_IE >= 0x0300) 
  427. WINCOMMCTRLAPI BOOL        WINAPI ImageList_SetImageCount(HIMAGELIST himl, UINT uNewCount); 
  428. #endif 
  429. WINCOMMCTRLAPI int         WINAPI ImageList_Add(HIMAGELIST himl, HBITMAP hbmImage, HBITMAP hbmMask); 
  430. WINCOMMCTRLAPI int         WINAPI ImageList_ReplaceIcon(HIMAGELIST himl, int i, HICON hicon); 
  431. WINCOMMCTRLAPI COLORREF    WINAPI ImageList_SetBkColor(HIMAGELIST himl, COLORREF clrBk); 
  432. WINCOMMCTRLAPI COLORREF    WINAPI ImageList_GetBkColor(HIMAGELIST himl); 
  433. WINCOMMCTRLAPI BOOL        WINAPI ImageList_SetOverlayImage(HIMAGELIST himl, int iImage, int iOverlay); 
  434.  
  435. #define     ImageList_AddIcon(himl, hicon) ImageList_ReplaceIcon(himl, -1, hicon) 
  436.  
  437. #define ILD_NORMAL              0x0000 
  438. #define ILD_TRANSPARENT         0x0001 
  439. #define ILD_MASK                0x0010 
  440. #define ILD_IMAGE               0x0020 
  441. #if (_WIN32_IE >= 0x0300) 
  442. #define ILD_ROP                 0x0040 
  443. #endif 
  444. #define ILD_BLEND25             0x0002 
  445. #define ILD_BLEND50             0x0004 
  446. #define ILD_OVERLAYMASK         0x0F00 
  447. #define INDEXTOOVERLAYMASK(i)   ((i) << 8) 
  448.  
  449. #define ILD_SELECTED            ILD_BLEND50 
  450. #define ILD_FOCUS               ILD_BLEND25 
  451. #define ILD_BLEND               ILD_BLEND50 
  452. #define CLR_HILIGHT             CLR_DEFAULT 
  453.  
  454. WINCOMMCTRLAPI BOOL WINAPI ImageList_Draw(HIMAGELIST himl, int i, HDC hdcDst, int x, int y, UINT fStyle); 
  455.  
  456.  
  457. #ifdef _WIN32 
  458.  
  459. WINCOMMCTRLAPI BOOL        WINAPI ImageList_Replace(HIMAGELIST himl, int i, HBITMAP hbmImage, HBITMAP hbmMask); 
  460. WINCOMMCTRLAPI int         WINAPI ImageList_AddMasked(HIMAGELIST himl, HBITMAP hbmImage, COLORREF crMask); 
  461. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DrawEx(HIMAGELIST himl, int i, HDC hdcDst, int x, int y, int dx, int dy, COLORREF rgbBk, COLORREF rgbFg, UINT fStyle); 
  462. #if (_WIN32_IE >= 0x0300) 
  463. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DrawIndirect(IMAGELISTDRAWPARAMS* pimldp); 
  464. #endif 
  465. WINCOMMCTRLAPI BOOL        WINAPI ImageList_Remove(HIMAGELIST himl, int i); 
  466. WINCOMMCTRLAPI HICON       WINAPI ImageList_GetIcon(HIMAGELIST himl, int i, UINT flags); 
  467. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_LoadImageA(HINSTANCE hi, LPCSTR lpbmp, int cx, int cGrow, COLORREF crMask, UINT uType, UINT uFlags); 
  468. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_LoadImageW(HINSTANCE hi, LPCWSTR lpbmp, int cx, int cGrow, COLORREF crMask, UINT uType, UINT uFlags); 
  469.  
  470. #ifdef UNICODE 
  471. #define ImageList_LoadImage     ImageList_LoadImageW 
  472. #else 
  473. #define ImageList_LoadImage     ImageList_LoadImageA 
  474. #endif 
  475.  
  476. #if (_WIN32_IE >= 0x0300) 
  477. #define ILCF_MOVE   (0x00000000) 
  478. #define ILCF_SWAP   (0x00000001) 
  479. WINCOMMCTRLAPI BOOL        WINAPI ImageList_Copy(HIMAGELIST himlDst, int iDst, HIMAGELIST himlSrc, int iSrc, UINT uFlags); 
  480. #endif 
  481.  
  482. WINCOMMCTRLAPI BOOL        WINAPI ImageList_BeginDrag(HIMAGELIST himlTrack, int iTrack, int dxHotspot, int dyHotspot); 
  483. WINCOMMCTRLAPI void        WINAPI ImageList_EndDrag(); 
  484. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DragEnter(HWND hwndLock, int x, int y); 
  485. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DragLeave(HWND hwndLock); 
  486. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DragMove(int x, int y); 
  487. WINCOMMCTRLAPI BOOL        WINAPI ImageList_SetDragCursorImage(HIMAGELIST himlDrag, int iDrag, int dxHotspot, int dyHotspot); 
  488.  
  489. WINCOMMCTRLAPI BOOL        WINAPI ImageList_DragShowNolock(BOOL fShow); 
  490. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_GetDragImage(POINT FAR* ppt,POINT FAR* pptHotspot); 
  491.  
  492. #define     ImageList_RemoveAll(himl) ImageList_Remove(himl, -1) 
  493. #define     ImageList_ExtractIcon(hi, himl, i) ImageList_GetIcon(himl, i, 0) 
  494. #define     ImageList_LoadBitmap(hi, lpbmp, cx, cGrow, crMask) ImageList_LoadImage(hi, lpbmp, cx, cGrow, crMask, IMAGE_BITMAP, 0) 
  495.  
  496. #ifdef __IStream_INTERFACE_DEFINED__ 
  497. WINCOMMCTRLAPI HIMAGELIST WINAPI ImageList_Read(LPSTREAM pstm); 
  498. WINCOMMCTRLAPI BOOL       WINAPI ImageList_Write(HIMAGELIST himl, LPSTREAM pstm); 
  499. #endif 
  500.  
  501. typedef struct _IMAGEINFO 
  502.     HBITMAP hbmImage; 
  503.     HBITMAP hbmMask; 
  504.     int     Unused1; 
  505.     int     Unused2; 
  506.     RECT    rcImage; 
  507. } IMAGEINFO, FAR *LPIMAGEINFO; 
  508.  
  509. WINCOMMCTRLAPI BOOL        WINAPI ImageList_GetIconSize(HIMAGELIST himl, int FAR *cx, int FAR *cy); 
  510. WINCOMMCTRLAPI BOOL        WINAPI ImageList_SetIconSize(HIMAGELIST himl, int cx, int cy); 
  511. WINCOMMCTRLAPI BOOL        WINAPI ImageList_GetImageInfo(HIMAGELIST himl, int i, IMAGEINFO FAR* pImageInfo); 
  512. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_Merge(HIMAGELIST himl1, int i1, HIMAGELIST himl2, int i2, int dx, int dy); 
  513. #if (_WIN32_IE >= 0x0400) 
  514. WINCOMMCTRLAPI HIMAGELIST  WINAPI ImageList_Duplicate(HIMAGELIST himl); 
  515. #endif 
  516.  
  517.  
  518. #endif 
  519.  
  520. #endif 
  521.  
  522.  
  523. //====== HEADER CONTROL ======================================================= 
  524.  
  525. #ifndef NOHEADER 
  526.  
  527. #ifdef _WIN32 
  528. #define WC_HEADERA              "SysHeader32" 
  529. #define WC_HEADERW              L"SysHeader32" 
  530.  
  531. #ifdef UNICODE 
  532. #define WC_HEADER               WC_HEADERW 
  533. #else 
  534. #define WC_HEADER               WC_HEADERA 
  535. #endif 
  536.  
  537. #else 
  538. #define WC_HEADER               "SysHeader" 
  539. #endif 
  540.  
  541. // begin_r_commctrl 
  542.  
  543. #define HDS_HORZ                0x0000 
  544. #define HDS_BUTTONS             0x0002 
  545. #if (_WIN32_IE >= 0x0300) 
  546. #define HDS_HOTTRACK            0x0004 
  547. #endif 
  548. #define HDS_HIDDEN              0x0008 
  549.  
  550. #if (_WIN32_IE >= 0x0300) 
  551. #define HDS_DRAGDROP            0x0040 
  552. #define HDS_FULLDRAG            0x0080 
  553. #endif 
  554.  
  555. // end_r_commctrl 
  556.  
  557. #if (_WIN32_IE >= 0x0300) 
  558. #define HD_ITEMA HDITEMA 
  559. #define HD_ITEMW HDITEMW 
  560. #else 
  561. #define HDITEMW  HD_ITEMW 
  562. #define HDITEMA  HD_ITEMA 
  563. #endif 
  564. #define HD_ITEM HDITEM 
  565.  
  566. typedef struct _HD_ITEMA 
  567.     UINT    mask; 
  568.     int     cxy; 
  569.     LPSTR   pszText; 
  570.     HBITMAP hbm; 
  571.     int     cchTextMax; 
  572.     int     fmt; 
  573.     LPARAM  lParam; 
  574. #if (_WIN32_IE >= 0x0300) 
  575.     int     iImage;        // index of bitmap in ImageList 
  576.     int     iOrder;        // where to draw this item 
  577. #endif 
  578. } HDITEMA, FAR * LPHDITEMA; 
  579.  
  580.  
  581. typedef struct _HD_ITEMW 
  582.     UINT    mask; 
  583.     int     cxy; 
  584.     LPWSTR   pszText; 
  585.     HBITMAP hbm; 
  586.     int     cchTextMax; 
  587.     int     fmt; 
  588.     LPARAM  lParam; 
  589. #if (_WIN32_IE >= 0x0300) 
  590.     int     iImage;        // index of bitmap in ImageList 
  591.     int     iOrder; 
  592. #endif 
  593. } HDITEMW, FAR * LPHDITEMW; 
  594.  
  595. #ifdef UNICODE 
  596. #define HDITEM HDITEMW 
  597. #define LPHDITEM LPHDITEMW 
  598. #else 
  599. #define HDITEM HDITEMA 
  600. #define LPHDITEM LPHDITEMW 
  601. #endif 
  602.  
  603.  
  604. #define HDI_WIDTH               0x0001 
  605. #define HDI_HEIGHT              HDI_WIDTH 
  606. #define HDI_TEXT                0x0002 
  607. #define HDI_FORMAT              0x0004 
  608. #define HDI_LPARAM              0x0008 
  609. #define HDI_BITMAP              0x0010 
  610. #if (_WIN32_IE >= 0x0300) 
  611. #define HDI_IMAGE               0x0020 
  612. #define HDI_DI_SETITEM          0x0040 
  613. #define HDI_ORDER               0x0080 
  614. #endif 
  615.  
  616. #define HDF_LEFT                0 
  617. #define HDF_RIGHT               1 
  618. #define HDF_CENTER              2 
  619. #define HDF_JUSTIFYMASK         0x0003 
  620. #define HDF_RTLREADING          4 
  621.  
  622. #define HDF_OWNERDRAW           0x8000 
  623. #define HDF_STRING              0x4000 
  624. #define HDF_BITMAP              0x2000
  625. #if (_WIN32_IE >= 0x0300)
  626. #define HDF_BITMAP_ON_RIGHT     0x1000
  627. #define HDF_IMAGE               0x0800
  628. #endif
  629.  
  630. #define HDM_GETITEMCOUNT        (HDM_FIRST + 0)
  631. #define Header_GetItemCount(hwndHD) 
  632. (int)SNDMSG((hwndHD), HDM_GETITEMCOUNT, 0, 0L) 
  633.  
  634.  
  635. #define HDM_INSERTITEMA         (HDM_FIRST + 1) 
  636. #define HDM_INSERTITEMW         (HDM_FIRST + 10) 
  637.  
  638. #ifdef UNICODE 
  639. #define HDM_INSERTITEM          HDM_INSERTITEMW 
  640. #else 
  641. #define HDM_INSERTITEM          HDM_INSERTITEMA 
  642. #endif 
  643.  
  644. #define Header_InsertItem(hwndHD, i, phdi) 
  645.     (int)SNDMSG((hwndHD), HDM_INSERTITEM, (WPARAM)(int)(i), (LPARAM)(const HD_ITEM FAR*)(phdi)) 
  646.  
  647.  
  648. #define HDM_DELETEITEM          (HDM_FIRST + 2) 
  649. #define Header_DeleteItem(hwndHD, i) 
  650.     (BOOL)SNDMSG((hwndHD), HDM_DELETEITEM, (WPARAM)(int)(i), 0L) 
  651.  
  652.  
  653. #define HDM_GETITEMA            (HDM_FIRST + 3) 
  654. #define HDM_GETITEMW            (HDM_FIRST + 11) 
  655.  
  656. #ifdef UNICODE 
  657. #define HDM_GETITEM             HDM_GETITEMW 
  658. #else 
  659. #define HDM_GETITEM             HDM_GETITEMA 
  660. #endif 
  661.  
  662. #define Header_GetItem(hwndHD, i, phdi) 
  663.     (BOOL)SNDMSG((hwndHD), HDM_GETITEM, (WPARAM)(int)(i), (LPARAM)(HD_ITEM FAR*)(phdi)) 
  664.  
  665.  
  666. #define HDM_SETITEMA            (HDM_FIRST + 4) 
  667. #define HDM_SETITEMW            (HDM_FIRST + 12) 
  668.  
  669. #ifdef UNICODE 
  670. #define HDM_SETITEM             HDM_SETITEMW 
  671. #else 
  672. #define HDM_SETITEM             HDM_SETITEMA 
  673. #endif 
  674.  
  675. #define Header_SetItem(hwndHD, i, phdi) 
  676.     (BOOL)SNDMSG((hwndHD), HDM_SETITEM, (WPARAM)(int)(i), (LPARAM)(const HD_ITEM FAR*)(phdi)) 
  677.  
  678. #if (_WIN32_IE >= 0x0300) 
  679. #define HD_LAYOUT  HDLAYOUT 
  680. #else 
  681. #define HDLAYOUT   HD_LAYOUT 
  682. #endif 
  683.  
  684. typedef struct _HD_LAYOUT 
  685.     RECT FAR* prc; 
  686.     WINDOWPOS FAR* pwpos; 
  687. } HDLAYOUT, FAR *LPHDLAYOUT; 
  688.  
  689.  
  690. #define HDM_LAYOUT              (HDM_FIRST + 5) 
  691. #define Header_Layout(hwndHD, playout) 
  692.     (BOOL)SNDMSG((hwndHD), HDM_LAYOUT, 0, (LPARAM)(HD_LAYOUT FAR*)(playout)) 
  693.  
  694.  
  695. #define HHT_NOWHERE             0x0001 
  696. #define HHT_ONHEADER            0x0002 
  697. #define HHT_ONDIVIDER           0x0004 
  698. #define HHT_ONDIVOPEN           0x0008 
  699. #define HHT_ABOVE               0x0100 
  700. #define HHT_BELOW               0x0200 
  701. #define HHT_TORIGHT             0x0400 
  702. #define HHT_TOLEFT              0x0800 
  703.  
  704. #if (_WIN32_IE >= 0x0300) 
  705. #define HD_HITTESTINFO HDHITTESTINFO 
  706. #else 
  707. #define HDHITTESTINFO  HD_HITTESTINFO 
  708. #endif 
  709.  
  710. typedef struct _HD_HITTESTINFO 
  711.     POINT pt; 
  712.     UINT flags; 
  713.     int iItem; 
  714. } HDHITTESTINFO, FAR *LPHDHITTESTINFO; 
  715.  
  716.  
  717. #define HDM_HITTEST             (HDM_FIRST + 6) 
  718.  
  719. #if (_WIN32_IE >= 0x0300) 
  720.  
  721. #define HDM_GETITEMRECT         (HDM_FIRST + 7) 
  722. #define Header_GetItemRect(hwnd, iItem, lprc) 
  723.         (BOOL)SNDMSG((hwnd), HDM_GETITEMRECT, (WPARAM)iItem, (LPARAM)lprc) 
  724.  
  725. #define HDM_SETIMAGELIST        (HDM_FIRST + 8) 
  726. #define Header_SetImageList(hwnd, himl) 
  727.         (HIMAGELIST)SNDMSG((hwnd), HDM_SETIMAGELIST, 0, (LPARAM)himl) 
  728.  
  729. #define HDM_GETIMAGELIST        (HDM_FIRST + 9) 
  730. #define Header_GetImageList(hwnd) 
  731.         (HIMAGELIST)SNDMSG((hwnd), HDM_GETIMAGELIST, 0, 0) 
  732.  
  733.  
  734. #define HDM_ORDERTOINDEX        (HDM_FIRST + 15) 
  735. #define Header_OrderToIndex(hwnd, i) 
  736.         (int)SNDMSG((hwnd), HDM_ORDERTOINDEX, (WPARAM)i, 0) 
  737.  
  738. #define HDM_CREATEDRAGIMAGE     (HDM_FIRST + 16)  // wparam = which item (by index) 
  739. #define Header_CreateDragImage(hwnd, i) 
  740.         (HIMAGELIST)SNDMSG((hwnd), HDM_CREATEDRAGIMAGE, (WPARAM)i, 0) 
  741.  
  742. #define HDM_GETORDERARRAY       (HDM_FIRST + 17) 
  743. #define Header_GetOrderArray(hwnd, iCount, lpi) 
  744.         (BOOL)SNDMSG((hwnd), HDM_GETORDERARRAY, (WPARAM)iCount, (LPARAM)lpi) 
  745.  
  746. #define HDM_SETORDERARRAY       (HDM_FIRST + 18) 
  747. #define Header_SetOrderArray(hwnd, iCount, lpi) 
  748.         (BOOL)SNDMSG((hwnd), HDM_SETORDERARRAY, (WPARAM)iCount, (LPARAM)lpi) 
  749. // lparam = int array of size HDM_GETITEMCOUNT 
  750. // the array specifies the order that all items should be displayed. 
  751. // e.g.  { 2, 0, 1} 
  752. // says the index 2 item should be shown in the 0ths position 
  753. //      index 0 should be shown in the 1st position 
  754. //      index 1 should be shown in the 2nd position 
  755.  
  756.  
  757. #define HDM_SETHOTDIVIDER          (HDM_FIRST + 19) 
  758. #define Header_SetHotDivider(hwnd, fPos, dw) 
  759.         (int)SNDMSG((hwnd), HDM_SETHOTDIVIDER, (WPARAM)fPos, (LPARAM)dw) 
  760. // convenience message for external dragdrop 
  761. // wParam = BOOL  specifying whether the lParam is a dwPos of the cursor 
  762. //              position or the index of which divider to hotlight 
  763. // lParam = depends on wParam  (-1 and wParm = FALSE turns off hotlight) 
  764. #endif      // _WIN32_IE >= 0x0300 
  765.  
  766. #define HDN_ITEMCHANGINGA       (HDN_FIRST-0) 
  767. #define HDN_ITEMCHANGINGW       (HDN_FIRST-20) 
  768. #define HDN_ITEMCHANGEDA        (HDN_FIRST-1) 
  769. #define HDN_ITEMCHANGEDW        (HDN_FIRST-21) 
  770. #define HDN_ITEMCLICKA          (HDN_FIRST-2) 
  771. #define HDN_ITEMCLICKW          (HDN_FIRST-22) 
  772. #define HDN_ITEMDBLCLICKA       (HDN_FIRST-3) 
  773. #define HDN_ITEMDBLCLICKW       (HDN_FIRST-23) 
  774. #define HDN_DIVIDERDBLCLICKA    (HDN_FIRST-5) 
  775. #define HDN_DIVIDERDBLCLICKW    (HDN_FIRST-25) 
  776. #define HDN_BEGINTRACKA         (HDN_FIRST-6) 
  777. #define HDN_BEGINTRACKW         (HDN_FIRST-26) 
  778. #define HDN_ENDTRACKA           (HDN_FIRST-7) 
  779. #define HDN_ENDTRACKW           (HDN_FIRST-27) 
  780. #define HDN_TRACKA              (HDN_FIRST-8) 
  781. #define HDN_TRACKW              (HDN_FIRST-28) 
  782. #if (_WIN32_IE >= 0x0300) 
  783. #define HDN_GETDISPINFOA        (HDN_FIRST-9) 
  784. #define HDN_GETDISPINFOW        (HDN_FIRST-29) 
  785. #define HDN_BEGINDRAG           (HDN_FIRST-10) 
  786. #define HDN_ENDDRAG             (HDN_FIRST-11) 
  787. #endif 
  788.  
  789. #ifdef UNICODE 
  790. #define HDN_ITEMCHANGING         HDN_ITEMCHANGINGW 
  791. #define HDN_ITEMCHANGED          HDN_ITEMCHANGEDW 
  792. #define HDN_ITEMCLICK            HDN_ITEMCLICKW 
  793. #define HDN_ITEMDBLCLICK         HDN_ITEMDBLCLICKW 
  794. #define HDN_DIVIDERDBLCLICK      HDN_DIVIDERDBLCLICKW 
  795. #define HDN_BEGINTRACK           HDN_BEGINTRACKW 
  796. #define HDN_ENDTRACK             HDN_ENDTRACKW 
  797. #define HDN_TRACK                HDN_TRACKW 
  798. #if (_WIN32_IE >= 0x0300) 
  799. #define HDN_GETDISPINFO          HDN_GETDISPINFOW 
  800. #endif 
  801. #else 
  802. #define HDN_ITEMCHANGING         HDN_ITEMCHANGINGA 
  803. #define HDN_ITEMCHANGED          HDN_ITEMCHANGEDA 
  804. #define HDN_ITEMCLICK            HDN_ITEMCLICKA 
  805. #define HDN_ITEMDBLCLICK         HDN_ITEMDBLCLICKA 
  806. #define HDN_DIVIDERDBLCLICK      HDN_DIVIDERDBLCLICKA 
  807. #define HDN_BEGINTRACK           HDN_BEGINTRACKA 
  808. #define HDN_ENDTRACK             HDN_ENDTRACKA 
  809. #define HDN_TRACK                HDN_TRACKA 
  810. #if (_WIN32_IE >= 0x0300) 
  811. #define HDN_GETDISPINFO          HDN_GETDISPINFOA 
  812. #endif 
  813. #endif 
  814.  
  815.  
  816.  
  817. #if (_WIN32_IE >= 0x0300) 
  818. #define HD_NOTIFYA              NMHEADERA 
  819. #define HD_NOTIFYW              NMHEADERW 
  820. #else 
  821. #define tagNMHEADERA            _HD_NOTIFY 
  822. #define NMHEADERA               HD_NOTIFYA 
  823. #define tagHMHEADERW            _HD_NOTIFYW 
  824. #define NMHEADERW               HD_NOTIFYW 
  825. #endif 
  826. #define HD_NOTIFY               NMHEADER 
  827.  
  828. typedef struct tagNMHEADERA 
  829.     NMHDR   hdr; 
  830.     int     iItem; 
  831.     int     iButton; 
  832.     HDITEMA FAR* pitem; 
  833. }  NMHEADERA, FAR* LPNMHEADERA; 
  834.  
  835.  
  836. typedef struct tagNMHEADERW 
  837.     NMHDR   hdr; 
  838.     int     iItem; 
  839.     int     iButton; 
  840.     HDITEMW FAR* pitem; 
  841. } NMHEADERW, FAR* LPNMHEADERW; 
  842.  
  843. #ifdef UNICODE 
  844. #define NMHEADER                NMHEADERW 
  845. #define LPNMHEADER              LPNMHEADERW 
  846. #else 
  847. #define NMHEADER                NMHEADERA 
  848. #define LPNMHEADER              LPNMHEADERA 
  849. #endif 
  850.  
  851. typedef struct tagNMHDDISPINFOW 
  852.     NMHDR   hdr; 
  853.     int     iItem; 
  854.     UINT    mask; 
  855.     LPWSTR  pszText; 
  856.     int     cchTextMax; 
  857.     int     iImage; 
  858.     LPARAM  lParam; 
  859. } NMHDDISPINFOW, FAR* LPNMHDDISPINFOW; 
  860.  
  861. typedef struct tagNMHDDISPINFOA 
  862.     NMHDR   hdr; 
  863.     int     iItem; 
  864.     UINT    mask; 
  865.     LPSTR   pszText; 
  866.     int     cchTextMax; 
  867.     int     iImage; 
  868.     LPARAM  lParam; 
  869. } NMHDDISPINFOA, FAR* LPNMHDDISPINFOA; 
  870.  
  871.  
  872. #ifdef UNICODE 
  873. #define NMHDDISPINFO            NMHDDISPINFOW 
  874. #define LPNMHDDISPINFO          LPNMHDDISPINFOW 
  875. #else 
  876. #define NMHDDISPINFO            NMHDDISPINFOA 
  877. #define LPNMHDDISPINFO          LPNMHDDISPINFOA 
  878. #endif 
  879.  
  880. #endif      // NOHEADER 
  881.  
  882.  
  883. //====== TOOLBAR CONTROL ====================================================== 
  884.  
  885. #ifndef NOTOOLBAR 
  886.  
  887. #ifdef _WIN32 
  888. #define TOOLBARCLASSNAMEW       L"ToolbarWindow32" 
  889. #define TOOLBARCLASSNAMEA       "ToolbarWindow32" 
  890.  
  891. #ifdef  UNICODE 
  892. #define TOOLBARCLASSNAME        TOOLBARCLASSNAMEW 
  893. #else 
  894. #define TOOLBARCLASSNAME        TOOLBARCLASSNAMEA 
  895. #endif 
  896.  
  897. #else 
  898. #define TOOLBARCLASSNAME        "ToolbarWindow" 
  899. #endif 
  900.  
  901. typedef struct _TBBUTTON { 
  902.     int iBitmap; 
  903.     int idCommand; 
  904.     BYTE fsState; 
  905.     BYTE fsStyle; 
  906. #ifdef _WIN32 
  907.     BYTE bReserved[2]; 
  908. #endif 
  909.     DWORD dwData; 
  910.     int iString; 
  911. } TBBUTTON, NEAR* PTBBUTTON, FAR* LPTBBUTTON; 
  912. typedef const TBBUTTON FAR* LPCTBBUTTON; 
  913.  
  914.  
  915. typedef struct _COLORMAP { 
  916.     COLORREF from; 
  917.     COLORREF to; 
  918. } COLORMAP, FAR* LPCOLORMAP; 
  919.  
  920. WINCOMMCTRLAPI HWND WINAPI CreateToolbarEx(HWND hwnd, DWORD ws, UINT wID, int nBitmaps, 
  921.                         HINSTANCE hBMInst, UINT wBMID, LPCTBBUTTON lpButtons, 
  922.                         int iNumButtons, int dxButton, int dyButton, 
  923.                         int dxBitmap, int dyBitmap, UINT uStructSize); 
  924.  
  925. WINCOMMCTRLAPI HBITMAP WINAPI CreateMappedBitmap(HINSTANCE hInstance, int idBitmap, 
  926.                                   UINT wFlags, LPCOLORMAP lpColorMap, 
  927.                                   int iNumMaps); 
  928.  
  929. #define CMB_MASKED              0x02 
  930.  
  931. #define TBSTATE_CHECKED         0x01 
  932. #define TBSTATE_PRESSED         0x02 
  933. #define TBSTATE_ENABLED         0x04 
  934. #define TBSTATE_HIDDEN          0x08 
  935. #define TBSTATE_INDETERMINATE   0x10 
  936. #define TBSTATE_WRAP            0x20 
  937. #if (_WIN32_IE >= 0x0300) 
  938. #define TBSTATE_ELLIPSES        0x40 
  939. #endif 
  940. #if (_WIN32_IE >= 0x0400) 
  941. #define TBSTATE_MARKED          0x80 
  942. #endif 
  943.  
  944. #define TBSTYLE_BUTTON          0x0000 
  945. #define TBSTYLE_SEP             0x0001 
  946. #define TBSTYLE_CHECK           0x0002 
  947. #define TBSTYLE_GROUP           0x0004 
  948. #define TBSTYLE_CHECKGROUP      (TBSTYLE_GROUP | TBSTYLE_CHECK) 
  949. #if (_WIN32_IE >= 0x0300) 
  950. #define TBSTYLE_DROPDOWN        0x0008 
  951. #endif 
  952. #if (_WIN32_IE >= 0x0400) 
  953. #define TBSTYLE_AUTOSIZE        0x0010 // automatically calculate the cx of the button 
  954. #define TBSTYLE_NOPREFIX        0x0020 // if this button should not have accel prefix 
  955. #endif 
  956.  
  957. #define TBSTYLE_TOOLTIPS        0x0100 
  958. #define TBSTYLE_WRAPABLE        0x0200 
  959. #define TBSTYLE_ALTDRAG         0x0400 
  960. #if (_WIN32_IE >= 0x0300) 
  961. #define TBSTYLE_FLAT            0x0800 
  962. #define TBSTYLE_LIST            0x1000 
  963. #define TBSTYLE_CUSTOMERASE     0x2000 
  964. #endif 
  965. #if (_WIN32_IE >= 0x0400) 
  966. #define TBSTYLE_REGISTERDROP    0x4000 
  967. #define TBSTYLE_TRANSPARENT     0x8000 
  968. #define TBSTYLE_EX_DRAWDDARROWS 0x00000001 
  969. #endif 
  970.  
  971. #if (_WIN32_IE >= 0x0400) 
  972. // Custom Draw Struture 
  973. typedef struct tagTBCD { 
  974.     HBRUSH hbrMonoDither; 
  975.     HBRUSH hbrLines;                // For drawing lines on buttons 
  976.     HPEN hpenLines;                 // For drawing lines on buttons 
  977.  
  978.     COLORREF clrText;               // Color of text 
  979.     COLORREF clrMark;               // Color of text bk when marked. (only if TBSTATE_MARKED) 
  980.     COLORREF clrTextHighlight;      // Color of text when highlighted 
  981.     COLORREF clrBtnFace;            // Background of the button 
  982.     COLORREF clrBtnHighlight;       // 3D highlight 
  983.     COLORREF clrHighlightHotTrack;  // In conjunction with fHighlightHotTrack 
  984.                                     // will cause button to highlight like a menu 
  985.     RECT rcText;                    // Rect for text 
  986.  
  987.     int nStringBkMode; 
  988.     int nHLStringBkMode; 
  989.  
  990.     BOOL fNoEdges;                  // No edges 
  991.     BOOL fHighlightHotTrack;        // Color of the bk of the button when hottracked 
  992.     BOOL fNoOffset;                 // Don't offset button if pressed 
  993.     BOOL fNoMark;                   // Don't draw default highlight of image/text for TBSTATE_MARKED 
  994. } TBCD, * LPTBCD; 
  995. #endif 
  996.  
  997. #define TB_ENABLEBUTTON         (WM_USER + 1) 
  998. #define TB_CHECKBUTTON          (WM_USER + 2) 
  999. #define TB_PRESSBUTTON          (WM_USER + 3) 
  1000. #define TB_HIDEBUTTON           (WM_USER + 4) 
  1001. #define TB_INDETERMINATE        (WM_USER + 5) 
  1002. #if (_WIN32_IE >= 0x0400) 
  1003. #define TB_MARKBUTTON           (WM_USER + 6) 
  1004. #endif 
  1005. #define TB_ISBUTTONENABLED      (WM_USER + 9) 
  1006. #define TB_ISBUTTONCHECKED      (WM_USER + 10) 
  1007. #define TB_ISBUTTONPRESSED      (WM_USER + 11) 
  1008. #define TB_ISBUTTONHIDDEN       (WM_USER + 12) 
  1009. #define TB_ISBUTTONINDETERMINATE (WM_USER + 13) 
  1010. #if (_WIN32_IE >= 0x0400) 
  1011. #define TB_ISBUTTONHIGHLIGHTED  (WM_USER + 14) 
  1012. #endif 
  1013. #define TB_SETSTATE             (WM_USER + 17) 
  1014. #define TB_GETSTATE             (WM_USER + 18) 
  1015. #define TB_ADDBITMAP            (WM_USER + 19) 
  1016.  
  1017. #ifdef _WIN32 
  1018. typedef struct tagTBADDBITMAP { 
  1019.         HINSTANCE       hInst; 
  1020.         UINT            nID; 
  1021. } TBADDBITMAP, *LPTBADDBITMAP; 
  1022.  
  1023. #define HINST_COMMCTRL          ((HINSTANCE)-1) 
  1024. #define IDB_STD_SMALL_COLOR     0 
  1025. #define IDB_STD_LARGE_COLOR     1 
  1026. #define IDB_VIEW_SMALL_COLOR    4 
  1027. #define IDB_VIEW_LARGE_COLOR    5 
  1028. #if (_WIN32_IE >= 0x0300) 
  1029. #define IDB_HIST_SMALL_COLOR    8 
  1030. #define IDB_HIST_LARGE_COLOR    9 
  1031. #endif 
  1032.  
  1033. // icon indexes for standard bitmap 
  1034.  
  1035. #define STD_CUT                 0 
  1036. #define STD_COPY                1 
  1037. #define STD_PASTE               2 
  1038. #define STD_UNDO                3 
  1039. #define STD_REDOW               4 
  1040. #define STD_DELETE              5 
  1041. #define STD_FILENEW             6 
  1042. #define STD_FILEOPEN            7 
  1043. #define STD_FILESAVE            8 
  1044. #define STD_PRINTPRE            9 
  1045. #define STD_PROPERTIES          10 
  1046. #define STD_HELP                11 
  1047. #define STD_FIND                12 
  1048. #define STD_REPLACE             13 
  1049. #define STD_PRINT               14 
  1050.  
  1051. // icon indexes for standard view bitmap 
  1052.  
  1053. #define VIEW_LARGEICONS         0 
  1054. #define VIEW_SMALLICONS         1 
  1055. #define VIEW_LIST               2 
  1056. #define VIEW_DETAILS            3 
  1057. #define VIEW_SORTNAME           4 
  1058. #define VIEW_SORTSIZE           5 
  1059. #define VIEW_SORTDATE           6 
  1060. #define VIEW_SORTTYPE           7 
  1061. #define VIEW_PARENTFOLDER       8 
  1062. #define VIEW_NETCONNECT         9 
  1063. #define VIEW_NETDISCONNECT      10 
  1064. #define VIEW_NEWFOLDER          11 
  1065. #if (_WIN32_IE >= 0x0400) 
  1066. #define VIEW_VIEWMENU           12 
  1067. #endif 
  1068.  
  1069. #if (_WIN32_IE >= 0x0300) 
  1070. #define HIST_BACK               0 
  1071. #define HIST_FORWARD            1 
  1072. #define HIST_FAVORITES          2 
  1073. #define HIST_ADDTOFAVORITES     3 
  1074. #define HIST_VIEWTREE           4 
  1075. #endif 
  1076.  
  1077. #endif 
  1078.  
  1079. #if (_WIN32_IE >= 0x0400) 
  1080. #define TB_ADDBUTTONSA          (WM_USER + 20) 
  1081. #define TB_INSERTBUTTONA        (WM_USER + 21) 
  1082. #else 
  1083. #define TB_ADDBUTTONS           (WM_USER + 20) 
  1084. #define TB_INSERTBUTTON         (WM_USER + 21) 
  1085. #endif 
  1086.  
  1087. #define TB_DELETEBUTTON         (WM_USER + 22) 
  1088. #define TB_GETBUTTON            (WM_USER + 23) 
  1089. #define TB_BUTTONCOUNT          (WM_USER + 24) 
  1090. #define TB_COMMANDTOINDEX       (WM_USER + 25) 
  1091.  
  1092. #ifdef _WIN32 
  1093.  
  1094. typedef struct tagTBSAVEPARAMSA { 
  1095.     HKEY hkr; 
  1096.     LPCSTR pszSubKey; 
  1097.     LPCSTR pszValueName; 
  1098. } TBSAVEPARAMSA, FAR* LPTBSAVEPARAMSA; 
  1099.  
  1100. typedef struct tagTBSAVEPARAMSW { 
  1101.     HKEY hkr; 
  1102.     LPCWSTR pszSubKey; 
  1103.     LPCWSTR pszValueName; 
  1104. } TBSAVEPARAMSW, FAR *LPTBSAVEPARAMW; 
  1105.  
  1106. #ifdef UNICODE 
  1107. #define TBSAVEPARAMS            TBSAVEPARAMSW 
  1108. #define LPTBSAVEPARAMS          LPTBSAVEPARAMSW 
  1109. #else 
  1110. #define TBSAVEPARAMS            TBSAVEPARAMSA 
  1111. #define LPTBSAVEPARAMS          LPTBSAVEPARAMSA 
  1112. #endif 
  1113.  
  1114. #endif  // _WIN32 
  1115.  
  1116. #define TB_SAVERESTOREA         (WM_USER + 26) 
  1117. #define TB_SAVERESTOREW         (WM_USER + 76) 
  1118. #define TB_CUSTOMIZE            (WM_USER + 27) 
  1119. #define TB_ADDSTRINGA           (WM_USER + 28) 
  1120. #define TB_ADDSTRINGW           (WM_USER + 77) 
  1121. #define TB_GETITEMRECT          (WM_USER + 29) 
  1122. #define TB_BUTTONSTRUCTSIZE     (WM_USER + 30) 
  1123. #define TB_SETBUTTONSIZE        (WM_USER + 31) 
  1124. #define TB_SETBITMAPSIZE        (WM_USER + 32) 
  1125. #define TB_AUTOSIZE             (WM_USER + 33) 
  1126. #define TB_GETTOOLTIPS          (WM_USER + 35) 
  1127. #define TB_SETTOOLTIPS          (WM_USER + 36) 
  1128. #define TB_SETPARENT            (WM_USER + 37) 
  1129. #define TB_SETROWS              (WM_USER + 39) 
  1130. #define TB_GETROWS              (WM_USER + 40) 
  1131. #define TB_SETCMDID             (WM_USER + 42) 
  1132. #define TB_CHANGEBITMAP         (WM_USER + 43) 
  1133. #define TB_GETBITMAP            (WM_USER + 44) 
  1134. #define TB_GETBUTTONTEXTA       (WM_USER + 45) 
  1135. #define TB_GETBUTTONTEXTW       (WM_USER + 75) 
  1136. #define TB_REPLACEBITMAP        (WM_USER + 46) 
  1137. #if (_WIN32_IE >= 0x0300) 
  1138. #define TB_SETINDENT            (WM_USER + 47) 
  1139. #define TB_SETIMAGELIST         (WM_USER + 48) 
  1140. #define TB_GETIMAGELIST         (WM_USER + 49) 
  1141. #define TB_LOADIMAGES           (WM_USER + 50) 
  1142. #define TB_GETRECT              (WM_USER + 51) // wParam is the Cmd instead of index 
  1143. #define TB_SETHOTIMAGELIST      (WM_USER + 52) 
  1144. #define TB_GETHOTIMAGELIST      (WM_USER + 53) 
  1145. #define TB_SETDISABLEDIMAGELIST (WM_USER + 54) 
  1146. #define TB_GETDISABLEDIMAGELIST (WM_USER + 55) 
  1147. #define TB_SETSTYLE             (WM_USER + 56) 
  1148. #define TB_GETSTYLE             (WM_USER + 57) 
  1149. #define TB_GETBUTTONSIZE        (WM_USER + 58) 
  1150. #define TB_SETBUTTONWIDTH       (WM_USER + 59) 
  1151. #define TB_SETMAXTEXTROWS       (WM_USER + 60) 
  1152. #define TB_GETTEXTROWS          (WM_USER + 61) 
  1153. #endif      // _WIN32_IE >= 0x0300 
  1154.  
  1155. #define TB_SETCOLORSCHEME       CCM_SETCOLORSCHEME  // lParam is color scheme 
  1156.  
  1157. #ifdef UNICODE 
  1158. #define TB_GETBUTTONTEXT        TB_GETBUTTONTEXTW 
  1159. #define TB_SAVERESTORE          TB_SAVERESTOREW 
  1160. #define TB_ADDSTRING            TB_ADDSTRINGW 
  1161. #else 
  1162. #define TB_GETBUTTONTEXT        TB_GETBUTTONTEXTA 
  1163. #define TB_SAVERESTORE          TB_SAVERESTOREA 
  1164. #define TB_ADDSTRING            TB_ADDSTRINGA 
  1165. #endif 
  1166. #if (_WIN32_IE >= 0x0400) 
  1167. #define TB_GETOBJECT            (WM_USER + 62)  // wParam == IID, lParam void **ppv 
  1168. #define TB_GETHOTITEM           (WM_USER + 71) 
  1169. #define TB_SETHOTITEM           (WM_USER + 72)  // wParam == iHotItem 
  1170. #define TB_SETANCHORHIGHLIGHT   (WM_USER + 73)  // wParam == TRUE/FALSE 
  1171. #define TB_GETANCHORHIGHLIGHT   (WM_USER + 74) 
  1172. #define TB_MAPACCELERATOR       (WM_USER + 78)  // wParam == ch, lParam int * pidBtn 
  1173.  
  1174. typedef struct { 
  1175.     int   iButton; 
  1176.     DWORD dwFlags; 
  1177. } TBINSERTMARK, * LPTBINSERTMARK; 
  1178. #define TBIMHT_AFTER      0x00000001 // TRUE = insert After iButton, otherwise before 
  1179. #define TBIMHT_BACKGROUND 0x00000002 // TRUE iff missed buttons completely 
  1180.  
  1181. #define TB_GETINSERTMARK        (WM_USER + 79)  // lParam == LPTBINSERTMARK 
  1182. #define TB_SETINSERTMARK        (WM_USER + 80)  // lParam == LPTBINSERTMARK 
  1183. #define TB_INSERTMARKHITTEST    (WM_USER + 81)  // wParam == LPPOINT lParam == LPTBINSERTMARK 
  1184. #define TB_MOVEBUTTON           (WM_USER + 82) 
  1185. #define TB_GETMAXSIZE           (WM_USER + 83)  // lParam == LPSIZE 
  1186. #define TB_SETEXTENDEDSTYLE     (WM_USER + 84)  // For TBSTYLE_EX_* 
  1187. #define TB_GETEXTENDEDSTYLE     (WM_USER + 85)  // For TBSTYLE_EX_* 
  1188.  
  1189. #endif  // _WIN32_IE >= 0x0400 
  1190.  
  1191. typedef struct { 
  1192.     HINSTANCE       hInstOld; 
  1193.     UINT            nIDOld; 
  1194.     HINSTANCE       hInstNew; 
  1195.     UINT            nIDNew; 
  1196.     int             nButtons; 
  1197. } TBREPLACEBITMAP, *LPTBREPLACEBITMAP; 
  1198.  
  1199. #ifdef _WIN32 
  1200.  
  1201. #define TBBF_LARGE              0x0001 
  1202.  
  1203. #define TB_GETBITMAPFLAGS       (WM_USER + 41) 
  1204.  
  1205. #if (_WIN32_IE >= 0x0400) 
  1206. #define TBIF_IMAGE              0x00000001 
  1207. #define TBIF_TEXT               0x00000002 
  1208. #define TBIF_STATE              0x00000004 
  1209. #define TBIF_STYLE              0x00000008 
  1210. #define TBIF_LPARAM             0x00000010 
  1211. #define TBIF_COMMAND            0x00000020 
  1212. #define TBIF_SIZE               0x00000040 
  1213.  
  1214. typedef struct { 
  1215.     UINT cbSize; 
  1216.     DWORD dwMask; 
  1217.     int idCommand; 
  1218.     int iImage; 
  1219.     BYTE fsState; 
  1220.     BYTE fsStyle; 
  1221.     WORD cx; 
  1222.     DWORD lParam; 
  1223.     LPSTR pszText; 
  1224.     int cchText; 
  1225. } TBBUTTONINFOA, *LPTBBUTTONINFOA; 
  1226.  
  1227. typedef struct { 
  1228.     UINT cbSize; 
  1229.     DWORD dwMask; 
  1230.     int idCommand; 
  1231.     int iImage; 
  1232.     BYTE fsState; 
  1233.     BYTE fsStyle; 
  1234.     WORD cx; 
  1235.     DWORD lParam; 
  1236.     LPWSTR pszText; 
  1237.     int cchText; 
  1238. } TBBUTTONINFOW, *LPTBBUTTONINFOW; 
  1239.  
  1240. #ifdef UNICODE 
  1241. #define TBBUTTONINFO TBBUTTONINFOW 
  1242. #define LPTBBUTTONINFO LPTBBUTTONINFOW 
  1243. #else 
  1244. #define TBBUTTONINFO TBBUTTONINFOA 
  1245. #define LPTBBUTTONINFO LPTBBUTTONINFOA 
  1246. #endif 
  1247.  
  1248.  
  1249. // BUTTONINFO APIs do NOT support the string pool. 
  1250. #define TB_GETBUTTONINFOW        (WM_USER + 63) 
  1251. #define TB_SETBUTTONINFOW        (WM_USER + 64) 
  1252. #define TB_GETBUTTONINFOA        (WM_USER + 65) 
  1253. #define TB_SETBUTTONINFOA        (WM_USER + 66) 
  1254. #ifdef UNICODE 
  1255. #define TB_GETBUTTONINFO        TB_GETBUTTONINFOW 
  1256. #define TB_SETBUTTONINFO        TB_SETBUTTONINFOW 
  1257. #else 
  1258. #define TB_GETBUTTONINFO        TB_GETBUTTONINFOA 
  1259. #define TB_SETBUTTONINFO        TB_SETBUTTONINFOA 
  1260. #endif 
  1261.  
  1262.  
  1263. #define TB_INSERTBUTTONW        (WM_USER + 67) 
  1264. #define TB_ADDBUTTONSW          (WM_USER + 68) 
  1265.  
  1266. #define TB_HITTEST              (WM_USER + 69) 
  1267.  
  1268. // New post Win95/NT4 for InsertButton and AddButton.  if iString member 
  1269. // is a pointer to a string, it will be handled as a string like listview 
  1270. // (although LPSTR_TEXTCALLBACK is not supported). 
  1271. #ifdef UNICODE 
  1272. #define TB_INSERTBUTTON         TB_INSERTBUTTONW 
  1273. #define TB_ADDBUTTONS           TB_ADDBUTTONSW 
  1274. #else 
  1275. #define TB_INSERTBUTTON         TB_INSERTBUTTONA 
  1276. #define TB_ADDBUTTONS           TB_ADDBUTTONSA 
  1277. #endif 
  1278.  
  1279. #define TB_SETDRAWTEXTFLAGS     (WM_USER + 70)  // wParam == mask lParam == bit values 
  1280.  
  1281. #endif         // _WIN32_IE >= 0x0400 
  1282.  
  1283. #define TBN_GETBUTTONINFOA      (TBN_FIRST-0) 
  1284. #define TBN_GETBUTTONINFOW      (TBN_FIRST-20) 
  1285. #define TBN_BEGINDRAG           (TBN_FIRST-1) 
  1286. #define TBN_ENDDRAG             (TBN_FIRST-2) 
  1287. #define TBN_BEGINADJUST         (TBN_FIRST-3) 
  1288. #define TBN_ENDADJUST           (TBN_FIRST-4) 
  1289. #define TBN_RESET               (TBN_FIRST-5) 
  1290. #define TBN_QUERYINSERT         (TBN_FIRST-6) 
  1291. #define TBN_QUERYDELETE         (TBN_FIRST-7) 
  1292. #define TBN_TOOLBARCHANGE       (TBN_FIRST-8) 
  1293. #define TBN_CUSTHELP            (TBN_FIRST-9) 
  1294. #if (_WIN32_IE >= 0x0300) 
  1295. #define TBN_DROPDOWN            (TBN_FIRST - 10) 
  1296. #endif 
  1297. #if (_WIN32_IE >= 0x0400) 
  1298. #define TBN_GETOBJECT           (TBN_FIRST - 12) 
  1299.  
  1300. // Structure for TBN_HOTITEMCHANGE notification 
  1301. // 
  1302. typedef struct tagNMTBHOTITEM 
  1303.     NMHDR   hdr; 
  1304.     int     idOld; 
  1305.     int     idNew; 
  1306.     DWORD   dwFlags;           // HICF_* 
  1307. } NMTBHOTITEM, * LPNMTBHOTITEM; 
  1308.  
  1309. // Hot item change flags 
  1310. #define HICF_OTHER          0x00000000 
  1311. #define HICF_MOUSE          0x00000001          // Triggered by mouse 
  1312. #define HICF_ARROWKEYS      0x00000002          // Triggered by arrow keys 
  1313. #define HICF_ACCELERATOR    0x00000004          // Triggered by accelerator 
  1314. #define HICF_DROPDOWN       0x00000008          // Button dropped down 
  1315. #define HICF_ENTERING       0x00000010          // idOld is invalid 
  1316. #define HICF_LEAVING        0x00000020          // idNew is invalid 
  1317. #define HICF_RESELECT       0x00000040          // hot item reselected 
  1318.  
  1319.  
  1320. #define TBN_HOTITEMCHANGE       (TBN_FIRST - 13) 
  1321. #define TBN_DRAGOUT             (TBN_FIRST - 14) // this is sent when the user clicks down on a button then drags off the button 
  1322. #define TBN_DELETINGBUTTON      (TBN_FIRST - 15) // uses TBNOTIFY 
  1323. #define TBN_GETDISPINFOA        (TBN_FIRST - 16) // This is sent when the  toolbar needs  some display information 
  1324. #define TBN_GETDISPINFOW        (TBN_FIRST - 17) // This is sent when the  toolbar needs  some display information 
  1325.  
  1326. #define TBNF_IMAGE              0x00000001 
  1327. #define TBNF_TEXT               0x00000002 
  1328. #define TBNF_DI_SETITEM         0x10000000 
  1329.  
  1330. typedef struct { 
  1331.     NMHDR  hdr; 
  1332.     DWORD dwMask;     // [in] Specifies the values requested .[out] Client ask the data to be set for future use 
  1333.     int idCommand;    // [in] id of button we're requesting info for 
  1334.     DWORD lParam;     // [in] lParam of button 
  1335.     int iImage;       // [out] image index 
  1336.     LPSTR pszText;    // [out] new text for item 
  1337.     int cchText;      // [in] size of buffer pointed to by pszText 
  1338. } NMTBDISPINFOA, *LPNMTBDISPINFOA; 
  1339.  
  1340. typedef struct { 
  1341.     NMHDR hdr; 
  1342.     DWORD dwMask;      //[in] Specifies the values requested .[out] Client ask the data to be set for future use 
  1343.     int idCommand;    // [in] id of button we're requesting info for 
  1344.     DWORD lParam;     // [in] lParam of button 
  1345.     int iImage;       // [out] image index 
  1346.     LPWSTR pszText;   // [out] new text for item 
  1347.     int cchText;      // [in] size of buffer pointed to by pszText 
  1348. } NMTBDISPINFOW, *LPNMTBDISPINFOW; 
  1349.  
  1350.  
  1351. #ifdef UNICODE 
  1352. #define TBN_GETDISPINFO       TBN_GETDISPINFOW 
  1353. #define NMTBDISPINFO      NMTBDISPINFOW 
  1354. #define LPNMTBDISPINFO        LPNMTBDISPINFOW 
  1355. #else 
  1356. #define TBN_GETDISPINFO       TBN_GETDISPINFOA 
  1357. #define NMTBDISPINFO          NMTBDISPINFOA 
  1358. #define LPNMTBDISPINFO        LPNMTBDISPINFOA 
  1359. #endif 
  1360.  
  1361. // Return codes for TBN_DROPDOWN 
  1362. #define TBDDRET_DEFAULT         0 
  1363. #define TBDDRET_NODEFAULT       1 
  1364. #define TBDDRET_TREATPRESSED    2       // Treat as a standard press button 
  1365.  
  1366. #endif 
  1367.  
  1368.  
  1369. #ifdef UNICODE 
  1370. #define TBN_GETBUTTONINFO       TBN_GETBUTTONINFOW 
  1371. #else 
  1372. #define TBN_GETBUTTONINFO       TBN_GETBUTTONINFOA 
  1373. #endif 
  1374.  
  1375. #if (_WIN32_IE >= 0x0300) 
  1376. #define TBNOTIFYA NMTOOLBARA 
  1377. #define TBNOTIFYW NMTOOLBARW 
  1378. #define LPTBNOTIFYA LPNMTOOLBARA 
  1379. #define LPTBNOTIFYW LPNMTOOLBARW 
  1380. #else 
  1381. #define tagNMTOOLBARA  tagTBNOTIFYA 
  1382. #define NMTOOLBARA     TBNOTIFYA 
  1383. #define LPNMTOOLBARA   LPTBNOTIFYA 
  1384. #define tagNMTOOLBARW  tagTBNOTIFYW 
  1385. #define NMTOOLBARW     TBNOTIFYW 
  1386. #define LPNMTOOLBARW   LPTBNOTIFYW 
  1387. #endif 
  1388.  
  1389. #define TBNOTIFY       NMTOOLBAR 
  1390. #define LPTBNOTIFY     LPNMTOOLBAR 
  1391.  
  1392. typedef struct tagNMTOOLBARA { 
  1393. #if (_WIN32_IE >= 0x0300) 
  1394.     NMHDR   hdr; 
  1395. #endif 
  1396.     int     iItem; 
  1397.     TBBUTTON tbButton; 
  1398.     int     cchText; 
  1399.     LPSTR   pszText; 
  1400. } NMTOOLBARA, FAR* LPNMTOOLBARA; 
  1401.  
  1402.  
  1403. typedef struct tagNMTOOLBARW { 
  1404. #if (_WIN32_IE >= 0x0300) 
  1405.     NMHDR   hdr; 
  1406. #endif 
  1407.     int     iItem; 
  1408.     TBBUTTON tbButton; 
  1409.     int     cchText; 
  1410.     LPWSTR   pszText; 
  1411. } NMTOOLBARW, FAR* LPNMTOOLBARW; 
  1412.  
  1413.  
  1414. #ifdef UNICODE 
  1415. #define NMTOOLBAR               NMTOOLBARW 
  1416. #define LPNMTOOLBAR             LPNMTOOLBARW 
  1417. #else 
  1418. #define NMTOOLBAR               NMTOOLBARA 
  1419. #define LPNMTOOLBAR             LPNMTOOLBARA 
  1420. #endif 
  1421.  
  1422. #endif 
  1423.  
  1424. #endif      // NOTOOLBAR 
  1425.  
  1426.  
  1427. #if (_WIN32_IE >= 0x0300) 
  1428. //====== REBAR CONTROL ======================================================== 
  1429.  
  1430. #ifndef NOREBAR 
  1431.  
  1432. #ifdef _WIN32 
  1433. #define REBARCLASSNAMEW         L"ReBarWindow32" 
  1434. #define REBARCLASSNAMEA         "ReBarWindow32" 
  1435.  
  1436. #ifdef  UNICODE 
  1437. #define REBARCLASSNAME          REBARCLASSNAMEW 
  1438. #else 
  1439. #define REBARCLASSNAME          REBARCLASSNAMEA 
  1440. #endif 
  1441.  
  1442. #else 
  1443. #define REBARCLASSNAME          "ReBarWindow" 
  1444. #endif 
  1445.  
  1446. #define RBIM_IMAGELIST  0x00000001 
  1447.  
  1448. #if (_WIN32_IE >= 0x0400) 
  1449. #define RBS_TOOLTIPS        0x0100 
  1450. #define RBS_VARHEIGHT       0x0200 
  1451. #define RBS_BANDBORDERS     0x0400 
  1452. #define RBS_FIXEDORDER      0x0800 
  1453. #define RBS_REGISTERDROP    0x1000 
  1454. #define RBS_AUTOSIZE        0x2000 
  1455. #define RBS_VERTICALGRIPPER 0x4000  // this always has the vertical gripper (default for horizontal mode) 
  1456. #define RBS_DBLCLKTOGGLE    0x8000 
  1457. #else 
  1458. #define RBS_TOOLTIPS        0x00000100 
  1459. #define RBS_VARHEIGHT       0x00000200 
  1460. #define RBS_BANDBORDERS     0x00000400 
  1461. #define RBS_FIXEDORDER      0x00000800 
  1462. #endif      // _WIN32_IE >= 0x0400 
  1463.  
  1464.  
  1465. typedef struct tagREBARINFO 
  1466.     UINT        cbSize; 
  1467.     UINT        fMask; 
  1468. #ifndef NOIMAGEAPIS 
  1469.     HIMAGELIST  himl; 
  1470. #else 
  1471.     HANDLE      himl; 
  1472. #endif 
  1473. }   REBARINFO, FAR *LPREBARINFO; 
  1474.  
  1475. #define RBBS_BREAK          0x00000001  // break to new line 
  1476. #define RBBS_FIXEDSIZE      0x00000002  // band can't be sized 
  1477. #define RBBS_CHILDEDGE      0x00000004  // edge around top & bottom of child window 
  1478. #define RBBS_HIDDEN         0x00000008  // don't show 
  1479. #define RBBS_NOVERT         0x00000010  // don't show when vertical 
  1480. #define RBBS_FIXEDBMP       0x00000020  // bitmap doesn't move during band resize 
  1481. #if (_WIN32_IE >= 0x0400) 
  1482. #define RBBS_VARIABLEHEIGHT 0x00000040  // allow autosizing of this child vertically 
  1483. #define RBBS_GRIPPERALWAYS  0x00000080  // always show the gripper 
  1484. #define RBBS_NOGRIPPER      0x00000100  // never show the gripper 
  1485. #endif 
  1486.  
  1487. #define RBBIM_STYLE         0x00000001 
  1488. #define RBBIM_COLORS        0x00000002 
  1489. #define RBBIM_TEXT          0x00000004 
  1490. #define RBBIM_IMAGE         0x00000008 
  1491. #define RBBIM_CHILD         0x00000010 
  1492. #define RBBIM_CHILDSIZE     0x00000020 
  1493. #define RBBIM_SIZE          0x00000040 
  1494. #define RBBIM_BACKGROUND    0x00000080 
  1495. #define RBBIM_ID            0x00000100 
  1496. #if (_WIN32_IE >= 0x0400) 
  1497. #define RBBIM_IDEALSIZE     0x00000200 
  1498. #define RBBIM_LPARAM        0x00000400 
  1499. #define RBBIM_HEADERSIZE    0x00000800  // control the size of the header 
  1500. #endif 
  1501.  
  1502. typedef struct tagREBARBANDINFOA 
  1503.     UINT        cbSize; 
  1504.     UINT        fMask; 
  1505.     UINT        fStyle; 
  1506.     COLORREF    clrFore; 
  1507.     COLORREF    clrBack; 
  1508.     LPSTR       lpText; 
  1509.     UINT        cch; 
  1510.     int         iImage; 
  1511.     HWND        hwndChild; 
  1512.     UINT        cxMinChild; 
  1513.     UINT        cyMinChild; 
  1514.     UINT        cx; 
  1515.     HBITMAP     hbmBack; 
  1516.     UINT        wID; 
  1517. #if (_WIN32_IE >= 0x0400) 
  1518.     UINT        cyChild; 
  1519.     UINT        cyMaxChild; 
  1520.     UINT        cyIntegral; 
  1521.     UINT        cxIdeal; 
  1522.     LPARAM      lParam; 
  1523.     UINT        cxHeader; 
  1524. #endif 
  1525. }   REBARBANDINFOA, FAR *LPREBARBANDINFOA; 
  1526. typedef REBARBANDINFOA CONST FAR *LPCREBARBANDINFOA; 
  1527.  
  1528. typedef struct tagREBARBANDINFOW 
  1529.     UINT        cbSize; 
  1530.     UINT        fMask; 
  1531.     UINT        fStyle; 
  1532.     COLORREF    clrFore; 
  1533.     COLORREF    clrBack; 
  1534.     LPWSTR      lpText; 
  1535.     UINT        cch; 
  1536.     int         iImage; 
  1537.     HWND        hwndChild; 
  1538.     UINT        cxMinChild; 
  1539.     UINT        cyMinChild; 
  1540.     UINT        cx; 
  1541.     HBITMAP     hbmBack; 
  1542.     UINT        wID; 
  1543. #if (_WIN32_IE >= 0x0400) 
  1544.     UINT        cyChild; 
  1545.     UINT        cyMaxChild; 
  1546.     UINT        cyIntegral; 
  1547.     UINT        cxIdeal; 
  1548.     LPARAM      lParam; 
  1549.     UINT        cxHeader; 
  1550. #endif 
  1551. }   REBARBANDINFOW, FAR *LPREBARBANDINFOW; 
  1552. typedef REBARBANDINFOW CONST FAR *LPCREBARBANDINFOW; 
  1553.  
  1554. #ifdef UNICODE 
  1555. #define REBARBANDINFO       REBARBANDINFOW 
  1556. #define LPREBARBANDINFO     LPREBARBANDINFOW 
  1557. #define LPCREBARBANDINFO    LPCREBARBANDINFOW 
  1558. #else 
  1559. #define REBARBANDINFO       REBARBANDINFOA 
  1560. #define LPREBARBANDINFO     LPREBARBANDINFOA 
  1561. #define LPCREBARBANDINFO    LPCREBARBANDINFOA 
  1562. #endif 
  1563.  
  1564. #define RB_INSERTBANDA  (WM_USER +  1) 
  1565. #define RB_DELETEBAND   (WM_USER +  2) 
  1566. #define RB_GETBARINFO   (WM_USER +  3) 
  1567. #define RB_SETBARINFO   (WM_USER +  4) 
  1568. #if (_WIN32_IE < 0x0400) 
  1569. #define RB_GETBANDINFO  (WM_USER +  5) 
  1570. #endif 
  1571. #define RB_SETBANDINFOA (WM_USER +  6) 
  1572. #define RB_SETPARENT    (WM_USER +  7) 
  1573. #if (_WIN32_IE >= 0x0400) 
  1574. #define RB_HITTEST      (WM_USER +  8) 
  1575. #define RB_GETRECT      (WM_USER +  9) 
  1576. #endif 
  1577. #define RB_INSERTBANDW  (WM_USER +  10) 
  1578. #define RB_SETBANDINFOW (WM_USER +  11) 
  1579. #define RB_GETBANDCOUNT (WM_USER +  12) 
  1580. #define RB_GETROWCOUNT  (WM_USER +  13) 
  1581. #define RB_GETROWHEIGHT (WM_USER +  14) 
  1582. #if (_WIN32_IE >= 0x0400) 
  1583. #define RB_IDTOINDEX    (WM_USER +  16) // wParam == id 
  1584. #define RB_GETTOOLTIPS  (WM_USER +  17) 
  1585. #define RB_SETTOOLTIPS  (WM_USER +  18) 
  1586. #define RB_SETBKCOLOR   (WM_USER +  19) // sets the default BK color 
  1587. #define RB_GETBKCOLOR   (WM_USER +  20) // defaults to CLR_NONE 
  1588. #define RB_SETTEXTCOLOR (WM_USER +  21) 
  1589. #define RB_GETTEXTCOLOR (WM_USER +  22) // defaults to 0x00000000 
  1590. #define RB_SIZETORECT   (WM_USER +  23) // resize the rebar/break bands and such to this rect (lparam) 
  1591. #endif      // _WIN32_IE >= 0x0400 
  1592.  
  1593. #define RB_SETCOLORSCHEME   CCM_SETCOLORSCHEME  // lParama is color scheme 
  1594.  
  1595. #ifdef UNICODE 
  1596. #define RB_INSERTBAND   RB_INSERTBANDW 
  1597. #define RB_SETBANDINFO   RB_SETBANDINFOW 
  1598. #else 
  1599. #define RB_INSERTBAND   RB_INSERTBANDA 
  1600. #define RB_SETBANDINFO   RB_SETBANDINFOA 
  1601. #endif 
  1602.  
  1603. #if (_WIN32_IE >= 0x0400) 
  1604. // for manual drag control 
  1605. // lparam == cursor pos 
  1606.         // -1 means do it yourself. 
  1607.         // -2 means use what you had saved before 
  1608. #define RB_BEGINDRAG    (WM_USER + 24) 
  1609. #define RB_ENDDRAG      (WM_USER + 25) 
  1610. #define RB_DRAGMOVE     (WM_USER + 26) 
  1611. #define RB_GETBARHEIGHT (WM_USER + 27) 
  1612. #define RB_GETBANDINFOW (WM_USER + 28) 
  1613. #define RB_GETBANDINFOA (WM_USER + 29) 
  1614.  
  1615. #ifdef UNICODE 
  1616. #define RB_GETBANDINFO   RB_GETBANDINFOW 
  1617. #else 
  1618. #define RB_GETBANDINFO   RB_GETBANDINFOA 
  1619. #endif 
  1620.  
  1621. #define RB_MINIMIZEBAND (WM_USER + 30) 
  1622. #define RB_MAXIMIZEBAND (WM_USER + 31) 
  1623.  
  1624. #define RB_GETDROPTARGET (WM_USER + 32) 
  1625.  
  1626. #define RB_GETBANDBORDERS (WM_USER + 34)  // returns in lparam = lprc the amount of edges added to band wparam 
  1627.  
  1628. #define RB_SHOWBAND     (WM_USER + 35)      // show/hide band 
  1629. #define RB_SETPALETTE   (WM_USER + 37) 
  1630. #define RB_GETPALETTE   (WM_USER + 38) 
  1631. #define RB_MOVEBAND     (WM_USER + 39) 
  1632.  
  1633. #endif      // _WIN32_IE >= 0x0400 
  1634.  
  1635. #define RBN_HEIGHTCHANGE    (RBN_FIRST - 0) 
  1636.  
  1637. #if (_WIN32_IE >= 0x0400) 
  1638. #define RBN_GETOBJECT       (RBN_FIRST - 1) 
  1639. #define RBN_LAYOUTCHANGED   (RBN_FIRST - 2) 
  1640. #define RBN_AUTOSIZE        (RBN_FIRST - 3) 
  1641. #define RBN_BEGINDRAG       (RBN_FIRST - 4) 
  1642. #define RBN_ENDDRAG         (RBN_FIRST - 5) 
  1643. #define RBN_DELETINGBAND    (RBN_FIRST - 6)     // Uses NMREBAR 
  1644. #define RBN_DELETEDBAND     (RBN_FIRST - 7)     // Uses NMREBAR 
  1645. #define RBN_CHILDSIZE       (RBN_FIRST - 8) 
  1646.  
  1647.  
  1648. typedef struct tagNMREBARCHILDSIZE 
  1649.     NMHDR hdr; 
  1650.     UINT uBand; 
  1651.     UINT wID; 
  1652.     RECT rcChild; 
  1653.     RECT rcBand; 
  1654. } NMREBARCHILDSIZE, *LPNMREBARCHILDSIZE; 
  1655.  
  1656. typedef struct tagNMREBAR 
  1657.     NMHDR   hdr; 
  1658.     DWORD   dwMask;           // RBNM_* 
  1659.     UINT    uBand; 
  1660.     UINT    fStyle; 
  1661.     UINT    wID; 
  1662.     LPARAM  lParam; 
  1663. } NMREBAR, *LPNMREBAR; 
  1664.  
  1665. // Mask flags for NMREBAR 
  1666. #define RBNM_ID         0x00000001 
  1667. #define RBNM_STYLE      0x00000002 
  1668. #define RBNM_LPARAM     0x00000004 
  1669.  
  1670.  
  1671. typedef struct tagNMRBAUTOSIZE 
  1672.     NMHDR hdr; 
  1673.     BOOL fChanged; 
  1674.     RECT rcTarget; 
  1675.     RECT rcActual; 
  1676. } NMRBAUTOSIZE, *LPNMRBAUTOSIZE; 
  1677.  
  1678. #define RBHT_NOWHERE    0x0001 
  1679. #define RBHT_CAPTION    0x0002 
  1680. #define RBHT_CLIENT     0x0003 
  1681. #define RBHT_GRABBER    0x0004 
  1682.  
  1683. typedef struct _RB_HITTESTINFO 
  1684.     POINT pt; 
  1685.     UINT flags; 
  1686.     int iBand; 
  1687. } RBHITTESTINFO, FAR *LPRBHITTESTINFO; 
  1688.  
  1689. #endif      // _WIN32_IE >= 0x0400 
  1690.  
  1691. #endif      // NOREBAR 
  1692.  
  1693. #endif      // _WIN32_IE >= 0x0300 
  1694.  
  1695. //====== TOOLTIPS CONTROL ===================================================== 
  1696.  
  1697. #ifndef NOTOOLTIPS 
  1698.  
  1699. #ifdef _WIN32 
  1700.  
  1701. #define TOOLTIPS_CLASSW         L"tooltips_class32" 
  1702. #define TOOLTIPS_CLASSA         "tooltips_class32" 
  1703.  
  1704. #ifdef UNICODE 
  1705. #define TOOLTIPS_CLASS          TOOLTIPS_CLASSW 
  1706. #else 
  1707. #define TOOLTIPS_CLASS          TOOLTIPS_CLASSA 
  1708. #endif 
  1709.  
  1710. #else 
  1711. #define TOOLTIPS_CLASS          "tooltips_class" 
  1712. #endif 
  1713.  
  1714. #if (_WIN32_IE >= 0x0300) 
  1715. #define LPTOOLINFOA   LPTTTOOLINFOA 
  1716. #define LPTOOLINFOW   LPTTTOOLINFOW 
  1717. #define TOOLINFOA       TTTOOLINFOA 
  1718. #define TOOLINFOW       TTTOOLINFOW 
  1719. #else 
  1720. #define   TTTOOLINFOA   TOOLINFOA 
  1721. #define LPTTTOOLINFOA LPTOOLINFOA 
  1722. #define   TTTOOLINFOW   TOOLINFOW 
  1723. #define LPTTTOOLINFOW LPTOOLINFOW 
  1724. #endif 
  1725.  
  1726. #define LPTOOLINFO    LPTTTOOLINFO 
  1727. #define TOOLINFO        TTTOOLINFO 
  1728.  
  1729. typedef struct tagTOOLINFOA { 
  1730.     UINT cbSize; 
  1731.     UINT uFlags; 
  1732.     HWND hwnd; 
  1733.     UINT uId; 
  1734.     RECT rect; 
  1735.     HINSTANCE hinst; 
  1736.     LPSTR lpszText; 
  1737. #if (_WIN32_IE >= 0x0300) 
  1738.     LPARAM lParam; 
  1739. #endif 
  1740. } TTTOOLINFOA, NEAR *PTOOLINFOA, FAR *LPTTTOOLINFOA; 
  1741.  
  1742. typedef struct tagTOOLINFOW { 
  1743.     UINT cbSize; 
  1744.     UINT uFlags; 
  1745.     HWND hwnd; 
  1746.     UINT uId; 
  1747.     RECT rect; 
  1748.     HINSTANCE hinst; 
  1749.     LPWSTR lpszText; 
  1750. #if (_WIN32_IE >= 0x0300) 
  1751.     LPARAM lParam; 
  1752. #endif 
  1753. } TTTOOLINFOW, NEAR *PTOOLINFOW, FAR* LPTTTOOLINFOW; 
  1754.  
  1755. #ifdef UNICODE 
  1756. #define TTTOOLINFO              TTTOOLINFOW 
  1757. #define PTOOLINFO               PTOOLINFOW 
  1758. #define LPTTTOOLINFO            LPTTTOOLINFOW 
  1759. #else 
  1760. #define PTOOLINFO               PTOOLINFOA 
  1761. #define TTTOOLINFO              TTTOOLINFOA 
  1762. #define LPTTTOOLINFO            LPTTTOOLINFOA 
  1763. #endif 
  1764.  
  1765. // begin_r_commctrl 
  1766.  
  1767. #define TTS_ALWAYSTIP           0x01 
  1768. #define TTS_NOPREFIX            0x02 
  1769.  
  1770. // end_r_commctrl 
  1771.  
  1772. #define TTF_IDISHWND            0x0001 
  1773.  
  1774. // Use this to center around trackpoint in trackmode 
  1775. // -OR- to center around tool in normal mode. 
  1776. // Use TTF_ABSOLUTE to place the tip exactly at the track coords when 
  1777. // in tracking mode.  TTF_ABSOLUTE can be used in conjunction with TTF_CENTERTIP 
  1778. // to center the tip absolutely about the track point. 
  1779.  
  1780. #define TTF_CENTERTIP           0x0002 
  1781. #define TTF_RTLREADING          0x0004 
  1782. #if (_WIN32_IE >= 0x0300) 
  1783. #define TTF_SUBCLASS            0x0010 
  1784. #define TTF_TRACK               0x0020 
  1785. #define TTF_ABSOLUTE            0x0080 
  1786. #define TTF_TRANSPARENT         0x0100 
  1787. #define TTF_DI_SETITEM          0x8000       // valid only on the TTN_NEEDTEXT callback 
  1788. #endif      // _WIN32_IE >= 0x0300 
  1789.  
  1790. #define TTDT_AUTOMATIC          0 
  1791. #define TTDT_RESHOW             1 
  1792. #define TTDT_AUTOPOP            2 
  1793. #define TTDT_INITIAL            3 
  1794.  
  1795. #define TTM_ACTIVATE            (WM_USER + 1) 
  1796. #define TTM_SETDELAYTIME        (WM_USER + 3) 
  1797. #define TTM_ADDTOOLA            (WM_USER + 4) 
  1798. #define TTM_ADDTOOLW            (WM_USER + 50) 
  1799. #define TTM_DELTOOLA            (WM_USER + 5) 
  1800. #define TTM_DELTOOLW            (WM_USER + 51) 
  1801. #define TTM_NEWTOOLRECTA        (WM_USER + 6) 
  1802. #define TTM_NEWTOOLRECTW        (WM_USER + 52) 
  1803. #define TTM_RELAYEVENT          (WM_USER + 7) 
  1804.  
  1805. #define TTM_GETTOOLINFOA        (WM_USER + 8) 
  1806. #define TTM_GETTOOLINFOW        (WM_USER + 53) 
  1807.  
  1808. #define TTM_SETTOOLINFOA        (WM_USER + 9) 
  1809. #define TTM_SETTOOLINFOW        (WM_USER + 54) 
  1810.  
  1811. #define TTM_HITTESTA            (WM_USER +10) 
  1812. #define TTM_HITTESTW            (WM_USER +55) 
  1813. #define TTM_GETTEXTA            (WM_USER +11) 
  1814. #define TTM_GETTEXTW            (WM_USER +56) 
  1815. #define TTM_UPDATETIPTEXTA      (WM_USER +12) 
  1816. #define TTM_UPDATETIPTEXTW      (WM_USER +57) 
  1817. #define TTM_GETTOOLCOUNT        (WM_USER +13) 
  1818. #define TTM_ENUMTOOLSA          (WM_USER +14) 
  1819. #define TTM_ENUMTOOLSW          (WM_USER +58) 
  1820. #define TTM_GETCURRENTTOOLA     (WM_USER + 15) 
  1821. #define TTM_GETCURRENTTOOLW     (WM_USER + 59) 
  1822. #define TTM_WINDOWFROMPOINT     (WM_USER + 16) 
  1823. #if (_WIN32_IE >= 0x0300) 
  1824. #define TTM_TRACKACTIVATE       (WM_USER + 17)  // wParam = TRUE/FALSE start end  lparam = LPTOOLINFO 
  1825. #define TTM_TRACKPOSITION       (WM_USER + 18)  // lParam = dwPos 
  1826. #define TTM_SETTIPBKCOLOR       (WM_USER + 19) 
  1827. #define TTM_SETTIPTEXTCOLOR     (WM_USER + 20) 
  1828. #define TTM_GETDELAYTIME        (WM_USER + 21) 
  1829. #define TTM_GETTIPBKCOLOR       (WM_USER + 22) 
  1830. #define TTM_GETTIPTEXTCOLOR     (WM_USER + 23) 
  1831. #define TTM_SETMAXTIPWIDTH      (WM_USER + 24) 
  1832. #define TTM_GETMAXTIPWIDTH      (WM_USER + 25) 
  1833. #define TTM_SETMARGIN           (WM_USER + 26)  // lParam = lprc 
  1834. #define TTM_GETMARGIN           (WM_USER + 27)  // lParam = lprc 
  1835. #define TTM_POP                 (WM_USER + 28) 
  1836. #endif 
  1837. #if (_WIN32_IE >= 0x0400) 
  1838. #define TTM_UPDATE              (WM_USER + 29) 
  1839. #endif 
  1840.  
  1841.  
  1842. #ifdef UNICODE 
  1843. #define TTM_ADDTOOL             TTM_ADDTOOLW 
  1844. #define TTM_DELTOOL             TTM_DELTOOLW 
  1845. #define TTM_NEWTOOLRECT         TTM_NEWTOOLRECTW 
  1846. #define TTM_GETTOOLINFO         TTM_GETTOOLINFOW 
  1847. #define TTM_SETTOOLINFO         TTM_SETTOOLINFOW 
  1848. #define TTM_HITTEST             TTM_HITTESTW 
  1849. #define TTM_GETTEXT             TTM_GETTEXTW 
  1850. #define TTM_UPDATETIPTEXT       TTM_UPDATETIPTEXTW 
  1851. #define TTM_ENUMTOOLS           TTM_ENUMTOOLSW 
  1852. #define TTM_GETCURRENTTOOL      TTM_GETCURRENTTOOLW 
  1853. #else 
  1854. #define TTM_ADDTOOL             TTM_ADDTOOLA 
  1855. #define TTM_DELTOOL             TTM_DELTOOLA 
  1856. #define TTM_NEWTOOLRECT         TTM_NEWTOOLRECTA 
  1857. #define TTM_GETTOOLINFO         TTM_GETTOOLINFOA 
  1858. #define TTM_SETTOOLINFO         TTM_SETTOOLINFOA 
  1859. #define TTM_HITTEST             TTM_HITTESTA 
  1860. #define TTM_GETTEXT             TTM_GETTEXTA 
  1861. #define TTM_UPDATETIPTEXT       TTM_UPDATETIPTEXTA 
  1862. #define TTM_ENUMTOOLS           TTM_ENUMTOOLSA 
  1863. #define TTM_GETCURRENTTOOL      TTM_GETCURRENTTOOLA 
  1864. #endif 
  1865.  
  1866.  
  1867. #if (_WIN32_IE >= 0x0300) 
  1868. #define LPHITTESTINFOW    LPTTHITTESTINFOW 
  1869. #define LPHITTESTINFOA    LPTTHITTESTINFOA 
  1870. #else 
  1871. #define LPTTHITTESTINFOA  LPHITTESTINFOA 
  1872. #define LPTTHITTESTINFOW  LPHITTESTINFOW 
  1873. #endif 
  1874.  
  1875. #define LPHITTESTINFO     LPTTHITTESTINFO 
  1876.  
  1877. typedef struct _TT_HITTESTINFOA { 
  1878.     HWND hwnd; 
  1879.     POINT pt; 
  1880.     TTTOOLINFOA ti; 
  1881. } TTHITTESTINFOA, FAR * LPTTHITTESTINFOA; 
  1882.  
  1883. typedef struct _TT_HITTESTINFOW { 
  1884.     HWND hwnd; 
  1885.     POINT pt; 
  1886.     TTTOOLINFOW ti; 
  1887. } TTHITTESTINFOW, FAR * LPTTHITTESTINFOW; 
  1888.  
  1889. #ifdef UNICODE 
  1890. #define TTHITTESTINFO           TTHITTESTINFOW 
  1891. #define LPTTHITTESTINFO         LPTTHITTESTINFOW 
  1892. #else 
  1893. #define TTHITTESTINFO           TTHITTESTINFOA 
  1894. #define LPTTHITTESTINFO         LPTTHITTESTINFOA 
  1895. #endif 
  1896.  
  1897. #define TTN_GETDISPINFOA        (TTN_FIRST - 0) 
  1898. #define TTN_GETDISPINFOW        (TTN_FIRST - 10) 
  1899. #define TTN_SHOW                (TTN_FIRST - 1) 
  1900. #define TTN_POP                 (TTN_FIRST - 2) 
  1901.  
  1902. #ifdef UNICODE 
  1903. #define TTN_GETDISPINFO         TTN_GETDISPINFOW 
  1904. #else 
  1905. #define TTN_GETDISPINFO         TTN_GETDISPINFOA 
  1906. #endif 
  1907.  
  1908. #define TTN_NEEDTEXT            TTN_GETDISPINFO 
  1909. #define TTN_NEEDTEXTA           TTN_GETDISPINFOA 
  1910. #define TTN_NEEDTEXTW           TTN_GETDISPINFOW 
  1911.  
  1912. #if (_WIN32_IE >= 0x0300) 
  1913. #define TOOLTIPTEXTW NMTTDISPINFOW 
  1914. #define TOOLTIPTEXTA NMTTDISPINFOA 
  1915. #define LPTOOLTIPTEXTA LPNMTTDISPINFOA 
  1916. #define LPTOOLTIPTEXTW LPNMTTDISPINFOW 
  1917. #else 
  1918. #define tagNMTTDISPINFOA  tagTOOLTIPTEXTA 
  1919. #define NMTTDISPINFOA     TOOLTIPTEXTA 
  1920. #define LPNMTTDISPINFOA   LPTOOLTIPTEXTA 
  1921. #define tagNMTTDISPINFOW  tagTOOLTIPTEXTW 
  1922. #define NMTTDISPINFOW     TOOLTIPTEXTW 
  1923. #define LPNMTTDISPINFOW   LPTOOLTIPTEXTW 
  1924. #endif 
  1925.  
  1926. #define TOOLTIPTEXT    NMTTDISPINFO 
  1927. #define LPTOOLTIPTEXT  LPNMTTDISPINFO 
  1928.  
  1929. typedef struct tagNMTTDISPIFNOA { 
  1930.     NMHDR hdr; 
  1931.     LPSTR lpszText; 
  1932.     char szText[80]; 
  1933.     HINSTANCE hinst; 
  1934.     UINT uFlags; 
  1935. #if (_WIN32_IE >= 0x0300) 
  1936.     LPARAM lParam; 
  1937. #endif 
  1938. } NMTTDISPINFOA, FAR *LPNMTTDISPINFOA; 
  1939.  
  1940. typedef struct tagNMTTDISPINFOW { 
  1941.     NMHDR hdr; 
  1942.     LPWSTR lpszText; 
  1943.     WCHAR szText[80]; 
  1944.     HINSTANCE hinst; 
  1945.     UINT uFlags; 
  1946. #if (_WIN32_IE >= 0x0300) 
  1947.     LPARAM lParam; 
  1948. #endif 
  1949. } NMTTDISPINFOW, FAR *LPNMTTDISPINFOW; 
  1950.  
  1951. #ifdef UNICODE 
  1952. #define NMTTDISPINFO            NMTTDISPINFOW 
  1953. #define LPNMTTDISPINFO          LPNMTTDISPINFOW 
  1954. #else 
  1955. #define NMTTDISPINFO            NMTTDISPINFOA 
  1956. #define LPNMTTDISPINFO          LPNMTTDISPINFOA 
  1957. #endif 
  1958.  
  1959. #endif      // NOTOOLTIPS 
  1960.  
  1961.  
  1962. //====== STATUS BAR CONTROL =================================================== 
  1963.  
  1964. #ifndef NOSTATUSBAR 
  1965.  
  1966. // begin_r_commctrl 
  1967.  
  1968. #define SBARS_SIZEGRIP          0x0100 
  1969.  
  1970. // end_r_commctrl 
  1971.  
  1972. WINCOMMCTRLAPI void WINAPI DrawStatusTextA(HDC hDC, LPRECT lprc, LPCSTR pszText, UINT uFlags); 
  1973. WINCOMMCTRLAPI void WINAPI DrawStatusTextW(HDC hDC, LPRECT lprc, LPCWSTR pszText, UINT uFlags); 
  1974.  
  1975. WINCOMMCTRLAPI HWND WINAPI CreateStatusWindowA(LONG style, LPCSTR lpszText, HWND hwndParent, UINT wID); 
  1976. WINCOMMCTRLAPI HWND WINAPI CreateStatusWindowW(LONG style, LPCWSTR lpszText, HWND hwndParent, UINT wID); 
  1977.  
  1978. #ifdef UNICODE 
  1979. #define CreateStatusWindow      CreateStatusWindowW 
  1980. #define DrawStatusText          DrawStatusTextW 
  1981. #else 
  1982. #define CreateStatusWindow      CreateStatusWindowA 
  1983. #define DrawStatusText          DrawStatusTextA 
  1984. #endif 
  1985.  
  1986. #ifdef _WIN32 
  1987. #define STATUSCLASSNAMEW        L"msctls_statusbar32" 
  1988. #define STATUSCLASSNAMEA        "msctls_statusbar32" 
  1989.  
  1990. #ifdef UNICODE 
  1991. #define STATUSCLASSNAME         STATUSCLASSNAMEW 
  1992. #else 
  1993. #define STATUSCLASSNAME         STATUSCLASSNAMEA 
  1994. #endif 
  1995.  
  1996. #else 
  1997. #define STATUSCLASSNAME         "msctls_statusbar" 
  1998. #endif 
  1999.  
  2000. #define SB_SETTEXTA             (WM_USER+1) 
  2001. #define SB_SETTEXTW             (WM_USER+11) 
  2002. #define SB_GETTEXTA             (WM_USER+2) 
  2003. #define SB_GETTEXTW             (WM_USER+13) 
  2004. #define SB_GETTEXTLENGTHA       (WM_USER+3) 
  2005. #define SB_GETTEXTLENGTHW       (WM_USER+12) 
  2006.  
  2007. #ifdef UNICODE 
  2008. #define SB_GETTEXT              SB_GETTEXTW 
  2009. #define SB_SETTEXT              SB_SETTEXTW 
  2010. #define SB_GETTEXTLENGTH        SB_GETTEXTLENGTHW 
  2011. #if (_WIN32_IE >= 0x0400) 
  2012. #define SB_SETTIPTEXT           SB_SETTIPTEXTW 
  2013. #define SB_GETTIPTEXT           SB_GETTIPTEXTW 
  2014. #endif 
  2015. #else 
  2016. #define SB_GETTEXT              SB_GETTEXTA 
  2017. #define SB_SETTEXT              SB_SETTEXTA 
  2018. #define SB_GETTEXTLENGTH        SB_GETTEXTLENGTHA 
  2019. #if (_WIN32_IE >= 0x0400) 
  2020. #define SB_SETTIPTEXT           SB_SETTIPTEXTA 
  2021. #define SB_GETTIPTEXT           SB_GETTIPTEXTA 
  2022. #endif 
  2023. #endif 
  2024.  
  2025.  
  2026. #define SB_SETPARTS             (WM_USER+4) 
  2027. #define SB_GETPARTS             (WM_USER+6) 
  2028. #define SB_GETBORDERS           (WM_USER+7) 
  2029. #define SB_SETMINHEIGHT         (WM_USER+8) 
  2030. #define SB_SIMPLE               (WM_USER+9) 
  2031. #define SB_GETRECT              (WM_USER+10) 
  2032. #if (_WIN32_IE >= 0x0300) 
  2033. #define SB_ISSIMPLE             (WM_USER+14) 
  2034. #endif 
  2035. #if (_WIN32_IE >= 0x0400) 
  2036. #define SB_SETICON              (WM_USER+15) 
  2037. #define SB_SETTIPTEXTA          (WM_USER+16) 
  2038. #define SB_SETTIPTEXTW          (WM_USER+17) 
  2039. #define SB_GETTIPTEXTA          (WM_USER+18) 
  2040. #define SB_GETTIPTEXTW          (WM_USER+19) 
  2041. #endif 
  2042.  
  2043. #define SBT_OWNERDRAW            0x1000 
  2044. #define SBT_NOBORDERS            0x0100 
  2045. #define SBT_POPOUT               0x0200 
  2046. #define SBT_RTLREADING           0x0400 
  2047. #if (_WIN32_IE >= 0x0400) 
  2048. #define SBT_TOOLTIPS             0x0800 
  2049. #endif 
  2050.  
  2051. #define SB_SETBKCOLOR           CCM_SETBKCOLOR      // lParam = bkColor 
  2052.  
  2053. /// status bar notifications 
  2054. #if (_WIN32_IE >= 0x0400) 
  2055. #define SBN_SIMPLEMODECHANGE    (SBN_FIRST - 0) 
  2056. #endif 
  2057.  
  2058. #endif      // NOSTATUSBAR 
  2059.  
  2060. //====== MENU HELP ============================================================ 
  2061.  
  2062. #ifndef NOMENUHELP 
  2063.  
  2064. WINCOMMCTRLAPI void WINAPI MenuHelp(UINT uMsg, WPARAM wParam, LPARAM lParam, HMENU hMainMenu, HINSTANCE hInst, HWND hwndStatus, UINT FAR *lpwIDs); 
  2065. WINCOMMCTRLAPI BOOL WINAPI ShowHideMenuCtl(HWND hWnd, UINT uFlags, LPINT lpInfo); 
  2066. WINCOMMCTRLAPI void WINAPI GetEffectiveClientRect(HWND hWnd, LPRECT lprc, LPINT lpInfo); 
  2067.  
  2068. #define MINSYSCOMMAND   SC_SIZE 
  2069.  
  2070. #endif 
  2071.  
  2072.  
  2073. //====== TRACKBAR CONTROL ===================================================== 
  2074.  
  2075. #ifndef NOTRACKBAR 
  2076.  
  2077. #ifdef _WIN32 
  2078.  
  2079. #define TRACKBAR_CLASSA         "msctls_trackbar32" 
  2080. #define TRACKBAR_CLASSW         L"msctls_trackbar32" 
  2081.  
  2082. #ifdef UNICODE 
  2083. #define  TRACKBAR_CLASS         TRACKBAR_CLASSW 
  2084. #else 
  2085. #define  TRACKBAR_CLASS         TRACKBAR_CLASSA 
  2086. #endif 
  2087.  
  2088. #else 
  2089. #define TRACKBAR_CLASS          "msctls_trackbar" 
  2090. #endif 
  2091.  
  2092.  
  2093. // begin_r_commctrl 
  2094.  
  2095. #define TBS_AUTOTICKS           0x0001 
  2096. #define TBS_VERT                0x0002 
  2097. #define TBS_HORZ                0x0000 
  2098. #define TBS_TOP                 0x0004 
  2099. #define TBS_BOTTOM              0x0000 
  2100. #define TBS_LEFT                0x0004 
  2101. #define TBS_RIGHT               0x0000 
  2102. #define TBS_BOTH                0x0008 
  2103. #define TBS_NOTICKS             0x0010 
  2104. #define TBS_ENABLESELRANGE      0x0020 
  2105. #define TBS_FIXEDLENGTH         0x0040 
  2106. #define TBS_NOTHUMB             0x0080 
  2107. #if (_WIN32_IE >= 0x0300) 
  2108. #define TBS_TOOLTIPS            0x0100 
  2109. #endif 
  2110.  
  2111. // end_r_commctrl 
  2112.  
  2113. #define TBM_GETPOS              (WM_USER) 
  2114. #define TBM_GETRANGEMIN         (WM_USER+1) 
  2115. #define TBM_GETRANGEMAX         (WM_USER+2) 
  2116. #define TBM_GETTIC              (WM_USER+3) 
  2117. #define TBM_SETTIC              (WM_USER+4) 
  2118. #define TBM_SETPOS              (WM_USER+5) 
  2119. #define TBM_SETRANGE            (WM_USER+6) 
  2120. #define TBM_SETRANGEMIN         (WM_USER+7) 
  2121. #define TBM_SETRANGEMAX         (WM_USER+8) 
  2122. #define TBM_CLEARTICS           (WM_USER+9) 
  2123. #define TBM_SETSEL              (WM_USER+10) 
  2124. #define TBM_SETSELSTART         (WM_USER+11) 
  2125. #define TBM_SETSELEND           (WM_USER+12) 
  2126. #define TBM_GETPTICS            (WM_USER+14) 
  2127. #define TBM_GETTICPOS           (WM_USER+15) 
  2128. #define TBM_GETNUMTICS          (WM_USER+16) 
  2129. #define TBM_GETSELSTART         (WM_USER+17) 
  2130. #define TBM_GETSELEND           (WM_USER+18) 
  2131. #define TBM_CLEARSEL            (WM_USER+19) 
  2132. #define TBM_SETTICFREQ          (WM_USER+20) 
  2133. #define TBM_SETPAGESIZE         (WM_USER+21) 
  2134. #define TBM_GETPAGESIZE         (WM_USER+22) 
  2135. #define TBM_SETLINESIZE         (WM_USER+23) 
  2136. #define TBM_GETLINESIZE         (WM_USER+24) 
  2137. #define TBM_GETTHUMBRECT        (WM_USER+25) 
  2138. #define TBM_GETCHANNELRECT      (WM_USER+26) 
  2139. #define TBM_SETTHUMBLENGTH      (WM_USER+27) 
  2140. #define TBM_GETTHUMBLENGTH      (WM_USER+28) 
  2141. #if (_WIN32_IE >= 0x0300) 
  2142. #define TBM_SETTOOLTIPS         (WM_USER+29) 
  2143. #define TBM_GETTOOLTIPS         (WM_USER+30) 
  2144. #define TBM_SETTIPSIDE          (WM_USER+31) 
  2145. // TrackBar Tip Side flags 
  2146. #define TBTS_TOP                0 
  2147. #define TBTS_LEFT               1 
  2148. #define TBTS_BOTTOM             2 
  2149. #define TBTS_RIGHT              3 
  2150.  
  2151. #define TBM_SETBUDDY            (WM_USER+32) // wparam = BOOL fLeft; (or right) 
  2152. #define TBM_GETBUDDY            (WM_USER+33) // wparam = BOOL fLeft; (or right) 
  2153. #endif 
  2154.  
  2155.  
  2156. #define TB_LINEUP               0 
  2157. #define TB_LINEDOWN             1 
  2158. #define TB_PAGEUP               2 
  2159. #define TB_PAGEDOWN             3 
  2160. #define TB_THUMBPOSITION        4 
  2161. #define TB_THUMBTRACK           5 
  2162. #define TB_TOP                  6 
  2163. #define TB_BOTTOM               7 
  2164. #define TB_ENDTRACK             8 
  2165.  
  2166.  
  2167. #if (_WIN32_IE >= 0x0300) 
  2168. // custom draw item specs 
  2169. #define TBCD_TICS    0x0001 
  2170. #define TBCD_THUMB   0x0002 
  2171. #define TBCD_CHANNEL 0x0003 
  2172. #endif 
  2173.  
  2174. #endif // trackbar 
  2175.  
  2176. //====== DRAG LIST CONTROL ==================================================== 
  2177.  
  2178. #ifndef NODRAGLIST 
  2179.  
  2180. typedef struct tagDRAGLISTINFO { 
  2181.     UINT uNotification; 
  2182.     HWND hWnd; 
  2183.     POINT ptCursor; 
  2184. } DRAGLISTINFO, FAR *LPDRAGLISTINFO; 
  2185.  
  2186. #define DL_BEGINDRAG            (WM_USER+133) 
  2187. #define DL_DRAGGING             (WM_USER+134) 
  2188. #define DL_DROPPED              (WM_USER+135) 
  2189. #define DL_CANCELDRAG           (WM_USER+136) 
  2190.  
  2191. #define DL_CURSORSET            0 
  2192. #define DL_STOPCURSOR           1 
  2193. #define DL_COPYCURSOR           2 
  2194. #define DL_MOVECURSOR           3 
  2195.  
  2196. #define DRAGLISTMSGSTRING       TEXT("commctrl_DragListMsg") 
  2197.  
  2198. WINCOMMCTRLAPI BOOL WINAPI MakeDragList(HWND hLB); 
  2199. WINCOMMCTRLAPI void WINAPI DrawInsert(HWND handParent, HWND hLB, int nItem); 
  2200. WINCOMMCTRLAPI int WINAPI LBItemFromPt(HWND hLB, POINT pt, BOOL bAutoScroll); 
  2201.  
  2202. #endif 
  2203.  
  2204.  
  2205. //====== UPDOWN CONTROL ======================================================= 
  2206.  
  2207. #ifndef NOUPDOWN 
  2208.  
  2209. #ifdef _WIN32 
  2210.  
  2211. #define UPDOWN_CLASSA           "msctls_updown32" 
  2212. #define UPDOWN_CLASSW           L"msctls_updown32" 
  2213.  
  2214. #ifdef UNICODE 
  2215. #define  UPDOWN_CLASS           UPDOWN_CLASSW 
  2216. #else 
  2217. #define  UPDOWN_CLASS           UPDOWN_CLASSA 
  2218. #endif 
  2219.  
  2220. #else 
  2221. #define UPDOWN_CLASS            "msctls_updown" 
  2222. #endif 
  2223.  
  2224.  
  2225. typedef struct _UDACCEL { 
  2226.     UINT nSec; 
  2227.     UINT nInc; 
  2228. } UDACCEL, FAR *LPUDACCEL; 
  2229.  
  2230. #define UD_MAXVAL               0x7fff 
  2231. #define UD_MINVAL               (-UD_MAXVAL) 
  2232.  
  2233. // begin_r_commctrl 
  2234.  
  2235. #define UDS_WRAP                0x0001 
  2236. #define UDS_SETBUDDYINT         0x0002 
  2237. #define UDS_ALIGNRIGHT          0x0004 
  2238. #define UDS_ALIGNLEFT           0x0008 
  2239. #define UDS_AUTOBUDDY           0x0010 
  2240. #define UDS_ARROWKEYS           0x0020 
  2241. #define UDS_HORZ                0x0040 
  2242. #define UDS_NOTHOUSANDS         0x0080 
  2243. #if (_WIN32_IE >= 0x0300) 
  2244. #define UDS_HOTTRACK            0x0100 
  2245. #endif 
  2246.  
  2247. // end_r_commctrl 
  2248.  
  2249. #define UDM_SETRANGE            (WM_USER+101) 
  2250. #define UDM_GETRANGE            (WM_USER+102) 
  2251. #define UDM_SETPOS              (WM_USER+103) 
  2252. #define UDM_GETPOS              (WM_USER+104) 
  2253. #define UDM_SETBUDDY            (WM_USER+105) 
  2254. #define UDM_GETBUDDY            (WM_USER+106) 
  2255. #define UDM_SETACCEL            (WM_USER+107) 
  2256. #define UDM_GETACCEL            (WM_USER+108) 
  2257. #define UDM_SETBASE             (WM_USER+109) 
  2258. #define UDM_GETBASE             (WM_USER+110) 
  2259. #if (_WIN32_IE >= 0x0400) 
  2260. #define UDM_SETRANGE32          (WM_USER+111) 
  2261. #define UDM_GETRANGE32          (WM_USER+112) // wParam & lParam are LPINT 
  2262. #endif 
  2263.  
  2264. WINCOMMCTRLAPI HWND WINAPI CreateUpDownControl(DWORD dwStyle, int x, int y, int cx, int cy, 
  2265.                                 HWND hParent, int nID, HINSTANCE hInst, 
  2266.                                 HWND hBuddy, 
  2267.                                 int nUpper, int nLower, int nPos); 
  2268.  
  2269. #if (_WIN32_IE >= 0x0300) 
  2270. #define NM_UPDOWN      NMUPDOWN 
  2271. #define LPNM_UPDOWN  LPNMUPDOWN 
  2272. #else 
  2273. #define NMUPDOWN      NM_UPDOWN 
  2274. #define LPNMUPDOWN  LPNM_UPDOWN 
  2275. #endif 
  2276.  
  2277. typedef struct _NM_UPDOWN 
  2278.     NMHDR hdr; 
  2279.     int iPos; 
  2280.     int iDelta; 
  2281. } NMUPDOWN, FAR *LPNMUPDOWN; 
  2282.  
  2283. #define UDN_DELTAPOS            (UDN_FIRST - 1) 
  2284.  
  2285. #endif  // NOUPDOWN 
  2286.  
  2287.  
  2288. //====== PROGRESS CONTROL ===================================================== 
  2289.  
  2290. #ifndef NOPROGRESS 
  2291.  
  2292. #ifdef _WIN32 
  2293.  
  2294. #define PROGRESS_CLASSA         "msctls_progress32" 
  2295. #define PROGRESS_CLASSW         L"msctls_progress32" 
  2296.  
  2297. #ifdef UNICODE 
  2298. #define  PROGRESS_CLASS         PROGRESS_CLASSW 
  2299. #else 
  2300. #define  PROGRESS_CLASS         PROGRESS_CLASSA 
  2301. #endif 
  2302.  
  2303. #else 
  2304. #define PROGRESS_CLASS          "msctls_progress" 
  2305. #endif 
  2306.  
  2307.  
  2308. #if (_WIN32_IE >= 0x0300) 
  2309. #define PBS_SMOOTH              0x01 
  2310. #define PBS_VERTICAL            0x04 
  2311. #endif 
  2312.  
  2313. #define PBM_SETRANGE            (WM_USER+1) 
  2314. #define PBM_SETPOS              (WM_USER+2) 
  2315. #define PBM_DELTAPOS            (WM_USER+3) 
  2316. #define PBM_SETSTEP             (WM_USER+4) 
  2317. #define PBM_STEPIT              (WM_USER+5) 
  2318. #if (_WIN32_IE >= 0x0300) 
  2319. #define PBM_SETRANGE32          (WM_USER+6)  // lParam = high, wParam = low 
  2320. typedef struct 
  2321.    int iLow; 
  2322.    int iHigh; 
  2323. } PBRANGE, *PPBRANGE; 
  2324. #define PBM_GETRANGE            (WM_USER+7)  // wParam = return (TRUE ? low : high). lParam = PPBRANGE or NULL 
  2325. #define PBM_GETPOS              (WM_USER+8) 
  2326. #define PBM_SETBKCOLOR          CCM_SETBKCOLOR  // lParam = bkColor 
  2327. #endif      // _WIN32_IE >= 0x0300 
  2328.  
  2329. #endif  // NOPROGRESS 
  2330.  
  2331.  
  2332. //====== HOTKEY CONTROL ======================================================= 
  2333.  
  2334. #ifndef NOHOTKEY 
  2335.  
  2336. #define HOTKEYF_SHIFT           0x01 
  2337. #define HOTKEYF_CONTROL         0x02 
  2338. #define HOTKEYF_ALT             0x04 
  2339. #ifdef _MAC 
  2340. #define HOTKEYF_EXT             0x80 
  2341. #else 
  2342. #define HOTKEYF_EXT             0x08 
  2343. #endif 
  2344.  
  2345. #define HKCOMB_NONE             0x0001 
  2346. #define HKCOMB_S                0x0002 
  2347. #define HKCOMB_C                0x0004 
  2348. #define HKCOMB_A                0x0008 
  2349. #define HKCOMB_SC               0x0010 
  2350. #define HKCOMB_SA               0x0020 
  2351. #define HKCOMB_CA               0x0040 
  2352. #define HKCOMB_SCA              0x0080 
  2353.  
  2354.  
  2355. #define HKM_SETHOTKEY           (WM_USER+1) 
  2356. #define HKM_GETHOTKEY           (WM_USER+2) 
  2357. #define HKM_SETRULES            (WM_USER+3) 
  2358.  
  2359. #ifdef _WIN32 
  2360.  
  2361. #define HOTKEY_CLASSA           "msctls_hotkey32" 
  2362. #define HOTKEY_CLASSW           L"msctls_hotkey32" 
  2363.  
  2364. #ifdef UNICODE 
  2365. #define HOTKEY_CLASS            HOTKEY_CLASSW 
  2366. #else 
  2367. #define HOTKEY_CLASS            HOTKEY_CLASSA 
  2368. #endif 
  2369.  
  2370. #else 
  2371. #define HOTKEY_CLASS            "msctls_hotkey" 
  2372. #endif 
  2373.  
  2374. #endif  // NOHOTKEY 
  2375.  
  2376. // begin_r_commctrl 
  2377.  
  2378. //====== COMMON CONTROL STYLES ================================================ 
  2379.  
  2380. #define CCS_TOP                 0x00000001L 
  2381. #define CCS_NOMOVEY             0x00000002L 
  2382. #define CCS_BOTTOM              0x00000003L 
  2383. #define CCS_NORESIZE            0x00000004L 
  2384. #define CCS_NOPARENTALIGN       0x00000008L 
  2385. #define CCS_ADJUSTABLE          0x00000020L 
  2386. #define CCS_NODIVIDER           0x00000040L 
  2387. #if (_WIN32_IE >= 0x0300) 
  2388. #define CCS_VERT                0x00000080L 
  2389. #define CCS_LEFT                (CCS_VERT | CCS_TOP) 
  2390. #define CCS_RIGHT               (CCS_VERT | CCS_BOTTOM) 
  2391. #define CCS_NOMOVEX             (CCS_VERT | CCS_NOMOVEY) 
  2392. #endif 
  2393.  
  2394. // end_r_commctrl 
  2395.  
  2396. //====== LISTVIEW CONTROL ===================================================== 
  2397.  
  2398. #ifndef NOLISTVIEW 
  2399.  
  2400. #ifdef _WIN32 
  2401.  
  2402. #define WC_LISTVIEWA            "SysListView32" 
  2403. #define WC_LISTVIEWW            L"SysListView32" 
  2404.  
  2405. #ifdef UNICODE 
  2406. #define WC_LISTVIEW             WC_LISTVIEWW 
  2407. #else 
  2408. #define WC_LISTVIEW             WC_LISTVIEWA 
  2409. #endif 
  2410.  
  2411. #else 
  2412. #define WC_LISTVIEW             "SysListView" 
  2413. #endif 
  2414.  
  2415. // begin_r_commctrl 
  2416.  
  2417. #define LVS_ICON                0x0000 
  2418. #define LVS_REPORT              0x0001 
  2419. #define LVS_SMALLICON           0x0002 
  2420. #define LVS_LIST                0x0003 
  2421. #define LVS_TYPEMASK            0x0003 
  2422. #define LVS_SINGLESEL           0x0004 
  2423. #define LVS_SHOWSELALWAYS       0x0008 
  2424. #define LVS_SORTASCENDING       0x0010 
  2425. #define LVS_SORTDESCENDING      0x0020 
  2426. #define LVS_SHAREIMAGELISTS     0x0040 
  2427. #define LVS_NOLABELWRAP         0x0080 
  2428. #define LVS_AUTOARRANGE         0x0100 
  2429. #define LVS_EDITLABELS          0x0200 
  2430. #if (_WIN32_IE >= 0x0300) 
  2431. #define LVS_OWNERDATA           0x1000 
  2432. #endif 
  2433. #define LVS_NOSCROLL            0x2000 
  2434.  
  2435. #define LVS_TYPESTYLEMASK       0xfc00 
  2436.  
  2437. #define LVS_ALIGNTOP            0x0000 
  2438. #define LVS_ALIGNLEFT           0x0800 
  2439. #define LVS_ALIGNMASK           0x0c00 
  2440.  
  2441. #define LVS_OWNERDRAWFIXED      0x0400 
  2442. #define LVS_NOCOLUMNHEADER      0x4000 
  2443. #define LVS_NOSORTHEADER        0x8000 
  2444.  
  2445. // end_r_commctrl 
  2446.  
  2447. #define LVM_GETBKCOLOR          (LVM_FIRST + 0) 
  2448. #define ListView_GetBkColor(hwnd)  
  2449.     (COLORREF)SNDMSG((hwnd), LVM_GETBKCOLOR, 0, 0L) 
  2450.  
  2451. #define LVM_SETBKCOLOR          (LVM_FIRST + 1) 
  2452. #define ListView_SetBkColor(hwnd, clrBk) 
  2453.     (BOOL)SNDMSG((hwnd), LVM_SETBKCOLOR, 0, (LPARAM)(COLORREF)(clrBk)) 
  2454.  
  2455. #define LVM_GETIMAGELIST        (LVM_FIRST + 2) 
  2456. #define ListView_GetImageList(hwnd, iImageList) 
  2457.     (HIMAGELIST)SNDMSG((hwnd), LVM_GETIMAGELIST, (WPARAM)(INT)(iImageList), 0L) 
  2458.  
  2459. #define LVSIL_NORMAL            0 
  2460. #define LVSIL_SMALL             1 
  2461. #define LVSIL_STATE             2 
  2462.  
  2463. #define LVM_SETIMAGELIST        (LVM_FIRST + 3) 
  2464. #define ListView_SetImageList(hwnd, himl, iImageList) 
  2465.     (HIMAGELIST)(UINT)SNDMSG((hwnd), LVM_SETIMAGELIST, (WPARAM)(iImageList), (LPARAM)(UINT)(HIMAGELIST)(himl)) 
  2466.  
  2467. #define LVM_GETITEMCOUNT        (LVM_FIRST + 4) 
  2468. #define ListView_GetItemCount(hwnd) 
  2469.     (int)SNDMSG((hwnd), LVM_GETITEMCOUNT, 0, 0L) 
  2470.  
  2471.  
  2472. #define LVIF_TEXT               0x0001 
  2473. #define LVIF_IMAGE              0x0002 
  2474. #define LVIF_PARAM              0x0004 
  2475. #define LVIF_STATE              0x0008 
  2476. #if (_WIN32_IE >= 0x0300) 
  2477. #define LVIF_INDENT             0x0010 
  2478. #define LVIF_NORECOMPUTE        0x0800 
  2479. #endif 
  2480.  
  2481. #define LVIS_FOCUSED            0x0001 
  2482. #define LVIS_SELECTED           0x0002 
  2483. #define LVIS_CUT                0x0004 
  2484. #define LVIS_DROPHILITED        0x0008 
  2485.  
  2486. #define LVIS_OVERLAYMASK        0x0F00 
  2487. #define LVIS_STATEIMAGEMASK     0xF000 
  2488.  
  2489. #define INDEXTOSTATEIMAGEMASK(i) ((i) << 12) 
  2490.  
  2491. #if (_WIN32_IE >= 0x0300) 
  2492. #define I_INDENTCALLBACK        (-1) 
  2493. #define LV_ITEMA LVITEMA 
  2494. #define LV_ITEMW LVITEMW 
  2495. #else 
  2496. #define tagLVITEMA    _LV_ITEMA 
  2497. #define LVITEMA       LV_ITEMA 
  2498. #define tagLVITEMW    _LV_ITEMW 
  2499. #define LVITEMW       LV_ITEMW 
  2500. #endif 
  2501.  
  2502. #define LV_ITEM LVITEM 
  2503.  
  2504. typedef struct tagLVITEMA 
  2505.     UINT mask; 
  2506.     int iItem; 
  2507.     int iSubItem; 
  2508.     UINT state; 
  2509.     UINT stateMask; 
  2510.     LPSTR pszText; 
  2511.     int cchTextMax; 
  2512.     int iImage; 
  2513.     LPARAM lParam; 
  2514. #if (_WIN32_IE >= 0x0300) 
  2515.     int iIndent; 
  2516. #endif 
  2517. } LVITEMA, FAR* LPLVITEMA; 
  2518.  
  2519. typedef struct tagLVITEMW 
  2520.     UINT mask; 
  2521.     int iItem; 
  2522.     int iSubItem; 
  2523.     UINT state; 
  2524.     UINT stateMask; 
  2525.     LPWSTR pszText; 
  2526.     int cchTextMax; 
  2527.     int iImage; 
  2528.     LPARAM lParam; 
  2529. #if (_WIN32_IE >= 0x0300) 
  2530.     int iIndent; 
  2531. #endif 
  2532. } LVITEMW, FAR* LPLVITEMW; 
  2533.  
  2534.  
  2535. #ifdef UNICODE 
  2536. #define LVITEM    LVITEMW 
  2537. #define LPLVITEM  LPLVITEMW 
  2538. #else 
  2539. #define LVITEM    LVITEMA 
  2540. #define LPLVITEM  LPLVITEMA 
  2541. #endif 
  2542.  
  2543.  
  2544. #define LPSTR_TEXTCALLBACKW     ((LPWSTR)-1L) 
  2545. #define LPSTR_TEXTCALLBACKA     ((LPSTR)-1L) 
  2546. #ifdef UNICODE 
  2547. #define LPSTR_TEXTCALLBACK      LPSTR_TEXTCALLBACKW 
  2548. #else 
  2549. #define LPSTR_TEXTCALLBACK      LPSTR_TEXTCALLBACKA 
  2550. #endif 
  2551.  
  2552. #define I_IMAGECALLBACK         (-1) 
  2553.  
  2554. #define LVM_GETITEMA            (LVM_FIRST + 5) 
  2555. #define LVM_GETITEMW            (LVM_FIRST + 75) 
  2556. #ifdef UNICODE 
  2557. #define LVM_GETITEM             LVM_GETITEMW 
  2558. #else 
  2559. #define LVM_GETITEM             LVM_GETITEMA 
  2560. #endif 
  2561.  
  2562. #define ListView_GetItem(hwnd, pitem) 
  2563.     (BOOL)SNDMSG((hwnd), LVM_GETITEM, 0, (LPARAM)(LV_ITEM FAR*)(pitem)) 
  2564.  
  2565.  
  2566. #define LVM_SETITEMA            (LVM_FIRST + 6) 
  2567. #define LVM_SETITEMW            (LVM_FIRST + 76) 
  2568. #ifdef UNICODE 
  2569. #define LVM_SETITEM             LVM_SETITEMW 
  2570. #else 
  2571. #define LVM_SETITEM             LVM_SETITEMA 
  2572. #endif 
  2573.  
  2574. #define ListView_SetItem(hwnd, pitem) 
  2575.     (BOOL)SNDMSG((hwnd), LVM_SETITEM, 0, (LPARAM)(const LV_ITEM FAR*)(pitem)) 
  2576.  
  2577.  
  2578. #define LVM_INSERTITEMA         (LVM_FIRST + 7) 
  2579. #define LVM_INSERTITEMW         (LVM_FIRST + 77) 
  2580. #ifdef UNICODE 
  2581. #define LVM_INSERTITEM          LVM_INSERTITEMW 
  2582. #else 
  2583. #define LVM_INSERTITEM          LVM_INSERTITEMA 
  2584. #endif 
  2585. #define ListView_InsertItem(hwnd, pitem)   
  2586.     (int)SNDMSG((hwnd), LVM_INSERTITEM, 0, (LPARAM)(const LV_ITEM FAR*)(pitem)) 
  2587.  
  2588.  
  2589. #define LVM_DELETEITEM          (LVM_FIRST + 8) 
  2590. #define ListView_DeleteItem(hwnd, i) 
  2591.     (BOOL)SNDMSG((hwnd), LVM_DELETEITEM, (WPARAM)(int)(i), 0L) 
  2592.  
  2593.  
  2594. #define LVM_DELETEALLITEMS      (LVM_FIRST + 9) 
  2595. #define ListView_DeleteAllItems(hwnd) 
  2596.     (BOOL)SNDMSG((hwnd), LVM_DELETEALLITEMS, 0, 0L) 
  2597.  
  2598.  
  2599. #define LVM_GETCALLBACKMASK     (LVM_FIRST + 10) 
  2600. #define ListView_GetCallbackMask(hwnd) 
  2601.     (BOOL)SNDMSG((hwnd), LVM_GETCALLBACKMASK, 0, 0) 
  2602.  
  2603.  
  2604. #define LVM_SETCALLBACKMASK     (LVM_FIRST + 11) 
  2605. #define ListView_SetCallbackMask(hwnd, mask) 
  2606.     (BOOL)SNDMSG((hwnd), LVM_SETCALLBACKMASK, (WPARAM)(UINT)(mask), 0) 
  2607.  
  2608.  
  2609. #define LVNI_ALL                0x0000 
  2610. #define LVNI_FOCUSED            0x0001 
  2611. #define LVNI_SELECTED           0x0002 
  2612. #define LVNI_CUT                0x0004 
  2613. #define LVNI_DROPHILITED        0x0008 
  2614.  
  2615. #define LVNI_ABOVE              0x0100 
  2616. #define LVNI_BELOW              0x0200 
  2617. #define LVNI_TOLEFT             0x0400 
  2618. #define LVNI_TORIGHT            0x0800 
  2619.  
  2620.  
  2621. #define LVM_GETNEXTITEM         (LVM_FIRST + 12) 
  2622. #define ListView_GetNextItem(hwnd, i, flags) 
  2623.     (int)SNDMSG((hwnd), LVM_GETNEXTITEM, (WPARAM)(int)(i), MAKELPARAM((flags), 0)) 
  2624.  
  2625.  
  2626. #define LVFI_PARAM              0x0001 
  2627. #define LVFI_STRING             0x0002 
  2628. #define LVFI_PARTIAL            0x0008 
  2629. #define LVFI_WRAP               0x0020 
  2630. #define LVFI_NEARESTXY          0x0040 
  2631.  
  2632. #if (_WIN32_IE >= 0x0300) 
  2633. #define LV_FINDINFOA    LVFINDINFOA 
  2634. #define LV_FINDINFOW    LVFINDINFOW 
  2635. #else 
  2636. #define tagLVFINDINFOA  _LV_FINDINFOA 
  2637. #define    LVFINDINFOA   LV_FINDINFOA 
  2638. #define tagLVFINDINFOW  _LV_FINDINFOW 
  2639. #define    LVFINDINFOW   LV_FINDINFOW 
  2640. #endif 
  2641.  
  2642. #define LV_FINDINFO  LVFINDINFO 
  2643.  
  2644. typedef struct tagLVFINDINFOA 
  2645.     UINT flags; 
  2646.     LPCSTR psz; 
  2647.     LPARAM lParam; 
  2648.     POINT pt; 
  2649.     UINT vkDirection; 
  2650. } LVFINDINFOA, FAR* LPFINDINFOA; 
  2651.  
  2652. typedef struct tagLVFINDINFOW 
  2653.     UINT flags; 
  2654.     LPCWSTR psz; 
  2655.     LPARAM lParam; 
  2656.     POINT pt; 
  2657.     UINT vkDirection; 
  2658. } LVFINDINFOW, FAR* LPFINDINFOW; 
  2659.  
  2660. #ifdef UNICODE 
  2661. #define  LVFINDINFO            LVFINDINFOW 
  2662. #else 
  2663. #define  LVFINDINFO            LVFINDINFOA 
  2664. #endif 
  2665.  
  2666. #define LVM_FINDITEMA           (LVM_FIRST + 13) 
  2667. #define LVM_FINDITEMW           (LVM_FIRST + 83) 
  2668. #ifdef UNICODE 
  2669. #define  LVM_FINDITEM           LVM_FINDITEMW 
  2670. #else 
  2671. #define  LVM_FINDITEM           LVM_FINDITEMA 
  2672. #endif 
  2673.  
  2674. #define ListView_FindItem(hwnd, iStart, plvfi) 
  2675.     (int)SNDMSG((hwnd), LVM_FINDITEM, (WPARAM)(int)(iStart), (LPARAM)(const LV_FINDINFO FAR*)(plvfi)) 
  2676.  
  2677. #define LVIR_BOUNDS             0 
  2678. #define LVIR_ICON               1 
  2679. #define LVIR_LABEL              2 
  2680. #define LVIR_SELECTBOUNDS       3 
  2681.  
  2682.  
  2683. #define LVM_GETITEMRECT         (LVM_FIRST + 14) 
  2684. #define ListView_GetItemRect(hwnd, i, prc, code) 
  2685.      (BOOL)SNDMSG((hwnd), LVM_GETITEMRECT, (WPARAM)(int)(i), 
  2686.            ((prc) ? (((RECT FAR *)(prc))->left = (code),(LPARAM)(RECT FAR*)(prc)) : (LPARAM)(RECT FAR*)NULL)) 
  2687.  
  2688.  
  2689. #define LVM_SETITEMPOSITION     (LVM_FIRST + 15) 
  2690. #define ListView_SetItemPosition(hwndLV, i, x, y) 
  2691.     (BOOL)SNDMSG((hwndLV), LVM_SETITEMPOSITION, (WPARAM)(int)(i), MAKELPARAM((x), (y))) 
  2692.  
  2693.  
  2694. #define LVM_GETITEMPOSITION     (LVM_FIRST + 16) 
  2695. #define ListView_GetItemPosition(hwndLV, i, ppt) 
  2696.     (BOOL)SNDMSG((hwndLV), LVM_GETITEMPOSITION, (WPARAM)(int)(i), (LPARAM)(POINT FAR*)(ppt)) 
  2697.  
  2698.  
  2699. #define LVM_GETSTRINGWIDTHA     (LVM_FIRST + 17) 
  2700. #define LVM_GETSTRINGWIDTHW     (LVM_FIRST + 87) 
  2701. #ifdef UNICODE 
  2702. #define  LVM_GETSTRINGWIDTH     LVM_GETSTRINGWIDTHW 
  2703. #else 
  2704. #define  LVM_GETSTRINGWIDTH     LVM_GETSTRINGWIDTHA 
  2705. #endif 
  2706.  
  2707. #define ListView_GetStringWidth(hwndLV, psz) 
  2708.     (int)SNDMSG((hwndLV), LVM_GETSTRINGWIDTH, 0, (LPARAM)(LPCTSTR)(psz)) 
  2709.  
  2710.  
  2711. #define LVHT_NOWHERE            0x0001 
  2712. #define LVHT_ONITEMICON         0x0002 
  2713. #define LVHT_ONITEMLABEL        0x0004 
  2714. #define LVHT_ONITEMSTATEICON    0x0008 
  2715. #define LVHT_ONITEM             (LVHT_ONITEMICON | LVHT_ONITEMLABEL | LVHT_ONITEMSTATEICON) 
  2716.  
  2717. #define LVHT_ABOVE              0x0008 
  2718. #define LVHT_BELOW              0x0010 
  2719. #define LVHT_TORIGHT            0x0020 
  2720. #define LVHT_TOLEFT             0x0040 
  2721.  
  2722. #if (_WIN32_IE >= 0x0300) 
  2723. #define LV_HITTESTINFO LVHITTESTINFO 
  2724. #else 
  2725. #define tagLVHITTESTINFO  _LV_HITTESTINFO 
  2726. #define    LVHITTESTINFO   LV_HITTESTINFO 
  2727. #endif 
  2728.  
  2729. typedef struct tagLVHITTESTINFO 
  2730.     POINT pt; 
  2731.     UINT flags; 
  2732.     int iItem; 
  2733. #if (_WIN32_IE >= 0x0300) 
  2734.     int iSubItem;    // this is was NOT in win95.  valid only for LVM_SUBITEMHITTEST 
  2735. #endif 
  2736. } LVHITTESTINFO, FAR* LPLVHITTESTINFO; 
  2737.  
  2738. #define LVM_HITTEST             (LVM_FIRST + 18) 
  2739. #define ListView_HitTest(hwndLV, pinfo) 
  2740.     (int)SNDMSG((hwndLV), LVM_HITTEST, 0, (LPARAM)(LV_HITTESTINFO FAR*)(pinfo)) 
  2741.  
  2742.  
  2743. #define LVM_ENSUREVISIBLE       (LVM_FIRST + 19) 
  2744. #define ListView_EnsureVisible(hwndLV, i, fPartialOK) 
  2745.     (BOOL)SNDMSG((hwndLV), LVM_ENSUREVISIBLE, (WPARAM)(int)(i), MAKELPARAM((fPartialOK), 0)) 
  2746.  
  2747.  
  2748. #define LVM_SCROLL              (LVM_FIRST + 20) 
  2749. #define ListView_Scroll(hwndLV, dx, dy) 
  2750.     (BOOL)SNDMSG((hwndLV), LVM_SCROLL, (WPARAM)(int)dx, (LPARAM)(int)dy) 
  2751.  
  2752.  
  2753. #define LVM_REDRAWITEMS         (LVM_FIRST + 21) 
  2754. #define ListView_RedrawItems(hwndLV, iFirst, iLast) 
  2755.     (BOOL)SNDMSG((hwndLV), LVM_REDRAWITEMS, (WPARAM)(int)iFirst, (LPARAM)(int)iLast) 
  2756.  
  2757.  
  2758. #define LVA_DEFAULT             0x0000 
  2759. #define LVA_ALIGNLEFT           0x0001 
  2760. #define LVA_ALIGNTOP            0x0002 
  2761. #define LVA_SNAPTOGRID          0x0005 
  2762.  
  2763. #define LVM_ARRANGE             (LVM_FIRST + 22) 
  2764. #define ListView_Arrange(hwndLV, code) 
  2765.     (BOOL)SNDMSG((hwndLV), LVM_ARRANGE, (WPARAM)(UINT)(code), 0L) 
  2766.  
  2767.  
  2768. #define LVM_EDITLABELA          (LVM_FIRST + 23) 
  2769. #define LVM_EDITLABELW          (LVM_FIRST + 118) 
  2770. #ifdef UNICODE 
  2771. #define LVM_EDITLABEL           LVM_EDITLABELW 
  2772. #else 
  2773. #define LVM_EDITLABEL           LVM_EDITLABELA 
  2774. #endif 
  2775.  
  2776. #define ListView_EditLabel(hwndLV, i) 
  2777.     (HWND)SNDMSG((hwndLV), LVM_EDITLABEL, (WPARAM)(int)(i), 0L) 
  2778.  
  2779.  
  2780. #define LVM_GETEDITCONTROL      (LVM_FIRST + 24) 
  2781. #define ListView_GetEditControl(hwndLV) 
  2782.     (HWND)SNDMSG((hwndLV), LVM_GETEDITCONTROL, 0, 0L) 
  2783.  
  2784.  
  2785. #if (_WIN32_IE >= 0x0300) 
  2786. #define LV_COLUMNA      LVCOLUMNA 
  2787. #define LV_COLUMNW      LVCOLUMNW 
  2788. #else 
  2789. #define tagLVCOLUMNA    _LV_COLUMNA 
  2790. #define    LVCOLUMNA     LV_COLUMNA 
  2791. #define tagLVCOLUMNW    _LV_COLUMNW