1 /*
2 * Common controls definitions
3 *
4 * Copyright (C) the Wine project
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21 #ifndef __WINE_COMMCTRL_H
22 #define __WINE_COMMCTRL_H
23
24 #include <prsht.h>
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 BOOL WINAPI ShowHideMenuCtl (HWND, UINT_PTR, LPINT);
31 VOID WINAPI GetEffectiveClientRect (HWND, LPRECT, const INT*);
32 VOID WINAPI InitCommonControls (VOID);
33
34 typedef struct tagINITCOMMONCONTROLSEX {
35 DWORD dwSize;
36 DWORD dwICC;
37 } INITCOMMONCONTROLSEX, *LPINITCOMMONCONTROLSEX;
38
39 BOOL WINAPI InitCommonControlsEx (const INITCOMMONCONTROLSEX*);
40
41 LANGID WINAPI GetMUILanguage (VOID);
42 VOID WINAPI InitMUILanguage (LANGID uiLang);
43
44
45 #define COMCTL32_VERSION 5 /* dll version */
46
47 #ifndef _WIN32_IE
48 #define _WIN32_IE 0x0400
49 #endif
50
51 #define ICC_LISTVIEW_CLASSES 0x00000001 /* listview, header */
52 #define ICC_TREEVIEW_CLASSES 0x00000002 /* treeview, tooltips */
53 #define ICC_BAR_CLASSES 0x00000004 /* toolbar, statusbar, trackbar, tooltips */
54 #define ICC_TAB_CLASSES 0x00000008 /* tab, tooltips */
55 #define ICC_UPDOWN_CLASS 0x00000010 /* updown */
56 #define ICC_PROGRESS_CLASS 0x00000020 /* progress */
57 #define ICC_HOTKEY_CLASS 0x00000040 /* hotkey */
58 #define ICC_ANIMATE_CLASS 0x00000080 /* animate */
59 #define ICC_WIN95_CLASSES 0x000000FF
60 #define ICC_DATE_CLASSES 0x00000100 /* month picker, date picker, time picker, updown */
61 #define ICC_USEREX_CLASSES 0x00000200 /* comboex */
62 #define ICC_COOL_CLASSES 0x00000400 /* rebar (coolbar) */
63 #define ICC_INTERNET_CLASSES 0x00000800 /* IP address, ... */
64 #define ICC_PAGESCROLLER_CLASS 0x00001000 /* page scroller */
65 #define ICC_NATIVEFNTCTL_CLASS 0x00002000 /* native font control ???*/
66 #define ICC_STANDARD_CLASSES 0x00004000
67 #define ICC_LINK_CLASS 0x00008000
68
69
70 /* common control styles */
71 #define CCS_TOP 0x00000001L
72 #define CCS_NOMOVEY 0x00000002L
73 #define CCS_BOTTOM 0x00000003L
74 #define CCS_NORESIZE 0x00000004L
75 #define CCS_NOPARENTALIGN 0x00000008L
76 #define CCS_ADJUSTABLE 0x00000020L
77 #define CCS_NODIVIDER 0x00000040L
78 #define CCS_VERT 0x00000080L
79 #define CCS_LEFT (CCS_VERT|CCS_TOP)
80 #define CCS_RIGHT (CCS_VERT|CCS_BOTTOM)
81 #define CCS_NOMOVEX (CCS_VERT|CCS_NOMOVEY)
82
83
84 /* common control shared messages */
85 #define CCM_FIRST 0x2000
86
87 #define CCM_SETBKCOLOR (CCM_FIRST+0x1) /* lParam = bkColor */
88 #define CCM_SETCOLORSCHEME (CCM_FIRST+0x2) /* lParam = COLORSCHEME struct ptr */
89 #define CCM_GETCOLORSCHEME (CCM_FIRST+0x3) /* lParam = COLORSCHEME struct ptr */
90 #define CCM_GETDROPTARGET (CCM_FIRST+0x4)
91 #define CCM_SETUNICODEFORMAT (CCM_FIRST+0x5)
92 #define CCM_GETUNICODEFORMAT (CCM_FIRST+0x6)
93 #define CCM_SETVERSION (CCM_FIRST+0x7)
94 #define CCM_GETVERSION (CCM_FIRST+0x8)
95 #define CCM_SETNOTIFYWINDOW (CCM_FIRST+0x9) /* wParam = hwndParent */
96 #define CCM_SETWINDOWTHEME (CCM_FIRST+0xb)
97 #define CCM_DPISCALE (CCM_FIRST+0xc)
98
99
100 /* common notification codes (WM_NOTIFY)*/
101 #define NM_FIRST (0U- 0U)
102 #define NM_LAST (0U- 99U)
103 #define NM_OUTOFMEMORY (NM_FIRST-1)
104 #define NM_CLICK (NM_FIRST-2)
105 #define NM_DBLCLK (NM_FIRST-3)
106 #define NM_RETURN (NM_FIRST-4)
107 #define NM_RCLICK (NM_FIRST-5)
108 #define NM_RDBLCLK (NM_FIRST-6)
109 #define NM_SETFOCUS (NM_FIRST-7)
110 #define NM_KILLFOCUS (NM_FIRST-8)
111 #define NM_CUSTOMDRAW (NM_FIRST-12)
112 #define NM_HOVER (NM_FIRST-13)
113 #define NM_NCHITTEST (NM_FIRST-14)
114 #define NM_KEYDOWN (NM_FIRST-15)
115 #define NM_RELEASEDCAPTURE (NM_FIRST-16)
116 #define NM_SETCURSOR (NM_FIRST-17)
117 #define NM_CHAR (NM_FIRST-18)
118 #define NM_TOOLTIPSCREATED (NM_FIRST-19)
119 #define NM_LDOWN (NM_FIRST-20)
120 #define NM_RDOWN (NM_FIRST-21)
121 #define NM_THEMECHANGED (NM_FIRST-22)
122 #define NM_FONTCHANGED (NM_FIRST-23)
123 #define NM_CUSTOMTEXT (NM_FIRST-24)
124 #define NM_TVSTATEIMAGECHANGING (NM_FIRST-24)
125
126 #define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \
127 (fn)((hwnd), (int)(wParam), (NMHDR*)(lParam))
128 #define FORWARD_WM_NOTIFY(hwnd, idFrom, pnmhdr, fn) \
129 (LRESULT)(fn)((hwnd), WM_NOTIFY, (WPARAM)(int)(idFrom), (LPARAM)(NMHDR*)(pnmhdr))
130
131
132 /* callback constants */
133 #define LPSTR_TEXTCALLBACKA ((LPSTR)-1L)
134 #define LPSTR_TEXTCALLBACKW ((LPWSTR)-1L)
135 #define LPSTR_TEXTCALLBACK WINELIB_NAME_AW(LPSTR_TEXTCALLBACK)
136
137 #define I_IMAGECALLBACK (-1)
138 #define I_IMAGENONE (-2)
139 #define I_INDENTCALLBACK (-1)
140 #define I_CHILDRENCALLBACK (-1)
141 #define I_GROUPIDCALLBACK (-1)
142 #define I_GROUPIDNONE (-2)
143 #define I_COLUMNSCALLBACK ((UINT)-1)
144
145 /* owner drawn types */
146 #define ODT_HEADER 100
147 #define ODT_TAB 101
148 #define ODT_LISTVIEW 102
149
150 /* common notification structures */
151 typedef struct tagNMTOOLTIPSCREATED
152 {
153 NMHDR hdr;
154 HWND hwndToolTips;
155 } NMTOOLTIPSCREATED, *LPNMTOOLTIPSCREATED;
156
157 typedef struct tagNMMOUSE
158 {
159 NMHDR hdr;
160 DWORD_PTR dwItemSpec;
161 DWORD_PTR dwItemData;
162 POINT pt;
163 DWORD dwHitInfo; /* info where on item or control the mouse is */
164 } NMMOUSE, *LPNMMOUSE;
165
166 typedef struct tagNMOBJECTNOTIFY
167 {
168 NMHDR hdr;
169 int iItem;
170 #ifdef __IID_DEFINED__
171 const IID *piid;
172 #else
173 const void *piid;
174 #endif
175 void *pObject;
176 HRESULT hResult;
177 DWORD dwFlags;
178 } NMOBJECTNOTIFY, *LPNMOBJECTNOTIFY;
179
180 typedef struct tagNMKEY
181 {
182 NMHDR hdr;
183 UINT nVKey;
184 UINT uFlags;
185 } NMKEY, *LPNMKEY;
186
187 typedef struct tagNMCHAR
188 {
189 NMHDR hdr;
190 UINT ch;
191 DWORD dwItemPrev; /* Item previously selected */
192 DWORD dwItemNext; /* Item to be selected */
193 } NMCHAR, *LPNMCHAR;
194
195 #ifndef CCSIZEOF_STRUCT
196 #define CCSIZEOF_STRUCT(name, member) \
197 (((INT)((LPBYTE)(&((name*)0)->member)-((LPBYTE)((name*)0))))+ \
198 sizeof(((name*)0)->member))
199 #endif
200
201
202 /* This is only for Winelib applications. DON't use it wine itself!!! */
203 #ifndef SNDMSG
204 #ifdef __cplusplus
205 #define SNDMSG ::SendMessage
206 #else /* __cplusplus */
207 #define SNDMSG SendMessage
208 #endif /* __cplusplus */
209 #endif /* SNDMSG */
210
211
212 #ifdef __cplusplus
213 #define SNDMSGA ::SendMessageA
214 #define SNDMSGW ::SendMessageW
215 #else
216 #define SNDMSGA SendMessageA
217 #define SNDMSGW SendMessageW
218 #endif
219
220 /* Custom Draw messages */
221
222 #define CDRF_DODEFAULT 0x0
223 #define CDRF_NEWFONT 0x00000002
224 #define CDRF_SKIPDEFAULT 0x00000004
225 #define CDRF_NOTIFYPOSTPAINT 0x00000010
226 #define CDRF_NOTIFYITEMDRAW 0x00000020
227 #define CDRF_NOTIFYSUBITEMDRAW 0x00000020
228 #define CDRF_NOTIFYPOSTERASE 0x00000040
229 #define CDRF_NOTIFYITEMERASE 0x00000080 /* obsolete ??? */
230
231
232 /* drawstage flags */
233
234 #define CDDS_PREPAINT 1
235 #define CDDS_POSTPAINT 2
236 #define CDDS_PREERASE 3
237 #define CDDS_POSTERASE 4
238
239 #define CDDS_ITEM 0x00010000
240 #define CDDS_ITEMPREPAINT (CDDS_ITEM | CDDS_PREPAINT)
241 #define CDDS_ITEMPOSTPAINT (CDDS_ITEM | CDDS_POSTPAINT)
242 #define CDDS_ITEMPREERASE (CDDS_ITEM | CDDS_PREERASE)
243 #define CDDS_ITEMPOSTERASE (CDDS_ITEM | CDDS_POSTERASE)
244 #define CDDS_SUBITEM 0x00020000
245
246 /* itemState flags */
247
248 #define CDIS_SELECTED 0x0001
249 #define CDIS_GRAYED 0x0002
250 #define CDIS_DISABLED 0x0004
251 #define CDIS_CHECKED 0x0008
252 #define CDIS_FOCUS 0x0010
253 #define CDIS_DEFAULT 0x0020
254 #define CDIS_HOT 0x0040
255 #define CDIS_MARKED 0x0080
256 #define CDIS_INDETERMINATE 0x0100
257 #define CDIS_SHOWKEYBOARDCUES 0x0200
258 #define CDIS_NEARHOT 0x0400
259 #define CDIS_OTHERSIDEHOT 0x0800
260 #define CDIS_DROPHILITED 0x1000
261
262
263 typedef struct tagNMCUSTOMDRAWINFO
264 {
265 NMHDR hdr;
266 DWORD dwDrawStage;
267 HDC hdc;
268 RECT rc;
269 DWORD_PTR dwItemSpec;
270 UINT uItemState;
271 LPARAM lItemlParam;
272 } NMCUSTOMDRAW, *LPNMCUSTOMDRAW;
273
274 typedef struct tagNMTTCUSTOMDRAW
275 {
276 NMCUSTOMDRAW nmcd;
277 UINT uDrawFlags;
278 } NMTTCUSTOMDRAW, *LPNMTTCUSTOMDRAW;
279
280
281
282
283 /* StatusWindow */
284
285 #define STATUSCLASSNAMEA "msctls_statusbar32"
286 #if defined(__GNUC__)
287 # define STATUSCLASSNAMEW (const WCHAR []){ 'm','s','c','t','l','s','_', \
288 's','t','a','t','u','s','b','a','r','3','2',0 }
289 #elif defined(_MSC_VER)
290 # define STATUSCLASSNAMEW L"msctls_statusbar32"
291 #else
292 static const WCHAR STATUSCLASSNAMEW[] = { 'm','s','c','t','l','s','_',
293 's','t','a','t','u','s','b','a','r','3','2',0 };
294 #endif
295 #define STATUSCLASSNAME WINELIB_NAME_AW(STATUSCLASSNAME)
296
297 #define SBT_NOBORDERS 0x0100
298 #define SBT_POPOUT 0x0200
299 #define SBT_RTLREADING 0x0400 /* not supported */
300 #define SBT_TOOLTIPS 0x0800
301 #define SBT_OWNERDRAW 0x1000
302
303 #define SBARS_SIZEGRIP 0x0100
304
305 #define SB_SIMPLEID 0x00ff
306
307 #define SB_SETTEXTA (WM_USER+1)
308 #define SB_SETTEXTW (WM_USER+11)
309 #define SB_SETTEXT WINELIB_NAME_AW(SB_SETTEXT)
310 #define SB_GETTEXTA (WM_USER+2)
311 #define SB_GETTEXTW (WM_USER+13)
312 #define SB_GETTEXT WINELIB_NAME_AW(SB_GETTEXT)
313 #define SB_GETTEXTLENGTHA (WM_USER+3)
314 #define SB_GETTEXTLENGTHW (WM_USER+12)
315 #define SB_GETTEXTLENGTH WINELIB_NAME_AW(SB_GETTEXTLENGTH)
316 #define SB_SETPARTS (WM_USER+4)
317 #define SB_SETBORDERS (WM_USER+5)
318 #define SB_GETPARTS (WM_USER+6)
319 #define SB_GETBORDERS (WM_USER+7)
320 #define SB_SETMINHEIGHT (WM_USER+8)
321 #define SB_SIMPLE (WM_USER+9)
322 #define SB_GETRECT (WM_USER+10)
323 #define SB_ISSIMPLE (WM_USER+14)
324 #define SB_SETICON (WM_USER+15)
325 #define SB_SETTIPTEXTA (WM_USER+16)
326 #define SB_SETTIPTEXTW (WM_USER+17)
327 #define SB_SETTIPTEXT WINELIB_NAME_AW(SB_SETTIPTEXT)
328 #define SB_GETTIPTEXTA (WM_USER+18)
329 #define SB_GETTIPTEXTW (WM_USER+19)
330 #define SB_GETTIPTEXT WINELIB_NAME_AW(SB_GETTIPTEXT)
331 #define SB_GETICON (WM_USER+20)
332 #define SB_SETBKCOLOR CCM_SETBKCOLOR /* lParam = bkColor */
333 #define SB_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
334 #define SB_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
335
336 #define SBN_FIRST (0U-880U)
337 #define SBN_LAST (0U-899U)
338 #define SBN_SIMPLEMODECHANGE (SBN_FIRST-0)
339
340 HWND WINAPI CreateStatusWindowA (LONG, LPCSTR, HWND, UINT);
341 HWND WINAPI CreateStatusWindowW (LONG, LPCWSTR, HWND, UINT);
342 #define CreateStatusWindow WINELIB_NAME_AW(CreateStatusWindow)
343 VOID WINAPI DrawStatusTextA (HDC, LPCRECT, LPCSTR, UINT);
344 VOID WINAPI DrawStatusTextW (HDC, LPCRECT, LPCWSTR, UINT);
345 #define DrawStatusText WINELIB_NAME_AW(DrawStatusText)
346 VOID WINAPI MenuHelp (UINT, WPARAM, LPARAM, HMENU,
347 HINSTANCE, HWND, UINT*);
348
349 typedef struct tagCOLORSCHEME
350 {
351 DWORD dwSize;
352 COLORREF clrBtnHighlight; /* highlight color */
353 COLORREF clrBtnShadow; /* shadow color */
354 } COLORSCHEME, *LPCOLORSCHEME;
355
356 /**************************************************************************
357 * Drag List control
358 */
359
360 typedef struct tagDRAGLISTINFO
361 {
362 UINT uNotification;
363 HWND hWnd;
364 POINT ptCursor;
365 } DRAGLISTINFO, *LPDRAGLISTINFO;
366
367 #define DL_BEGINDRAG (WM_USER+133)
368 #define DL_DRAGGING (WM_USER+134)
369 #define DL_DROPPED (WM_USER+135)
370 #define DL_CANCELDRAG (WM_USER+136)
371
372 #define DL_CURSORSET 0
373 #define DL_STOPCURSOR 1
374 #define DL_COPYCURSOR 2
375 #define DL_MOVECURSOR 3
376
377 #define DRAGLISTMSGSTRINGA "commctrl_DragListMsg"
378 #if defined(__GNUC__)
379 # define DRAGLISTMSGSTRINGW (const WCHAR []){ 'c','o','m','m','c','t','r','l', \
380 '_','D','r','a','g','L','i','s','t','M','s','g',0 }
381 #elif defined(_MSC_VER)
382 # define DRAGLISTMSGSTRINGW L"commctrl_DragListMsg"
383 #else
384 static const WCHAR DRAGLISTMSGSTRINGW[] = { 'c','o','m','m','c','t','r','l',
385 '_','D','r','a','g','L','i','s','t','M','s','g',0 };
386 #endif
387 #define DRAGLISTMSGSTRING WINELIB_NAME_AW(DRAGLISTMSGSTRING)
388
389 BOOL WINAPI MakeDragList (HWND);
390 VOID WINAPI DrawInsert (HWND, HWND, INT);
391 INT WINAPI LBItemFromPt (HWND, POINT, BOOL);
392
393
394 /* UpDown */
395
396 #define UPDOWN_CLASSA "msctls_updown32"
397 #if defined(__GNUC__)
398 # define UPDOWN_CLASSW (const WCHAR []){ 'm','s','c','t','l','s','_', \
399 'u','p','d','o','w','n','3','2',0 }
400 #elif defined(_MSC_VER)
401 # define UPDOWN_CLASSW L"msctls_updown32"
402 #else
403 static const WCHAR UPDOWN_CLASSW[] = { 'm','s','c','t','l','s','_',
404 'u','p','d','o','w','n','3','2',0 };
405 #endif
406 #define UPDOWN_CLASS WINELIB_NAME_AW(UPDOWN_CLASS)
407
408 typedef struct _UDACCEL
409 {
410 UINT nSec;
411 UINT nInc;
412 } UDACCEL, *LPUDACCEL;
413
414 #define UD_MAXVAL 0x7fff
415 #define UD_MINVAL 0x8001
416
417 #define UDS_WRAP 0x0001
418 #define UDS_SETBUDDYINT 0x0002
419 #define UDS_ALIGNRIGHT 0x0004
420 #define UDS_ALIGNLEFT 0x0008
421 #define UDS_AUTOBUDDY 0x0010
422 #define UDS_ARROWKEYS 0x0020
423 #define UDS_HORZ 0x0040
424 #define UDS_NOTHOUSANDS 0x0080
425 #define UDS_HOTTRACK 0x0100
426
427 #define UDN_FIRST (0U-721)
428 #define UDN_LAST (0U-740)
429 #define UDN_DELTAPOS (UDN_FIRST-1)
430
431 #define UDM_SETRANGE (WM_USER+101)
432 #define UDM_GETRANGE (WM_USER+102)
433 #define UDM_SETPOS (WM_USER+103)
434 #define UDM_GETPOS (WM_USER+104)
435 #define UDM_SETBUDDY (WM_USER+105)
436 #define UDM_GETBUDDY (WM_USER+106)
437 #define UDM_SETACCEL (WM_USER+107)
438 #define UDM_GETACCEL (WM_USER+108)
439 #define UDM_SETBASE (WM_USER+109)
440 #define UDM_GETBASE (WM_USER+110)
441 #define UDM_SETRANGE32 (WM_USER+111)
442 #define UDM_GETRANGE32 (WM_USER+112)
443 #define UDM_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
444 #define UDM_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
445 #define UDM_SETPOS32 (WM_USER+113)
446 #define UDM_GETPOS32 (WM_USER+114)
447
448
449 #define NMUPDOWN NM_UPDOWN
450 #define LPNMUPDOWN LPNM_UPDOWN
451
452 typedef struct tagNM_UPDOWN
453 {
454 NMHDR hdr;
455 int iPos;
456 int iDelta;
457 } NM_UPDOWN, *LPNM_UPDOWN;
458
459 HWND WINAPI CreateUpDownControl (DWORD, INT, INT, INT, INT,
460 HWND, INT, HINSTANCE, HWND,
461 INT, INT, INT);
462
463 /* Progress Bar */
464
465 #define PROGRESS_CLASSA "msctls_progress32"
466 #if defined(__GNUC__)
467 # define PROGRESS_CLASSW (const WCHAR []){ 'm','s','c','t','l','s','_', \
468 'p','r','o','g','r','e','s','s','3','2',0 }
469 #elif defined(_MSC_VER)
470 # define PROGRESS_CLASSW L"msctls_progress32"
471 #else
472 static const WCHAR PROGRESS_CLASSW[] = { 'm','s','c','t','l','s','_',
473 'p','r','o','g','r','e','s','s','3','2',0 };
474 #endif
475 #define PROGRESS_CLASS WINELIB_NAME_AW(PROGRESS_CLASS)
476
477 #define PBM_SETRANGE (WM_USER+1)
478 #define PBM_SETPOS (WM_USER+2)
479 #define PBM_DELTAPOS (WM_USER+3)
480 #define PBM_SETSTEP (WM_USER+4)
481 #define PBM_STEPIT (WM_USER+5)
482 #define PBM_SETRANGE32 (WM_USER+6)
483 #define PBM_GETRANGE (WM_USER+7)
484 #define PBM_GETPOS (WM_USER+8)
485 #define PBM_SETBARCOLOR (WM_USER+9)
486 #define PBM_SETMARQUEE (WM_USER+10)
487 #define PBM_SETBKCOLOR CCM_SETBKCOLOR
488
489 #define PBS_SMOOTH 0x01
490 #define PBS_VERTICAL 0x04
491 #define PBS_MARQUEE 0x08
492
493 typedef struct
494 {
495 INT iLow;
496 INT iHigh;
497 } PBRANGE, *PPBRANGE;
498
499
500 /* ImageList */
501
502 struct _IMAGELIST;
503 typedef struct _IMAGELIST *HIMAGELIST;
504
505 #define CLR_NONE 0xFFFFFFFF
506 #define CLR_DEFAULT 0xFF000000
507 #define CLR_HILIGHT CLR_DEFAULT
508
509 #define ILC_MASK 0x0001
510 #define ILC_COLOR 0x0000
511 #define ILC_COLORDDB 0x00FE
512 #define ILC_COLOR4 0x0004
513 #define ILC_COLOR8 0x0008
514 #define ILC_COLOR16 0x0010
515 #define ILC_COLOR24 0x0018
516 #define ILC_COLOR32 0x0020
517 #define ILC_PALETTE 0x0800 /* no longer supported by M$ */
518 #define ILC_MIRROR 0x2000
519 #define ILC_PERITEMMIRROR 0x8000
520
521 #define ILD_NORMAL 0x0000
522 #define ILD_TRANSPARENT 0x0001
523 #define ILD_BLEND25 0x0002
524 #define ILD_BLEND50 0x0004
525 #define ILD_MASK 0x0010
526 #define ILD_IMAGE 0x0020
527 #define ILD_ROP 0x0040
528 #define ILD_OVERLAYMASK 0x0F00
529 #define ILD_PRESERVEALPHA 0x1000
530 #define ILD_SCALE 0x2000
531 #define ILD_DPISCALE 0x4000
532 #define ILD_ASYNC 0x8000
533
534 #define ILD_SELECTED ILD_BLEND50
535 #define ILD_FOCUS ILD_BLEND25
536 #define ILD_BLEND ILD_BLEND50
537
538 #define INDEXTOOVERLAYMASK(i) ((i)<<8)
539 #define INDEXTOSTATEIMAGEMASK(i) ((i)<<12)
540
541 #define ILCF_MOVE (0x00000000)
542 #define ILCF_SWAP (0x00000001)
543
544 #define ILGT_NORMAL 0x0000
545 #define ILGT_ASYNC 0x0001
546
547 #define ILS_NORMAL 0x0000
548 #define ILS_GLOW 0x0001
549 #define ILS_SHADOW 0x0002
550 #define ILS_SATURATE 0x0004
551 #define ILS_ALPHA 0x0008
552
553 typedef struct _IMAGEINFO
554 {
555 HBITMAP hbmImage;
556 HBITMAP hbmMask;
557 INT Unused1;
558 INT Unused2;
559 RECT rcImage;
560 } IMAGEINFO, *LPIMAGEINFO;
561
562
563 typedef struct _IMAGELISTDRAWPARAMS
564 {
565 DWORD cbSize;
566 HIMAGELIST himl;
567 INT i;
568 HDC hdcDst;
569 INT x;
570 INT y;
571 INT cx;
572 INT cy;
573 INT xBitmap; /* x offest from the upperleft of bitmap */
574 INT yBitmap; /* y offset from the upperleft of bitmap */
575 COLORREF rgbBk;
576 COLORREF rgbFg;
577 UINT fStyle;
578 DWORD dwRop;
579 DWORD fState;
580 DWORD Frame;
581 DWORD crEffect;
582 } IMAGELISTDRAWPARAMS, *LPIMAGELISTDRAWPARAMS;
583
584
585 INT WINAPI ImageList_Add(HIMAGELIST,HBITMAP,HBITMAP);
586 INT WINAPI ImageList_AddMasked(HIMAGELIST,HBITMAP,COLORREF);
587 BOOL WINAPI ImageList_BeginDrag(HIMAGELIST,INT,INT,INT);
588 BOOL WINAPI ImageList_Copy(HIMAGELIST,INT,HIMAGELIST,INT,UINT);
589 HIMAGELIST WINAPI ImageList_Create(INT,INT,UINT,INT,INT);
590 BOOL WINAPI ImageList_Destroy(HIMAGELIST);
591 BOOL WINAPI ImageList_DragEnter(HWND,INT,INT);
592 BOOL WINAPI ImageList_DragLeave(HWND);
593 BOOL WINAPI ImageList_DragMove(INT,INT);
594 BOOL WINAPI ImageList_DragShowNolock (BOOL);
595 BOOL WINAPI ImageList_Draw(HIMAGELIST,INT,HDC,INT,INT,UINT);
596 BOOL WINAPI ImageList_DrawEx(HIMAGELIST,INT,HDC,INT,INT,INT,
597 INT,COLORREF,COLORREF,UINT);
598 BOOL WINAPI ImageList_DrawIndirect(IMAGELISTDRAWPARAMS*);
599 HIMAGELIST WINAPI ImageList_Duplicate(HIMAGELIST);
600 VOID WINAPI ImageList_EndDrag(VOID);
601 COLORREF WINAPI ImageList_GetBkColor(HIMAGELIST);
602 HIMAGELIST WINAPI ImageList_GetDragImage(POINT*,POINT*);
603 HICON WINAPI ImageList_GetIcon(HIMAGELIST,INT,UINT);
604 BOOL WINAPI ImageList_GetIconSize(HIMAGELIST,INT*,INT*);
605 INT WINAPI ImageList_GetImageCount(HIMAGELIST);
606 BOOL WINAPI ImageList_GetImageInfo(HIMAGELIST,INT,IMAGEINFO*);
607 BOOL WINAPI ImageList_GetImageRect(HIMAGELIST,INT,LPRECT);
608 HIMAGELIST WINAPI ImageList_LoadImageA(HINSTANCE,LPCSTR,INT,INT,
609 COLORREF,UINT,UINT);
610 HIMAGELIST WINAPI ImageList_LoadImageW(HINSTANCE,LPCWSTR,INT,INT,
611 COLORREF,UINT,UINT);
612 #define ImageList_LoadImage WINELIB_NAME_AW(ImageList_LoadImage)
613 HIMAGELIST WINAPI ImageList_Merge(HIMAGELIST,INT,HIMAGELIST,INT,INT,INT);
614 BOOL WINAPI ImageList_Remove(HIMAGELIST,INT);
615 BOOL WINAPI ImageList_Replace(HIMAGELIST,INT,HBITMAP,HBITMAP);
616 INT WINAPI ImageList_ReplaceIcon(HIMAGELIST,INT,HICON);
617 COLORREF WINAPI ImageList_SetBkColor(HIMAGELIST,COLORREF);
618 BOOL WINAPI ImageList_SetDragCursorImage(HIMAGELIST,INT,INT,INT);
619
620 BOOL WINAPI ImageList_SetIconSize(HIMAGELIST,INT,INT);
621 BOOL WINAPI ImageList_SetImageCount(HIMAGELIST,UINT);
622 BOOL WINAPI ImageList_SetOverlayImage(HIMAGELIST,INT,INT);
623
624 #ifdef __IStream_INTERFACE_DEFINED__
625 HIMAGELIST WINAPI ImageList_Read(LPSTREAM);
626 BOOL WINAPI ImageList_Write(HIMAGELIST, LPSTREAM);
627 #endif
628
629 #define ImageList_AddIcon(himl,hicon) ImageList_ReplaceIcon(himl,-1,hicon)
630 #define ImageList_ExtractIcon(hi,himl,i) ImageList_GetIcon(himl,i,0)
631 #define ImageList_LoadBitmap(hi,lpbmp,cx,cGrow,crMask) \
632 ImageList_LoadImage(hi,lpbmp,cx,cGrow,crMask,IMAGE_BITMAP,0)
633 #define ImageList_RemoveAll(himl) ImageList_Remove(himl,-1)
634
635
636 #ifndef WM_MOUSEHOVER
637 #define WM_MOUSEHOVER 0x02A1
638 #define WM_MOUSELEAVE 0x02A3
639 #endif
640
641 #ifndef TME_HOVER
642
643 #define TME_HOVER 0x00000001
644 #define TME_LEAVE 0x00000002
645 #define TME_NONCLIENT 0x00000010
646 #define TME_QUERY 0x40000000
647 #define TME_CANCEL 0x80000000
648
649
650 #define HOVER_DEFAULT 0xFFFFFFFF
651
652 typedef struct tagTRACKMOUSEEVENT {
653 DWORD cbSize;
654 DWORD dwFlags;
655 HWND hwndTrack;
656 DWORD dwHoverTime;
657 } TRACKMOUSEEVENT, *LPTRACKMOUSEEVENT;
658
659 #endif
660
661 BOOL WINAPI _TrackMouseEvent(LPTRACKMOUSEEVENT lpEventTrack);
662
663 /* Flat Scrollbar control */
664
665 #define FLATSB_CLASSA "flatsb_class32"
666 #if defined(__GNUC__)
667 # define FLATSB_CLASSW (const WCHAR []){ 'f','l','a','t','s','b','_', \
668 'c','l','a','s','s','3','2',0 }
669 #elif defined(_MSC_VER)
670 # define FLATSB_CLASSW L"flatsb_class32"
671 #else
672 static const WCHAR FLATSB_CLASSW[] = { 'f','l','a','t','s','b','_',
673 'c','l','a','s','s','3','2',0 };
674 #endif
675 #define FLATSB_CLASS WINELIB_NAME_AW(FLATSB_CLASS)
676
677 #define WSB_PROP_CYVSCROLL 0x00000001L
678 #define WSB_PROP_CXHSCROLL 0x00000002L
679 #define WSB_PROP_CYHSCROLL 0x00000004L
680 #define WSB_PROP_CXVSCROLL 0x00000008L
681 #define WSB_PROP_CXHTHUMB 0x00000010L
682 #define WSB_PROP_CYVTHUMB 0x00000020L
683 #define WSB_PROP_VBKGCOLOR 0x00000040L
684 #define WSB_PROP_HBKGCOLOR 0x00000080L
685 #define WSB_PROP_VSTYLE 0x00000100L
686 #define WSB_PROP_HSTYLE 0x00000200L
687 #define WSB_PROP_WINSTYLE 0x00000400L
688 #define WSB_PROP_PALETTE 0x00000800L
689 #define WSB_PROP_MASK 0x00000FFFL
690
691 #define FSB_REGULAR_MODE 0
692 #define FSB_ENCARTA_MODE 1
693 #define FSB_FLAT_MODE 2
694
695
696 BOOL WINAPI FlatSB_EnableScrollBar(HWND, INT, UINT);
697 BOOL WINAPI FlatSB_ShowScrollBar(HWND, INT, BOOL);
698 BOOL WINAPI FlatSB_GetScrollRange(HWND, INT, LPINT, LPINT);
699 BOOL WINAPI FlatSB_GetScrollInfo(HWND, INT, LPSCROLLINFO);
700 INT WINAPI FlatSB_GetScrollPos(HWND, INT);
701 BOOL WINAPI FlatSB_GetScrollProp(HWND, INT, LPINT);
702 INT WINAPI FlatSB_SetScrollPos(HWND, INT, INT, BOOL);
703 INT WINAPI FlatSB_SetScrollInfo(HWND, INT, LPSCROLLINFO, BOOL);
704 INT WINAPI FlatSB_SetScrollRange(HWND, INT, INT, INT, BOOL);
705 BOOL WINAPI FlatSB_SetScrollProp(HWND, UINT, INT, BOOL);
706 BOOL WINAPI InitializeFlatSB(HWND);
707 HRESULT WINAPI UninitializeFlatSB(HWND);
708
709 /* Subclassing stuff */
710 typedef LRESULT (CALLBACK *SUBCLASSPROC)(HWND, UINT, WPARAM, LPARAM, UINT_PTR, DWORD_PTR);
711 BOOL WINAPI SetWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR, DWORD_PTR);
712 BOOL WINAPI GetWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR, DWORD_PTR*);
713 BOOL WINAPI RemoveWindowSubclass(HWND, SUBCLASSPROC, UINT_PTR);
714 LRESULT WINAPI DefSubclassProc(HWND, UINT, WPARAM, LPARAM);
715
716 int WINAPI DrawShadowText(HDC, LPCWSTR, UINT, RECT*, DWORD, COLORREF, COLORREF, int, int);
717
718 /* Header control */
719
720 #define WC_HEADERA "SysHeader32"
721 #if defined(__GNUC__)
722 # define WC_HEADERW (const WCHAR []){ 'S','y','s','H','e','a','d','e','r','3','2',0 }
723 #elif defined(_MSC_VER)
724 # define WC_HEADERW L"SysHeader32"
725 #else
726 static const WCHAR WC_HEADERW[] = { 'S','y','s','H','e','a','d','e','r','3','2',0 };
727 #endif
728 #define WC_HEADER WINELIB_NAME_AW(WC_HEADER)
729
730 #define HDS_HORZ 0x0000
731 #define HDS_BUTTONS 0x0002
732 #define HDS_HOTTRACK 0x0004
733 #define HDS_HIDDEN 0x0008
734 #define HDS_DRAGDROP 0x0040
735 #define HDS_FULLDRAG 0x0080
736 #define HDS_FILTERBAR 0x0100
737 #define HDS_FLAT 0x0200
738 #define HDS_CHECKBOXES 0x0400
739
740 #define HDI_WIDTH 0x0001
741 #define HDI_HEIGHT HDI_WIDTH
742 #define HDI_TEXT 0x0002
743 #define HDI_FORMAT 0x0004
744 #define HDI_LPARAM 0x0008
745 #define HDI_BITMAP 0x0010
746 #define HDI_IMAGE 0x0020
747 #define HDI_DI_SETITEM 0x0040
748 #define HDI_ORDER 0x0080
749 #define HDI_FILTER 0x0100
750
751 #define HDF_LEFT 0x0000
752 #define HDF_RIGHT 0x0001
753 #define HDF_CENTER 0x0002
754 #define HDF_JUSTIFYMASK 0x0003
755 #define HDF_RTLREADING 0x0004
756 #define HDF_CHECKBOX 0x0040
757 #define HDF_CHECKED 0x0080
758 #define HDF_FIXEDWIDTH 0x0100
759 #define HDF_SORTDOWN 0x0200
760 #define HDF_SORTUP 0x0400
761 #define HDF_IMAGE 0x0800
762 #define HDF_BITMAP_ON_RIGHT 0x1000
763 #define HDF_BITMAP 0x2000
764 #define HDF_STRING 0x4000
765 #define HDF_OWNERDRAW 0x8000
766
767 #define HHT_NOWHERE 0x0001
768 #define HHT_ONHEADER 0x0002
769 #define HHT_ONDIVIDER 0x0004
770 #define HHT_ONDIVOPEN 0x0008
771 #define HHT_ONFILTER 0x0010
772 #define HHT_ONFILTERBUTTON 0x0020
773 #define HHT_ABOVE 0x0100
774 #define HHT_BELOW 0x0200
775 #define HHT_TORIGHT 0x0400
776 #define HHT_TOLEFT 0x0800
777 #define HHT_ONITEMSTATEICON 0x1000
778
779 #define HDM_FIRST 0x1200
780 #define HDM_GETITEMCOUNT (HDM_FIRST+0)
781 #define HDM_INSERTITEMA (HDM_FIRST+1)
782 #define HDM_INSERTITEMW (HDM_FIRST+10)
783 #define HDM_INSERTITEM WINELIB_NAME_AW(HDM_INSERTITEM)
784 #define HDM_DELETEITEM (HDM_FIRST+2)
785 #define HDM_GETITEMA (HDM_FIRST+3)
786 #define HDM_GETITEMW (HDM_FIRST+11)
787 #define HDM_GETITEM WINELIB_NAME_AW(HDM_GETITEM)
788 #define HDM_SETITEMA (HDM_FIRST+4)
789 #define HDM_SETITEMW (HDM_FIRST+12)
790 #define HDM_SETITEM WINELIB_NAME_AW(HDM_SETITEM)
791 #define HDM_LAYOUT (HDM_FIRST+5)
792 #define HDM_HITTEST (HDM_FIRST+6)
793 #define HDM_GETITEMRECT (HDM_FIRST+7)
794 #define HDM_SETIMAGELIST (HDM_FIRST+8)
795 #define HDM_GETIMAGELIST (HDM_FIRST+9)
796
797 #define HDM_ORDERTOINDEX (HDM_FIRST+15)
798 #define HDM_CREATEDRAGIMAGE (HDM_FIRST+16)
799 #define HDM_GETORDERARRAY (HDM_FIRST+17)
800 #define HDM_SETORDERARRAY (HDM_FIRST+18)
801 #define HDM_SETHOTDIVIDER (HDM_FIRST+19)
802 #define HDM_SETBITMAPMARGIN (HDM_FIRST+20)
803 #define HDM_GETBITMAPMARGIN (HDM_FIRST+21)
804 #define HDM_SETFILTERCHANGETIMEOUT (HDM_FIRST+22)
805 #define HDM_EDITFILTER (HDM_FIRST+23)
806 #define HDM_CLEARFILTER (HDM_FIRST+24)
807 #define HDM_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
808 #define HDM_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
809
810 #define HDN_FIRST (0U-300U)
811 #define HDN_LAST (0U-399U)
812 #define HDN_ITEMCHANGINGA (HDN_FIRST-0)
813 #define HDN_ITEMCHANGINGW (HDN_FIRST-20)
814 #define HDN_ITEMCHANGING WINELIB_NAME_AW(HDN_ITEMCHANGING)
815 #define HDN_ITEMCHANGEDA (HDN_FIRST-1)
816 #define HDN_ITEMCHANGEDW (HDN_FIRST-21)
817 #define HDN_ITEMCHANGED WINELIB_NAME_AW(HDN_ITEMCHANGED)
818 #define HDN_ITEMCLICKA (HDN_FIRST-2)
819 #define HDN_ITEMCLICKW (HDN_FIRST-22)
820 #define HDN_ITEMCLICK WINELIB_NAME_AW(HDN_ITEMCLICK)
821 #define HDN_ITEMDBLCLICKA (HDN_FIRST-3)
822 #define HDN_ITEMDBLCLICKW (HDN_FIRST-23)
823 #define HDN_ITEMDBLCLICK WINELIB_NAME_AW(HDN_ITEMDBLCLICK)
824 #define HDN_DIVIDERDBLCLICKA (HDN_FIRST-5)
825 #define HDN_DIVIDERDBLCLICKW (HDN_FIRST-25)
826 #define HDN_DIVIDERDBLCLICK WINELIB_NAME_AW(HDN_DIVIDERDBLCLICK)
827 #define HDN_BEGINTRACKA (HDN_FIRST-6)
828 #define HDN_BEGINTRACKW (HDN_FIRST-26)
829 #define HDN_BEGINTRACK WINELIB_NAME_AW(HDN_BEGINTRACK)
830 #define HDN_ENDTRACKA (HDN_FIRST-7)
831 #define HDN_ENDTRACKW (HDN_FIRST-27)
832 #define HDN_ENDTRACK WINELIB_NAME_AW(HDN_ENDTRACK)
833 #define HDN_TRACKA (HDN_FIRST-8)
834 #define HDN_TRACKW (HDN_FIRST-28)
835 #define HDN_TRACK WINELIB_NAME_AW(HDN_TRACK)
836 #define HDN_GETDISPINFOA (HDN_FIRST-9)
837 #define HDN_GETDISPINFOW (HDN_FIRST-29)
838 #define HDN_GETDISPINFO WINELIB_NAME_AW(HDN_GETDISPINFO)
839 #define HDN_BEGINDRAG (HDN_FIRST-10)
840 #define HDN_ENDDRAG (HDN_FIRST-11)
841 #define HDN_FILTERCHANGE (HDN_FIRST-12)
842 #define HDN_FILTERBTNCLICK (HDN_FIRST-13)
843 #define HDN_BEGINFILTEREDIT (HDN_FIRST-14)
844 #define HDN_ENDFILTEREDIT (HDN_FIRST-15)
845 #define HDN_ITEMSTATEICONCLICK (HDN_FIRST-16)
846 #define HDN_ITEMKEYDOWN (HDN_FIRST-17)
847
848 typedef struct _HD_LAYOUT
849 {
850 RECT *prc;
851 WINDOWPOS *pwpos;
852 } HDLAYOUT, *LPHDLAYOUT;
853
854 #define HD_LAYOUT HDLAYOUT
855
856 typedef struct _HD_ITEMA
857 {
858 UINT mask;
859 INT cxy;
860 LPSTR pszText;
861 HBITMAP hbm;
862 INT cchTextMax;
863 INT fmt;
864 LPARAM lParam;
865 INT iImage;
866 INT iOrder;
867 UINT type;
868 LPVOID pvFilter;
869 } HDITEMA, *LPHDITEMA;
870
871 typedef struct _HD_ITEMW
872 {
873 UINT mask;
874 INT cxy;
875 LPWSTR pszText;
876 HBITMAP hbm;
877 INT cchTextMax;
878 INT fmt;
879 LPARAM lParam;
880 INT iImage;
881 INT iOrder;
882 UINT type;
883 LPVOID pvFilter;
884 } HDITEMW, *LPHDITEMW;
885
886 #define HDITEM WINELIB_NAME_AW(HDITEM)
887 #define LPHDITEM WINELIB_NAME_AW(LPHDITEM)
888 #define HD_ITEM HDITEM
889
890 #define HDITEM_V1_SIZEA CCSIZEOF_STRUCT(HDITEMA, lParam)
891 #define HDITEM_V1_SIZEW CCSIZEOF_STRUCT(HDITEMW, lParam)
892 #define HDITEM_V1_SIZE WINELIB_NAME_AW(HDITEM_V1_SIZE)
893
894 #define HDFT_ISSTRING 0x0000
895 #define HDFT_ISNUMBER 0x0001
896 #define HDFT_HASNOVALUE 0x8000
897
898 typedef struct _HD_TEXTFILTERA
899 {
900 LPSTR pszText;
901 INT cchTextMax;
902 } HD_TEXTFILTERA, *LPHD_TEXTFILTERA;
903
904 typedef struct _HD_TEXTFILTERW
905 {
906 LPWSTR pszText;
907 INT cchTextMax;
908 } HD_TEXTFILTERW, *LPHD_TEXTFILTERW;
909
910 #define HD_TEXTFILTER WINELIB_NAME_AW(HD_TEXTFILTER)
911 #define HDTEXTFILTER WINELIB_NAME_AW(HD_TEXTFILTER)
912 #define LPHD_TEXTFILTER WINELIB_NAME_AW(LPHD_TEXTFILTER)
913 #define LPHDTEXTFILTER WINELIB_NAME_AW(LPHD_TEXTFILTER)
914
915 typedef struct _HD_HITTESTINFO
916 {
917 POINT pt;
918 UINT flags;
919 INT iItem;
920 } HDHITTESTINFO, *LPHDHITTESTINFO;
921
922 #define HD_HITTESTINFO HDHITTESTINFO
923
924 typedef struct tagNMHEADERA
925 {
926 NMHDR hdr;
927 INT iItem;
928 INT iButton;
929 HDITEMA *pitem;
930 } NMHEADERA, *LPNMHEADERA;
931
932 typedef struct tagNMHEADERW
933 {
934 NMHDR hdr;
935 INT iItem;
936 INT iButton;
937 HDITEMW *pitem;
938 } NMHEADERW, *LPNMHEADERW;
939
940 #define NMHEADER WINELIB_NAME_AW(NMHEADER)
941 #define LPNMHEADER WINELIB_NAME_AW(LPNMHEADER)
942 #define HD_NOTIFY NMHEADER
943
944 typedef struct tagNMHDDISPINFOA
945 {
946 NMHDR hdr;
947 INT iItem;
948 UINT mask;
949 LPSTR pszText;
950 INT cchTextMax;
951 INT iImage;
952 LPARAM lParam;
953 } NMHDDISPINFOA, *LPNMHDDISPINFOA;
954
955 typedef struct tagNMHDDISPINFOW
956 {
957 NMHDR hdr;
958 INT iItem;
959 UINT mask;
960 LPWSTR pszText;
961 INT cchTextMax;
962 INT iImage;
963 LPARAM lParam;
964 } NMHDDISPINFOW, *LPNMHDDISPINFOW;
965
966 #define NMHDDISPINFO WINELIB_NAME_AW(NMHDDISPINFO)
967 #define LPNMHDDISPINFO WINELIB_NAME_AW(LPNMHDDISPINFO)
968
969 typedef struct tagNMHDFILTERBTNCLICK
970 {
971 NMHDR hdr;
972 INT iItem;
973 RECT rc;
974 } NMHDFILTERBTNCLICK, *LPNMHDFILTERBTNCLICK;
975
976 #define Header_GetItemCount(hwndHD) \
977 (INT)SNDMSGA((hwndHD),HDM_GETITEMCOUNT,0,0L)
978 #define Header_InsertItemA(hwndHD,i,phdi) \
979 (INT)SNDMSGA((hwndHD),HDM_INSERTITEMA,(WPARAM)(INT)(i),(LPARAM)(const HDITEMA*)(phdi))
980 #define Header_InsertItemW(hwndHD,i,phdi) \
981 (INT)SNDMSGW((hwndHD),HDM_INSERTITEMW,(WPARAM)(INT)(i),(LPARAM)(const HDITEMW*)(phdi))
982 #define Header_InsertItem WINELIB_NAME_AW(Header_InsertItem)
983 #define Header_DeleteItem(hwndHD,i) \
984 (BOOL)SNDMSGA((hwndHD),HDM_DELETEITEM,(WPARAM)(INT)(i),0L)
985 #define Header_GetItemA(hwndHD,i,phdi) \
986 (BOOL)SNDMSGA((hwndHD),HDM_GETITEMA,(WPARAM)(INT)(i),(LPARAM)(HDITEMA*)(phdi))
987 #define Header_GetItemW(hwndHD,i,phdi) \
988 (BOOL)SNDMSGW((hwndHD),HDM_GETITEMW,(WPARAM)(INT)(i),(LPARAM)(HDITEMW*)(phdi))
989 #define Header_GetItem WINELIB_NAME_AW(Header_GetItem)
990 #define Header_SetItemA(hwndHD,i,phdi) \
991 (BOOL)SNDMSGA((hwndHD),HDM_SETITEMA,(WPARAM)(INT)(i),(LPARAM)(const HDITEMA*)(phdi))
992 #define Header_SetItemW(hwndHD,i,phdi) \
993 (BOOL)SNDMSGW((hwndHD),HDM_SETITEMW,(WPARAM)(INT)(i),(LPARAM)(const HDITEMW*)(phdi))
994 #define Header_SetItem WINELIB_NAME_AW(Header_SetItem)
995 #define Header_Layout(hwndHD,playout) \
996 (BOOL)SNDMSGA((hwndHD),HDM_LAYOUT,0,(LPARAM)(LPHDLAYOUT)(playout))
997 #define Header_GetItemRect(hwnd,iItem,lprc) \
998 (BOOL)SNDMSGA((hwnd),HDM_GETITEMRECT,(WPARAM)iItem,(LPARAM)lprc)
999 #define Header_SetImageList(hwnd,himl) \
1000 (HIMAGELIST)SNDMSGA((hwnd),HDM_SETIMAGELIST,0,(LPARAM)himl)
1001 #define Header_GetImageList(hwnd) \
1002 (HIMAGELIST)SNDMSGA((hwnd),HDM_GETIMAGELIST,0,0)
1003 #define Header_OrderToIndex(hwnd,i) \
1004 (INT)SNDMSGA((hwnd),HDM_ORDERTOINDEX,(WPARAM)i,0)
1005 #define Header_CreateDragImage(hwnd,i) \
1006 (HIMAGELIST)SNDMSGA((hwnd),HDM_CREATEDRAGIMAGE,(WPARAM)i,0)
1007 #define Header_GetOrderArray(hwnd,iCount,lpi) \
1008 (BOOL)SNDMSGA((hwnd),HDM_GETORDERARRAY,(WPARAM)iCount,(LPARAM)lpi)
1009 #define Header_SetOrderArray(hwnd,iCount,lpi) \
1010 (BOOL)SNDMSGA((hwnd),HDM_SETORDERARRAY,(WPARAM)iCount,(LPARAM)lpi)
1011 #define Header_SetHotDivider(hwnd,fPos,dw) \
1012 (INT)SNDMSGA((hwnd),HDM_SETHOTDIVIDER,(WPARAM)fPos,(LPARAM)dw)
1013 #define Header_SetUnicodeFormat(hwnd,fUnicode) \
1014 (BOOL)SNDMSGA((hwnd),HDM_SETUNICODEFORMAT,(WPARAM)(fUnicode),0)
1015 #define Header_GetUnicodeFormat(hwnd) \
1016 (BOOL)SNDMSGA((hwnd),HDM_GETUNICODEFORMAT,0,0)
1017
1018 /* Win32 5.1 Button Theme */
1019 #define WC_BUTTONA "Button"
1020 #if defined(__GNUC__)
1021 # define WC_BUTTONW (const WCHAR []){ 'B','u','t','t','o','n',0 }
1022 #elif defined(_MSC_VER)
1023 # define WC_BUTTONW L"Button"
1024 #else
1025 static const WCHAR WC_BUTTONW[] = { 'B','u','t','t','o','n',0 };
1026 #endif
1027 #define WC_BUTTON WINELIB_NAME_AW(WC_BUTTON)
1028
1029 #define BCN_FIRST (0U-1250U)
1030 #define BCN_LAST (0U-1350U)
1031
1032 #define BCN_HOTITEMCHANGE (BCN_FIRST + 0x0001)
1033
1034 typedef struct tagNMBCHOTITEM
1035 {
1036 NMHDR hdr;
1037 DWORD dwFlags;
1038 } NMBCHOTITEM, *LPNMBCHOTITEM;
1039
1040 #define BST_HOT 0x0200
1041
1042 /* Toolbar */
1043
1044 #define TOOLBARCLASSNAMEA "ToolbarWindow32"
1045 #if defined(__GNUC__)
1046 # define TOOLBARCLASSNAMEW (const WCHAR []){ 'T','o','o','l','b','a','r', \
1047 'W','i','n','d','o','w','3','2',0 }
1048 #elif defined(_MSC_VER)
1049 # define TOOLBARCLASSNAMEW L"ToolbarWindow32"
1050 #else
1051 static const WCHAR TOOLBARCLASSNAMEW[] = { 'T','o','o','l','b','a','r',
1052 'W','i','n','d','o','w','3','2',0 };
1053 #endif
1054 #define TOOLBARCLASSNAME WINELIB_NAME_AW(TOOLBARCLASSNAME)
1055
1056 #define CMB_MASKED 0x02
1057
1058 #define TBSTATE_CHECKED 0x01
1059 #define TBSTATE_PRESSED 0x02
1060 #define TBSTATE_ENABLED 0x04
1061 #define TBSTATE_HIDDEN 0x08
1062 #define TBSTATE_INDETERMINATE 0x10
1063 #define TBSTATE_WRAP 0x20
1064 #define TBSTATE_ELLIPSES 0x40
1065 #define TBSTATE_MARKED 0x80
1066
1067
1068 /* as of _WIN32_IE >= 0x0500 the following symbols are obsolete,
1069 * "everyone" should use the BTNS_... stuff below
1070 */
1071 #define TBSTYLE_BUTTON 0x00
1072 #define TBSTYLE_SEP 0x01
1073 #define TBSTYLE_CHECK 0x02
1074 #define TBSTYLE_GROUP 0x04
1075 #define TBSTYLE_CHECKGROUP (TBSTYLE_GROUP | TBSTYLE_CHECK)
1076 #define TBSTYLE_DROPDOWN 0x08
1077 #define TBSTYLE_AUTOSIZE 0x10
1078 #define TBSTYLE_NOPREFIX 0x20
1079 #define BTNS_BUTTON TBSTYLE_BUTTON
1080 #define BTNS_SEP TBSTYLE_SEP
1081 #define BTNS_CHECK TBSTYLE_CHECK
1082 #define BTNS_GROUP TBSTYLE_GROUP
1083 #define BTNS_CHECKGROUP TBSTYLE_CHECKGROUP
1084 #define BTNS_DROPDOWN TBSTYLE_DROPDOWN
1085 #define BTNS_AUTOSIZE TBSTYLE_AUTOSIZE
1086 #define BTNS_NOPREFIX TBSTYLE_NOPREFIX
1087 #define BTNS_SHOWTEXT 0x40 /* ignored unless TBSTYLE_EX_MIXEDB set */
1088 #define BTNS_WHOLEDROPDOWN 0x80 /* draw dropdown arrow, but without split arrow section */
1089
1090 #define TBSTYLE_TOOLTIPS 0x0100
1091 #define TBSTYLE_WRAPABLE 0x0200
1092 #define TBSTYLE_ALTDRAG 0x0400
1093 #define TBSTYLE_FLAT 0x0800
1094 #define TBSTYLE_LIST 0x1000
1095 #define TBSTYLE_CUSTOMERASE 0x2000
1096 #define TBSTYLE_REGISTERDROP 0x4000
1097 #define TBSTYLE_TRANSPARENT 0x8000
1098 #define TBSTYLE_EX_DRAWDDARROWS 0x00000001
1099 #define TBSTYLE_EX_UNDOC1 0x00000004 /* similar to TBSTYLE_WRAPABLE */
1100 #define TBSTYLE_EX_MIXEDBUTTONS 0x00000008
1101 #define TBSTYLE_EX_HIDECLIPPEDBUTTONS 0x00000010 /* don't show partially obscured buttons */
1102 #define TBSTYLE_EX_DOUBLEBUFFER 0x00000080 /* Double Buffer the toolbar ??? */
1103
1104 #define TBIF_IMAGE 0x00000001
1105 #define TBIF_TEXT 0x00000002
1106 #define TBIF_STATE 0x00000004
1107 #define TBIF_STYLE 0x00000008
1108 #define TBIF_LPARAM 0x00000010
1109 #define TBIF_COMMAND 0x00000020
1110 #define TBIF_SIZE 0x00000040
1111 #define TBIF_BYINDEX 0x80000000
1112
1113 #define TBBF_LARGE 0x0001
1114
1115 #define TB_ENABLEBUTTON (WM_USER+1)
1116 #define TB_CHECKBUTTON (WM_USER+2)
1117 #define TB_PRESSBUTTON (WM_USER+3)
1118 #define TB_HIDEBUTTON (WM_USER+4)
1119 #define TB_INDETERMINATE (WM_USER+5)
1120 #define TB_MARKBUTTON (WM_USER+6)
1121 #define TB_ISBUTTONENABLED (WM_USER+9)
1122 #define TB_ISBUTTONCHECKED (WM_USER+10)
1123 #define TB_ISBUTTONPRESSED (WM_USER+11)
1124 #define TB_ISBUTTONHIDDEN (WM_USER+12)
1125 #define TB_ISBUTTONINDETERMINATE (WM_USER+13)
1126 #define TB_ISBUTTONHIGHLIGHTED (WM_USER+14)
1127 #define TB_SETSTATE (WM_USER+17)
1128 #define TB_GETSTATE (WM_USER+18)
1129 #define TB_ADDBITMAP (WM_USER+19)
1130 #define TB_ADDBUTTONSA (WM_USER+20)
1131 #define TB_ADDBUTTONSW (WM_USER+68)
1132 #define TB_ADDBUTTONS WINELIB_NAME_AW(TB_ADDBUTTONS)
1133 #define TB_HITTEST (WM_USER+69)
1134 #define TB_INSERTBUTTONA (WM_USER+21)
1135 #define TB_INSERTBUTTONW (WM_USER+67)
1136 #define TB_INSERTBUTTON WINELIB_NAME_AW(TB_INSERTBUTTON)
1137 #define TB_DELETEBUTTON (WM_USER+22)
1138 #define TB_GETBUTTON (WM_USER+23)
1139 #define TB_BUTTONCOUNT (WM_USER+24)
1140 #define TB_COMMANDTOINDEX (WM_USER+25)
1141 #define TB_SAVERESTOREA (WM_USER+26)
1142 #define TB_SAVERESTOREW (WM_USER+76)
1143 #define TB_SAVERESTORE WINELIB_NAME_AW(TB_SAVERESTORE)
1144 #define TB_CUSTOMIZE (WM_USER+27)
1145 #define TB_ADDSTRINGA (WM_USER+28)
1146 #define TB_ADDSTRINGW (WM_USER+77)
1147 #define TB_ADDSTRING WINELIB_NAME_AW(TB_ADDSTRING)
1148 #define TB_GETITEMRECT (WM_USER+29)
1149 #define TB_BUTTONSTRUCTSIZE (WM_USER+30)
1150 #define TB_SETBUTTONSIZE (WM_USER+31)
1151 #define TB_SETBITMAPSIZE (WM_USER+32)
1152 #define TB_AUTOSIZE (WM_USER+33)
1153 #define TB_GETTOOLTIPS (WM_USER+35)
1154 #define TB_SETTOOLTIPS (WM_USER+36)
1155 #define TB_SETPARENT (WM_USER+37)
1156 #define TB_SETROWS (WM_USER+39)
1157 #define TB_GETROWS (WM_USER+40)
1158 #define TB_GETBITMAPFLAGS (WM_USER+41)
1159 #define TB_SETCMDID (WM_USER+42)
1160 #define TB_CHANGEBITMAP (WM_USER+43)
1161 #define TB_GETBITMAP (WM_USER+44)
1162 #define TB_GETBUTTONTEXTA (WM_USER+45)
1163 #define TB_GETBUTTONTEXTW (WM_USER+75)
1164 #define TB_GETBUTTONTEXT WINELIB_NAME_AW(TB_GETBUTTONTEXT)
1165 #define TB_REPLACEBITMAP (WM_USER+46)
1166 #define TB_SETINDENT (WM_USER+47)
1167 #define TB_SETIMAGELIST (WM_USER+48)
1168 #define TB_GETIMAGELIST (WM_USER+49)
1169 #define TB_LOADIMAGES (WM_USER+50)
1170 #define TB_GETRECT (WM_USER+51) /* wParam is the Cmd instead of index */
1171 #define TB_SETHOTIMAGELIST (WM_USER+52)
1172 #define TB_GETHOTIMAGELIST (WM_USER+53)
1173 #define TB_SETDISABLEDIMAGELIST (WM_USER+54)
1174 #define TB_GETDISABLEDIMAGELIST (WM_USER+55)
1175 #define TB_SETSTYLE (WM_USER+56)
1176 #define TB_GETSTYLE (WM_USER+57)
1177 #define TB_GETBUTTONSIZE (WM_USER+58)
1178 #define TB_SETBUTTONWIDTH (WM_USER+59)
1179 #define TB_SETMAXTEXTROWS (WM_USER+60)
1180 #define TB_GETTEXTROWS (WM_USER+61)
1181 #define TB_GETOBJECT (WM_USER+62)
1182 #define TB_GETBUTTONINFOW (WM_USER+63)
1183 #define TB_GETBUTTONINFOA (WM_USER+65)
1184 #define TB_GETBUTTONINFO WINELIB_NAME_AW(TB_GETBUTTONINFO)
1185 #define TB_SETBUTTONINFOW (WM_USER+64)
1186 #define TB_SETBUTTONINFOA (WM_USER+66)
1187 #define TB_SETBUTTONINFO WINELIB_NAME_AW(TB_SETBUTTONINFO)
1188 #define TB_SETDRAWTEXTFLAGS (WM_USER+70)
1189 #define TB_GETHOTITEM (WM_USER+71)
1190 #define TB_SETHOTITEM (WM_USER+72)
1191 #define TB_SETANCHORHIGHLIGHT (WM_USER+73)
1192 #define TB_GETANCHORHIGHLIGHT (WM_USER+74)
1193 #define TB_MAPACCELERATORA (WM_USER+78)
1194 #define TB_MAPACCELERATORW (WM_USER+90)
1195 #define TB_MAPACCELERATOR WINELIB_NAME_AW(TB_MAPACCELERATOR)
1196 #define TB_GETINSERTMARK (WM_USER+79)
1197 #define TB_SETINSERTMARK (WM_USER+80)
1198 #define TB_INSERTMARKHITTEST (WM_USER+81)
1199 #define TB_MOVEBUTTON (WM_USER+82)
1200 #define TB_GETMAXSIZE (WM_USER+83)
1201 #define TB_SETEXTENDEDSTYLE (WM_USER+84)
1202 #define TB_GETEXTENDEDSTYLE (WM_USER+85)
1203 #define TB_GETPADDING (WM_USER+86)
1204 #define TB_SETPADDING (WM_USER+87)
1205 #define TB_SETINSERTMARKCOLOR (WM_USER+88)
1206 #define TB_GETINSERTMARKCOLOR (WM_USER+89)
1207 #define TB_SETCOLORSCHEME CCM_SETCOLORSCHEME
1208 #define TB_GETCOLORSCHEME CCM_GETCOLORSCHEME
1209 #define TB_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
1210 #define TB_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
1211 #define TB_GETSTRINGW (WM_USER+91)
1212 #define TB_GETSTRINGA (WM_USER+92)
1213 #define TB_GETSTRING WINELIB_NAME_AW(TB_GETSTRING)
1214
1215 /* undocumented messages in Toolbar */
1216 #define TB_UNKWN45D (WM_USER+93)
1217 #define TB_UNKWN45E (WM_USER+94)
1218 #define TB_UNKWN460 (WM_USER+96)
1219 #define TB_UNKWN462 (WM_USER+98)
1220 #define TB_UNKWN463 (WM_USER+99)
1221 #define TB_UNKWN464 (WM_USER+100)
1222
1223 #define TB_GETMETRICS (WM_USER+101)
1224 #define TB_SETMETRICS (WM_USER+102)
1225 #define TB_SETWINDOWTHEME CCM_SETWINDOWTHEME
1226
1227 #define TBN_FIRST (0U-700U)
1228 #define TBN_LAST (0U-720U)
1229 #define TBN_GETBUTTONINFOA (TBN_FIRST-0)
1230 #define TBN_GETBUTTONINFOW (TBN_FIRST-20)
1231 #define TBN_GETBUTTONINFO WINELIB_NAME_AW(TBN_GETBUTTONINFO)
1232 #define TBN_BEGINDRAG (TBN_FIRST-1)
1233 #define TBN_ENDDRAG (TBN_FIRST-2)
1234 #define TBN_BEGINADJUST (TBN_FIRST-3)
1235 #define TBN_ENDADJUST (TBN_FIRST-4)
1236 #define TBN_RESET (TBN_FIRST-5)
1237 #define TBN_QUERYINSERT (TBN_FIRST-6)
1238 #define TBN_QUERYDELETE (TBN_FIRST-7)
1239 #define TBN_TOOLBARCHANGE (TBN_FIRST-8)
1240 #define TBN_CUSTHELP (TBN_FIRST-9)
1241 #define TBN_DROPDOWN (TBN_FIRST-10)
1242 #define TBN_GETOBJECT (TBN_FIRST-12)
1243 #define TBN_HOTITEMCHANGE (TBN_FIRST-13)
1244 #define TBN_DRAGOUT (TBN_FIRST-14)
1245 #define TBN_DELETINGBUTTON (TBN_FIRST-15)
1246 #define TBN_GETDISPINFOA (TBN_FIRST-16)
1247 #define TBN_GETDISPINFOW (TBN_FIRST-17)
1248 #define TBN_GETDISPINFO WINELIB_NAME_AW(TBN_GETDISPINFO)
1249 #define TBN_GETINFOTIPA (TBN_FIRST-18)
1250 #define TBN_GETINFOTIPW (TBN_FIRST-19)
1251 #define TBN_GETINFOTIP WINELIB_NAME_AW(TBN_GETINFOTIP)
1252 #define TBN_RESTORE (TBN_FIRST-21)
1253 #define TBN_SAVE (TBN_FIRST-22)
1254 #define TBN_INITCUSTOMIZE (TBN_FIRST-23)
1255 #define TBN_WRAPHOTITEM (TBN_FIRST-24) /* this is undocumented and the name is a guess */
1256 #define TBNRF_HIDEHELP 0x00000001
1257
1258
1259 /* Return values from TBN_DROPDOWN */
1260 #define TBDDRET_DEFAULT 0
1261 #define TBDDRET_NODEFAULT 1
1262 #define TBDDRET_TREATPRESSED 2
1263
1264 typedef struct _NMTBCUSTOMDRAW
1265 {
1266 NMCUSTOMDRAW nmcd;
1267 HBRUSH hbrMonoDither;
1268 HBRUSH hbrLines;
1269 HPEN hpenLines;
1270 COLORREF clrText;
1271 COLORREF clrMark;
1272 COLORREF clrTextHighlight;
1273 COLORREF clrBtnFace;
1274 COLORREF clrBtnHighlight;
1275 COLORREF clrHighlightHotTrack;
1276 RECT rcText;
1277 int nStringBkMode;
1278 int nHLStringBkMode;
1279 int iListGap;
1280 } NMTBCUSTOMDRAW, *LPNMTBCUSTOMDRAW;
1281
1282 /* return flags for Toolbar NM_CUSTOMDRAW notifications */
1283 #define TBCDRF_NOEDGES 0x00010000 /* Don't draw button edges */
1284 #define TBCDRF_HILITEHOTTRACK 0x00020000 /* Use color of the button bkgnd */
1285 /* when hottracked */
1286 #define TBCDRF_NOOFFSET 0x00040000 /* No offset button if pressed */
1287 #define TBCDRF_NOMARK 0x00080000 /* Don't draw default highlight */
1288 /* for TBSTATE_MARKED */
1289 #define TBCDRF_NOETCHEDEFFECT 0x00100000 /* No etched effect for */
1290 /* disabled items */
1291 #define TBCDRF_BLENDICON 0x00200000 /* ILD_BLEND50 on the icon image */
1292 #define TBCDRF_NOBACKGROUND 0x00400000 /* ILD_BLEND50 on the icon image */
1293 #define TBCDRF_USECDCOLORS 0x00800000
1294
1295
1296 /* This is just for old CreateToolbar. */
1297 /* Don't use it in new programs. */
1298 typedef struct _OLDTBBUTTON {
1299 INT iBitmap;
1300 INT idCommand;
1301 BYTE fsState;
1302 BYTE fsStyle;
1303 BYTE bReserved[2];
1304 DWORD dwData;
1305 } OLDTBBUTTON, *POLDTBBUTTON, *LPOLDTBBUTTON;
1306 typedef const OLDTBBUTTON *LPCOLDTBBUTTON;
1307
1308
1309 typedef struct _TBBUTTON {
1310 INT iBitmap;
1311 INT idCommand;
1312 BYTE fsState;
1313 BYTE fsStyle;
1314 #ifdef _WIN64
1315 BYTE bReserved[6];
1316 #else
1317 BYTE bReserved[2];
1318 #endif
1319 DWORD_PTR dwData;
1320 INT_PTR iString;
1321 } TBBUTTON, *PTBBUTTON, *LPTBBUTTON;
1322 typedef const TBBUTTON *LPCTBBUTTON;
1323
1324
1325 typedef struct _COLORMAP {
1326 COLORREF from;
1327 COLORREF to;
1328 } COLORMAP, *LPCOLORMAP;
1329
1330
1331 typedef struct tagTBADDBITMAP {
1332 HINSTANCE hInst;
1333 UINT_PTR nID;
1334 } TBADDBITMAP, *LPTBADDBITMAP;
1335
1336 #define HINST_COMMCTRL ((HINSTANCE)-1)
1337 #define IDB_STD_SMALL_COLOR 0
1338 #define IDB_STD_LARGE_COLOR 1
1339 #define IDB_VIEW_SMALL_COLOR 4
1340 #define IDB_VIEW_LARGE_COLOR 5
1341 #define IDB_HIST_SMALL_COLOR 8
1342 #define IDB_HIST_LARGE_COLOR 9
1343
1344 #define STD_CUT 0
1345 #define STD_COPY 1
1346 #define STD_PASTE 2
1347 #define STD_UNDO 3
1348 #define STD_REDOW 4
1349 #define STD_DELETE 5
1350 #define STD_FILENEW 6
1351 #define STD_FILEOPEN 7
1352 #define STD_FILESAVE 8
1353 #define STD_PRINTPRE 9
1354 #define STD_PROPERTIES 10
1355 #define STD_HELP 11
1356 #define STD_FIND 12
1357 #define STD_REPLACE 13
1358 #define STD_PRINT 14
1359
1360 #define VIEW_LARGEICONS 0
1361 #define VIEW_SMALLICONS 1
1362 #define VIEW_LIST 2
1363 #define VIEW_DETAILS 3
1364 #define VIEW_SORTNAME 4
1365 #define VIEW_SORTSIZE 5
1366 #define VIEW_SORTDATE 6
1367 #define VIEW_SORTTYPE 7
1368 #define VIEW_PARENTFOLDER 8
1369 #define VIEW_NETCONNECT 9
1370 #define VIEW_NETDISCONNECT 10
1371 #define VIEW_NEWFOLDER 11
1372 #define VIEW_VIEWMENU 12
1373
1374 #define HIST_BACK 0
1375 #define HIST_FORWARD 1
1376 #define HIST_FAVORITES 2
1377 #define HIST_ADDTOFAVORITES 3
1378 #define HIST_VIEWTREE 4
1379
1380 typedef struct tagTBSAVEPARAMSA {
1381 HKEY hkr;
1382 LPCSTR pszSubKey;
1383 LPCSTR pszValueName;
1384 } TBSAVEPARAMSA, *LPTBSAVEPARAMSA;
1385
1386 typedef struct tagTBSAVEPARAMSW {
1387 HKEY hkr;
1388 LPCWSTR pszSubKey;
1389 LPCWSTR pszValueName;
1390 } TBSAVEPARAMSW, *LPTBSAVEPARAMSW;
1391
1392 #define TBSAVEPARAMS WINELIB_NAME_AW(TBSAVEPARAMS)
1393 #define LPTBSAVEPARAMS WINELIB_NAME_AW(LPTBSAVEPARAMS)
1394
1395 typedef struct
1396 {
1397 UINT cbSize;
1398 DWORD dwMask;
1399 INT idCommand;
1400 INT iImage;
1401 BYTE fsState;
1402 BYTE fsStyle;
1403 WORD cx;
1404 DWORD_PTR lParam;
1405 LPSTR pszText;
1406 INT cchText;
1407 } TBBUTTONINFOA, *LPTBBUTTONINFOA;
1408
1409 typedef struct
1410 {
1411 UINT cbSize;
1412 DWORD dwMask;
1413 INT idCommand;
1414 INT iImage;
1415 BYTE fsState;
1416 BYTE fsStyle;
1417 WORD cx;
1418 DWORD_PTR lParam;
1419 LPWSTR pszText;
1420 INT cchText;
1421 } TBBUTTONINFOW, *LPTBBUTTONINFOW;
1422
1423 #define TBBUTTONINFO WINELIB_NAME_AW(TBBUTTONINFO)
1424 #define LPTBBUTTONINFO WINELIB_NAME_AW(LPTBBUTTONINFO)
1425
1426 typedef struct tagNMTBHOTITEM
1427 {
1428 NMHDR hdr;
1429 int idOld;
1430 int idNew;
1431 DWORD dwFlags;
1432 } NMTBHOTITEM, *LPNMTBHOTITEM;
1433
1434 typedef struct tagNMTBGETINFOTIPA
1435 {
1436 NMHDR hdr;
1437 LPSTR pszText;
1438 INT cchTextMax;
1439 INT iItem;
1440 LPARAM lParam;
1441 } NMTBGETINFOTIPA, *LPNMTBGETINFOTIPA;
1442
1443 typedef struct tagNMTBGETINFOTIPW
1444 {
1445 NMHDR hdr;
1446 LPWSTR pszText;
1447 INT cchTextMax;
1448 INT iItem;
1449 LPARAM lParam;
1450 } NMTBGETINFOTIPW, *LPNMTBGETINFOTIPW;
1451
1452 #define NMTBGETINFOTIP WINELIB_NAME_AW(NMTBGETINFOTIP)
1453 #define LPNMTBGETINFOTIP WINELIB_NAME_AW(LPNMTBGETINFOTIP)
1454
1455 typedef struct
1456 {
1457 NMHDR hdr;
1458 DWORD dwMask;
1459 int idCommand;
1460 DWORD_PTR lParam;
1461 int iImage;
1462 LPSTR pszText;
1463 int cchText;
1464 } NMTBDISPINFOA, *LPNMTBDISPINFOA;
1465
1466 typedef struct
1467 {
1468 NMHDR hdr;
1469 DWORD dwMask;
1470 int idCommand;
1471 DWORD_PTR lParam;
1472 int iImage;
1473 LPWSTR pszText;
1474 int cchText;
1475 } NMTBDISPINFOW, *LPNMTBDISPINFOW;
1476
1477 #define NMTBDISPINFO WINELIB_NAME_AW(NMTBDISPINFO)
1478 #define LPNMTBDISPINFO WINELIB_NAME_AW(LPNMTBDISPINFO)
1479
1480 /* contents of dwMask in the NMTBDISPINFO structure */
1481 #define TBNF_IMAGE 0x00000001
1482 #define TBNF_TEXT 0x00000002
1483 #define TBNF_DI_SETITEM 0x10000000
1484
1485
1486 typedef struct tagNMTOOLBARA
1487 {
1488 NMHDR hdr;
1489 INT iItem;
1490 TBBUTTON tbButton;
1491 INT cchText;
1492 LPSTR pszText;
1493 RECT rcButton; /* Version 5.80 */
1494 } NMTOOLBARA, *LPNMTOOLBARA, TBNOTIFYA, *LPTBNOTIFYA;
1495
1496 typedef struct tagNMTOOLBARW
1497 {
1498 NMHDR hdr;
1499 INT iItem;
1500 TBBUTTON tbButton;
1501 INT cchText;
1502 LPWSTR pszText;
1503 RECT rcButton; /* Version 5.80 */
1504 } NMTOOLBARW, *LPNMTOOLBARW, TBNOTIFYW, *LPTBNOTIFYW;
1505
1506 #define NMTOOLBAR WINELIB_NAME_AW(NMTOOLBAR)
1507 #define LPNMTOOLBAR WINELIB_NAME_AW(LPNMTOOLBAR)
1508 #define TBNOTIFY WINELIB_NAME_AW(TBNOTIFY)
1509 #define LPTBNOTIFY WINELIB_NAME_AW(LPTBNOTIFY)
1510
1511 typedef struct
1512 {
1513 HINSTANCE hInstOld;
1514 UINT_PTR nIDOld;
1515 HINSTANCE hInstNew;
1516 UINT_PTR nIDNew;
1517 INT nButtons;
1518 } TBREPLACEBITMAP, *LPTBREPLACEBITMAP;
1519
1520 #define HICF_OTHER 0x00000000
1521 #define HICF_MOUSE 0x00000001 /* Triggered by mouse */
1522 #define HICF_ARROWKEYS 0x00000002 /* Triggered by arrow keys */
1523 #define HICF_ACCELERATOR 0x00000004 /* Triggered by accelerator */
1524 #define HICF_DUPACCEL 0x00000008 /* This accelerator is not unique */
1525 #define HICF_ENTERING 0x00000010 /* idOld is invalid */
1526 #define HICF_LEAVING 0x00000020 /* idNew is invalid */
1527 #define HICF_RESELECT 0x00000040 /* hot item reselected */
1528 #define HICF_LMOUSE 0x00000080 /* left mouse button selected */
1529 #define HICF_TOGGLEDROPDOWN 0x00000100 /* Toggle button's dropdown state */
1530
1531 typedef struct
1532 {
1533 int iButton;
1534 DWORD dwFlags;
1535 } TBINSERTMARK, *LPTBINSERTMARK;
1536 #define TBIMHT_AFTER 0x00000001 /* TRUE = insert After iButton, otherwise before */
1537 #define TBIMHT_BACKGROUND 0x00000002 /* TRUE if and only if missed buttons completely */
1538
1539 typedef struct tagNMTBSAVE
1540 {
1541 NMHDR hdr;
1542 DWORD* pData;
1543 DWORD* pCurrent;
1544 UINT cbData;
1545 int iItem;
1546 int cButtons;
1547 TBBUTTON tbButton;
1548 } NMTBSAVE, *LPNMTBSAVE;
1549
1550 typedef struct tagNMTBRESTORE
1551 {
1552 NMHDR hdr;
1553 DWORD* pData;
1554 DWORD* pCurrent;
1555 UINT cbData;
1556 int iItem;
1557 int cButtons;
1558 int cbBytesPerRecord;
1559 TBBUTTON tbButton;
1560 } NMTBRESTORE, *LPNMTBRESTORE;
1561
1562 #define TBMF_PAD 0x00000001
1563 #define TBMF_BARPAD 0x00000002
1564 #define TBMF_BUTTONSPACING 0x00000004
1565
1566 typedef struct
1567 {
1568 UINT cbSize;
1569 DWORD dwMask;
1570 INT cxPad;
1571 INT cyPad;
1572 INT cxBarPad;
1573 INT cyBarPad;
1574 INT cxButtonSpacing;
1575 INT cyButtonSpacing;
1576 } TBMETRICS, *LPTBMETRICS;
1577
1578 /* these are undocumented and the names are guesses */
1579 typedef struct
1580 {
1581 NMHDR hdr;
1582 HWND hwndDialog;
1583 } NMTBINITCUSTOMIZE;
1584
1585 typedef struct
1586 {
1587 NMHDR hdr;
1588 INT idNew;
1589 INT iDirection; /* left is -1, right is 1 */
1590 DWORD dwReason; /* HICF_* */
1591 } NMTBWRAPHOTITEM;
1592
1593
1594 HWND WINAPI
1595 CreateToolbar(HWND, DWORD, UINT, INT, HINSTANCE,
1596 UINT, LPCTBBUTTON, INT);
1597
1598 HWND WINAPI
1599 CreateToolbarEx(HWND, DWORD, UINT, INT,
1600 HINSTANCE, UINT, LPCTBBUTTON,
1601 INT, INT, INT, INT, INT, UINT);
1602
1603 HBITMAP WINAPI
1604 CreateMappedBitmap (HINSTANCE, INT_PTR, UINT, LPCOLORMAP, INT);
1605
1606
1607 /* Tool tips */
1608
1609 #define TOOLTIPS_CLASSA "tooltips_class32"
1610 #if defined(__GNUC__)
1611 # define TOOLTIPS_CLASSW (const WCHAR []){ 't','o','o','l','t','i','p','s','_', \
1612 'c','l','a','s','s','3','2',0 }
1613 #elif defined(_MSC_VER)
1614 # define TOOLTIPS_CLASSW L"tooltips_class32"
1615 #else
1616 static const WCHAR TOOLTIPS_CLASSW[] = { 't','o','o','l','t','i','p','s','_',
1617 'c','l','a','s','s','3','2',0 };
1618 #endif
1619 #define TOOLTIPS_CLASS WINELIB_NAME_AW(TOOLTIPS_CLASS)
1620
1621 #define INFOTIPSIZE 1024
1622
1623 #define TTS_ALWAYSTIP 0x01
1624 #define TTS_NOPREFIX 0x02
1625 #define TTS_NOANIMATE 0x10
1626 #define TTS_NOFADE 0x20
1627 #define TTS_BALLOON 0x40
1628 #define TTS_CLOSE 0x80
1629 #define TTS_USEVISUALSTYLE 0x100
1630
1631 #define TTF_IDISHWND 0x0001
1632 #define TTF_CENTERTIP 0x0002
1633 #define TTF_RTLREADING 0x0004
1634 #define TTF_SUBCLASS 0x0010
1635 #define TTF_TRACK 0x0020
1636 #define TTF_ABSOLUTE 0x0080
1637 #define TTF_TRANSPARENT 0x0100
1638 #define TTF_DI_SETITEM 0x8000 /* valid only on the TTN_NEEDTEXT callback */
1639
1640
1641 #define TTDT_AUTOMATIC 0
1642 #define TTDT_RESHOW 1
1643 #define TTDT_AUTOPOP 2
1644 #define TTDT_INITIAL 3
1645
1646
1647 #define TTI_NONE 0
1648 #define TTI_INFO 1
1649 #define TTI_WARNING 2
1650 #define TTI_ERROR 3
1651
1652
1653 #define TTM_ACTIVATE (WM_USER+1)
1654 #define TTM_SETDELAYTIME (WM_USER+3)
1655 #define TTM_ADDTOOLA (WM_USER+4)
1656 #define TTM_ADDTOOLW (WM_USER+50)
1657 #define TTM_ADDTOOL WINELIB_NAME_AW(TTM_ADDTOOL)
1658 #define TTM_DELTOOLA (WM_USER+5)
1659 #define TTM_DELTOOLW (WM_USER+51)
1660 #define TTM_DELTOOL WINELIB_NAME_AW(TTM_DELTOOL)
1661 #define TTM_NEWTOOLRECTA (WM_USER+6)
1662 #define TTM_NEWTOOLRECTW (WM_USER+52)
1663 #define TTM_NEWTOOLRECT WINELIB_NAME_AW(TTM_NEWTOOLRECT)
1664 #define TTM_RELAYEVENT (WM_USER+7)
1665 #define TTM_GETTOOLINFOA (WM_USER+8)
1666 #define TTM_GETTOOLINFOW (WM_USER+53)
1667 #define TTM_GETTOOLINFO WINELIB_NAME_AW(TTM_GETTOOLINFO)
1668 #define TTM_SETTOOLINFOA (WM_USER+9)
1669 #define TTM_SETTOOLINFOW (WM_USER+54)
1670 #define TTM_SETTOOLINFO WINELIB_NAME_AW(TTM_SETTOOLINFO)
1671 #define TTM_HITTESTA (WM_USER+10)
1672 #define TTM_HITTESTW (WM_USER+55)
1673 #define TTM_HITTEST WINELIB_NAME_AW(TTM_HITTEST)
1674 #define TTM_GETTEXTA (WM_USER+11)
1675 #define TTM_GETTEXTW (WM_USER+56)
1676 #define TTM_GETTEXT WINELIB_NAME_AW(TTM_GETTEXT)
1677 #define TTM_UPDATETIPTEXTA (WM_USER+12)
1678 #define TTM_UPDATETIPTEXTW (WM_USER+57)
1679 #define TTM_UPDATETIPTEXT WINELIB_NAME_AW(TTM_UPDATETIPTEXT)
1680 #define TTM_GETTOOLCOUNT (WM_USER+13)
1681 #define TTM_ENUMTOOLSA (WM_USER+14)
1682 #define TTM_ENUMTOOLSW (WM_USER+58)
1683 #define TTM_ENUMTOOLS WINELIB_NAME_AW(TTM_ENUMTOOLS)
1684 #define TTM_GETCURRENTTOOLA (WM_USER+15)
1685 #define TTM_GETCURRENTTOOLW (WM_USER+59)
1686 #define TTM_GETCURRENTTOOL WINELIB_NAME_AW(TTM_GETCURRENTTOOL)
1687 #define TTM_WINDOWFROMPOINT (WM_USER+16)
1688 #define TTM_TRACKACTIVATE (WM_USER+17)
1689 #define TTM_TRACKPOSITION (WM_USER+18)
1690 #define TTM_SETTIPBKCOLOR (WM_USER+19)
1691 #define TTM_SETTIPTEXTCOLOR (WM_USER+20)
1692 #define TTM_GETDELAYTIME (WM_USER+21)
1693 #define TTM_GETTIPBKCOLOR (WM_USER+22)
1694 #define TTM_GETTIPTEXTCOLOR (WM_USER+23)
1695 #define TTM_SETMAXTIPWIDTH (WM_USER+24)
1696 #define TTM_GETMAXTIPWIDTH (WM_USER+25)
1697 #define TTM_SETMARGIN (WM_USER+26)
1698 #define TTM_GETMARGIN (WM_USER+27)
1699 #define TTM_POP (WM_USER+28)
1700 #define TTM_UPDATE (WM_USER+29)
1701 #define TTM_GETBUBBLESIZE (WM_USER+30)
1702 #define TTM_ADJUSTRECT (WM_USER+31)
1703 #define TTM_SETTITLEA (WM_USER+32)
1704 #define TTM_SETTITLEW (WM_USER+33)
1705 #define TTM_SETTITLE WINELIB_NAME_AW(TTM_SETTITLE)
1706 #define TTM_POPUP (WM_USER+34)
1707 #define TTM_GETTITLE (WM_USER+35)
1708 #define TTM_SETWINDOWTHEME CCM_SETWINDOWTHEME
1709
1710
1711 #define TTN_FIRST (0U-520U)
1712 #define TTN_LAST (0U-549U)
1713 #define TTN_GETDISPINFOA (TTN_FIRST-0)
1714 #define TTN_GETDISPINFOW (TTN_FIRST-10)
1715 #define TTN_GETDISPINFO WINELIB_NAME_AW(TTN_GETDISPINFO)
1716 #define TTN_SHOW (TTN_FIRST-1)
1717 #define TTN_POP (TTN_FIRST-2)
1718
1719 #define TTN_NEEDTEXT TTN_GETDISPINFO
1720 #define TTN_NEEDTEXTA TTN_GETDISPINFOA
1721 #define TTN_NEEDTEXTW TTN_GETDISPINFOW
1722
1723 typedef struct tagTOOLINFOA {
1724 UINT cbSize;
1725 UINT uFlags;
1726 HWND hwnd;
1727 UINT_PTR uId;
1728 RECT rect;
1729 HINSTANCE hinst;
1730 LPSTR lpszText;
1731 LPARAM lParam;
1732 void *lpReserved;
1733 } TTTOOLINFOA, *LPTOOLINFOA, *PTOOLINFOA, *LPTTTOOLINFOA;
1734
1735 typedef struct tagTOOLINFOW {
1736 UINT cbSize;
1737 UINT uFlags;
1738 HWND hwnd;
1739 UINT_PTR uId;
1740 RECT rect;
1741 HINSTANCE hinst;
1742 LPWSTR lpszText;
1743 LPARAM lParam;
1744 void *lpReserved;
1745 } TTTOOLINFOW, *LPTOOLINFOW, *PTOOLINFOW, *LPTTTOOLINFOW;
1746
1747 #define TTTOOLINFO WINELIB_NAME_AW(TTTOOLINFO)
1748 #define TOOLINFO WINELIB_NAME_AW(TTTOOLINFO)
1749 #define PTOOLINFO WINELIB_NAME_AW(PTOOLINFO)
1750 #define LPTTTOOLINFO WINELIB_NAME_AW(LPTTTOOLINFO)
1751 #define LPTOOLINFO WINELIB_NAME_AW(LPTOOLINFO)
1752
1753 #define TTTOOLINFOA_V1_SIZE CCSIZEOF_STRUCT(TTTOOLINFOA, lpszText)
1754 #define TTTOOLINFOW_V1_SIZE CCSIZEOF_STRUCT(TTTOOLINFOW, lpszText)
1755 #define TTTOOLINFO_V1_SIZE CCSIZEOF_STRUCT(WINELIB_NAME_AW(TTTOOLINFO), lpszText)
1756
1757 typedef struct _TT_HITTESTINFOA
1758 {
1759 HWND hwnd;
1760 POINT pt;
1761 TTTOOLINFOA ti;
1762 } TTHITTESTINFOA, *LPTTHITTESTINFOA;
1763 #define LPHITTESTINFOA LPTTHITTESTINFOA
1764
1765 typedef struct _TT_HITTESTINFOW
1766 {
1767 HWND hwnd;
1768 POINT pt;
1769 TTTOOLINFOW ti;
1770 } TTHITTESTINFOW, *LPTTHITTESTINFOW;
1771 #define LPHITTESTINFOW LPTTHITTESTINFOW
1772
1773 #define TTHITTESTINFO WINELIB_NAME_AW(TTHITTESTINFO)
1774 #define LPTTHITTESTINFO WINELIB_NAME_AW(LPTTHITTESTINFO)
1775 #define LPHITTESTINFO WINELIB_NAME_AW(LPHITTESTINFO)
1776
1777 typedef struct tagNMTTDISPINFOA
1778 {
1779 NMHDR hdr;
1780 LPSTR lpszText;
1781 CHAR szText[80];
1782 HINSTANCE hinst;
1783 UINT uFlags;
1784 LPARAM lParam;
1785 } NMTTDISPINFOA, *LPNMTTDISPINFOA;
1786
1787 typedef struct tagNMTTDISPINFOW
1788 {
1789 NMHDR hdr;
1790 LPWSTR lpszText;
1791 WCHAR szText[80];
1792 HINSTANCE hinst;
1793 UINT uFlags;
1794 LPARAM lParam;
1795 } NMTTDISPINFOW, *LPNMTTDISPINFOW;
1796
1797 #define NMTTDISPINFO WINELIB_NAME_AW(NMTTDISPINFO)
1798 #define LPNMTTDISPINFO WINELIB_NAME_AW(LPNMTTDISPINFO)
1799
1800 #define NMTTDISPINFO_V1_SIZEA CCSIZEOF_STRUCT(NMTTDISPINFOA, uFlags)
1801 #define NMTTDISPINFO_V1_SIZEW CCSIZEOF_STRUCT(NMTTDISPINFOW, uFlags)
1802 #define NMTTDISPINFO_V1_SIZE WINELIB_NAME_AW(NMTTDISPINFO_V1_SIZE)
1803
1804 typedef struct _TTGETTITLE
1805 {
1806 DWORD dwSize;
1807 UINT uTitleBitmap;
1808 UINT cch;
1809 WCHAR* pszTitle;
1810 } TTGETTITLE, *PTTGETTITLE;
1811
1812 #define TOOLTIPTEXTW NMTTDISPINFOW
1813 #define TOOLTIPTEXTA NMTTDISPINFOA
1814 #define TOOLTIPTEXT NMTTDISPINFO
1815 #define LPTOOLTIPTEXTW LPNMTTDISPINFOW
1816 #define LPTOOLTIPTEXTA LPNMTTDISPINFOA
1817 #define LPTOOLTIPTEXT LPNMTTDISPINFO
1818
1819
1820 /* Rebar control */
1821
1822 #define REBARCLASSNAMEA "ReBarWindow32"
1823 #if defined(__GNUC__)
1824 # define REBARCLASSNAMEW (const WCHAR []){ 'R','e','B','a','r', \
1825 'W','i','n','d','o','w','3','2',0 }
1826 #elif defined(_MSC_VER)
1827 # define REBARCLASSNAMEW L"ReBarWindow32"
1828 #else
1829 static const WCHAR REBARCLASSNAMEW[] = { 'R','e','B','a','r',
1830 'W','i','n','d','o','w','3','2',0 };
1831 #endif
1832 #define REBARCLASSNAME WINELIB_NAME_AW(REBARCLASSNAME)
1833
1834 #define RBS_TOOLTIPS 0x0100
1835 #define RBS_VARHEIGHT 0x0200
1836 #define RBS_BANDBORDERS 0x0400
1837 #define RBS_FIXEDORDER 0x0800
1838 #define RBS_REGISTERDROP 0x1000
1839 #define RBS_AUTOSIZE 0x2000
1840 #define RBS_VERTICALGRIPPER 0x4000
1841 #define RBS_DBLCLKTOGGLE 0x8000
1842
1843 #define RBIM_IMAGELIST 0x00000001
1844
1845 #define RBBIM_STYLE 0x00000001
1846 #define RBBIM_COLORS 0x00000002
1847 #define RBBIM_TEXT 0x00000004
1848 #define RBBIM_IMAGE 0x00000008
1849 #define RBBIM_CHILD 0x00000010
1850 #define RBBIM_CHILDSIZE 0x00000020
1851 #define RBBIM_SIZE 0x00000040
1852 #define RBBIM_BACKGROUND 0x00000080
1853 #define RBBIM_ID 0x00000100
1854 #define RBBIM_IDEALSIZE 0x00000200
1855 #define RBBIM_LPARAM 0x00000400
1856 #define RBBIM_HEADERSIZE 0x00000800
1857
1858 #define RBBS_BREAK 0x00000001
1859 #define RBBS_FIXEDSIZE 0x00000002
1860 #define RBBS_CHILDEDGE 0x00000004
1861 #define RBBS_HIDDEN 0x00000008
1862 #define RBBS_NOVERT 0x00000010
1863 #define RBBS_FIXEDBMP 0x00000020
1864 #define RBBS_VARIABLEHEIGHT 0x00000040
1865 #define RBBS_GRIPPERALWAYS 0x00000080
1866 #define RBBS_NOGRIPPER 0x00000100
1867 #define RBBS_USECHEVRON 0x00000200
1868 #define RBBS_HIDETITLE 0x00000400
1869 #define RBBS_TOPALIGN 0x00000800
1870
1871 #define RBNM_ID 0x00000001
1872 #define RBNM_STYLE 0x00000002
1873 #define RBNM_LPARAM 0x00000004
1874
1875 #define RBHT_NOWHERE 0x0001
1876 #define RBHT_CAPTION 0x0002
1877 #define RBHT_CLIENT 0x0003
1878 #define RBHT_GRABBER 0x0004
1879 #define RBHT_CHEVRON 0x0008
1880
1881 #define RB_INSERTBANDA (WM_USER+1)
1882 #define RB_INSERTBANDW (WM_USER+10)
1883 #define RB_INSERTBAND WINELIB_NAME_AW(RB_INSERTBAND)
1884 #define RB_DELETEBAND (WM_USER+2)
1885 #define RB_GETBARINFO (WM_USER+3)
1886 #define RB_SETBARINFO (WM_USER+4)
1887 #define RB_SETBANDINFOA (WM_USER+6)
1888 #define RB_SETBANDINFOW (WM_USER+11)
1889 #define RB_SETBANDINFO WINELIB_NAME_AW(RB_SETBANDINFO)
1890 #define RB_SETPARENT (WM_USER+7)
1891 #define RB_HITTEST (WM_USER+8)
1892 #define RB_GETRECT (WM_USER+9)
1893 #define RB_GETBANDCOUNT (WM_USER+12)
1894 #define RB_GETROWCOUNT (WM_USER+13)
1895 #define RB_GETROWHEIGHT (WM_USER+14)
1896 #define RB_IDTOINDEX (WM_USER+16)
1897 #define RB_GETTOOLTIPS (WM_USER+17)
1898 #define RB_SETTOOLTIPS (WM_USER+18)
1899 #define RB_SETBKCOLOR (WM_USER+19)
1900 #define RB_GETBKCOLOR (WM_USER+20)
1901 #define RB_SETTEXTCOLOR (WM_USER+21)
1902 #define RB_GETTEXTCOLOR (WM_USER+22)
1903 #define RB_SIZETORECT (WM_USER+23)
1904 #define RB_BEGINDRAG (WM_USER+24)
1905 #define RB_ENDDRAG (WM_USER+25)
1906 #define RB_DRAGMOVE (WM_USER+26)
1907 #define RB_GETBARHEIGHT (WM_USER+27)
1908 #define RB_GETBANDINFOW (WM_USER+28)
1909 #define RB_GETBANDINFOA (WM_USER+29)
1910 #define RB_GETBANDINFO WINELIB_NAME_AW(RB_GETBANDINFO)
1911 #define RB_MINIMIZEBAND (WM_USER+30)
1912 #define RB_MAXIMIZEBAND (WM_USER+31)
1913 #define RB_GETBANDBORDERS (WM_USER+34)
1914 #define RB_SHOWBAND (WM_USER+35)
1915 #define RB_SETPALETTE (WM_USER+37)
1916 #define RB_GETPALETTE (WM_USER+38)
1917 #define RB_MOVEBAND (WM_USER+39)
1918 #define RB_GETBANDMARGINS (WM_USER+40)
1919 #define RB_PUSHCHEVRON (WM_USER+43)
1920 #define RB_GETDROPTARGET CCM_GETDROPTARGET
1921 #define RB_SETCOLORSCHEME CCM_SETCOLORSCHEME
1922 #define RB_GETCOLORSCHEME CCM_GETCOLORSCHEME
1923 #define RB_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
1924 #define RB_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
1925 #define RB_SETWINDOWTHEME CCM_SETWINDOWTHEME
1926
1927 #define RBN_FIRST (0U-831U)
1928 #define RBN_LAST (0U-859U)
1929 #define RBN_HEIGHTCHANGE (RBN_FIRST-0)
1930 #define RBN_GETOBJECT (RBN_FIRST-1)
1931 #define RBN_LAYOUTCHANGED (RBN_FIRST-2)
1932 #define RBN_AUTOSIZE (RBN_FIRST-3)
1933 #define RBN_BEGINDRAG (RBN_FIRST-4)
1934 #define RBN_ENDDRAG (RBN_FIRST-5)
1935 #define RBN_DELETINGBAND (RBN_FIRST-6)
1936 #define RBN_DELETEDBAND (RBN_FIRST-7)
1937 #define RBN_CHILDSIZE (RBN_FIRST-8)
1938 #define RBN_CHEVRONPUSHED (RBN_FIRST-10)
1939 #define RBN_MINMAX (RBN_FIRST-21)
1940 #define RBN_AUTOBREAK (RBN_FIRST-22)
1941
1942 typedef struct tagREBARINFO
1943 {
1944 UINT cbSize;
1945 UINT fMask;
1946 HIMAGELIST himl;
1947 } REBARINFO, *LPREBARINFO;
1948
1949 typedef struct tagREBARBANDINFOA
1950 {
1951 UINT cbSize;
1952 UINT fMask;
1953 UINT fStyle;
1954 COLORREF clrFore;
1955 COLORREF clrBack;
1956 LPSTR lpText;
1957 UINT cch;
1958 INT iImage;
1959 HWND hwndChild;
1960 UINT cxMinChild;
1961 UINT cyMinChild;
1962 UINT cx;
1963 HBITMAP hbmBack;
1964 UINT wID;
1965 UINT cyChild;
1966 UINT cyMaxChild;
1967 UINT cyIntegral;
1968 UINT cxIdeal;
1969 LPARAM lParam;
1970 UINT cxHeader;
1971 } REBARBANDINFOA, *LPREBARBANDINFOA;
1972
1973 typedef REBARBANDINFOA const *LPCREBARBANDINFOA;
1974
1975 typedef struct tagREBARBANDINFOW
1976 {
1977 UINT cbSize;
1978 UINT fMask;
1979 UINT fStyle;
1980 COLORREF clrFore;
1981 COLORREF clrBack;
1982 LPWSTR lpText;
1983 UINT cch;
1984 INT iImage;
1985 HWND hwndChild;
1986 UINT cxMinChild;
1987 UINT cyMinChild;
1988 UINT cx;
1989 HBITMAP hbmBack;
1990 UINT wID;
1991 UINT cyChild;
1992 UINT cyMaxChild;
1993 UINT cyIntegral;
1994 UINT cxIdeal;
1995 LPARAM lParam;
1996 UINT cxHeader;
1997 } REBARBANDINFOW, *LPREBARBANDINFOW;
1998
1999 typedef REBARBANDINFOW const *LPCREBARBANDINFOW;
2000
2001 #define REBARBANDINFO WINELIB_NAME_AW(REBARBANDINFO)
2002 #define LPREBARBANDINFO WINELIB_NAME_AW(LPREBARBANDINFO)
2003 #define LPCREBARBANDINFO WINELIB_NAME_AW(LPCREBARBANDINFO)
2004
2005 #define REBARBANDINFOA_V3_SIZE CCSIZEOF_STRUCT(REBARBANDINFOA, wID)
2006 #define REBARBANDINFOW_V3_SIZE CCSIZEOF_STRUCT(REBARBANDINFOW, wID)
2007 #define REBARBANDINFO_V3_SIZE CCSIZEOF_STRUCT(WINELIB_NAME_AW(REBARBANDINFO), wID)
2008
2009 typedef struct tagNMREBARCHILDSIZE
2010 {
2011 NMHDR hdr;
2012 UINT uBand;
2013 UINT wID;
2014 RECT rcChild;
2015 RECT rcBand;
2016 } NMREBARCHILDSIZE, *LPNMREBARCHILDSIZE;
2017
2018 typedef struct tagNMREBAR
2019 {
2020 NMHDR hdr;
2021 DWORD dwMask;
2022 UINT uBand;
2023 UINT fStyle;
2024 UINT wID;
2025 LPARAM lParam;
2026 } NMREBAR, *LPNMREBAR;
2027
2028 typedef struct tagNMRBAUTOSIZE
2029 {
2030 NMHDR hdr;
2031 BOOL fChanged;
2032 RECT rcTarget;
2033 RECT rcActual;
2034 } NMRBAUTOSIZE, *LPNMRBAUTOSIZE;
2035
2036 typedef struct tagNMREBARCHEVRON
2037 {
2038 NMHDR hdr;
2039 UINT uBand;
2040 UINT wID;
2041 LPARAM lParam;
2042 RECT rc;
2043 LPARAM lParamNM;
2044 } NMREBARCHEVRON, *LPNMREBARCHEVRON;
2045
2046 typedef struct _RB_HITTESTINFO
2047 {
2048 POINT pt;
2049 UINT flags;
2050 INT iBand;
2051 } RBHITTESTINFO, *LPRBHITTESTINFO;
2052
2053 #define RBAB_AUTOSIZE 0x0001
2054 #define RBAB_ADDBAND 0x0002
2055
2056 typedef struct tagNMREBARAUTOBREAK
2057 {
2058 NMHDR hdr;
2059 UINT uBand;
2060 UINT wID;
2061 LPARAM lParam;
2062 UINT uMsg;
2063 UINT fStyleCurrent;
2064 BOOL fAutoBreak;
2065 } NMREBARAUTOBREAK, *LPNMREBARAUTOBREAK;
2066
2067
2068 /* Trackbar control */
2069
2070 #define TRACKBAR_CLASSA "msctls_trackbar32"
2071 #if defined(__GNUC__)
2072 # define TRACKBAR_CLASSW (const WCHAR []){ 'm','s','c','t','l','s','_', \
2073 't','r','a','c','k','b','a','r','3','2',0 }
2074 #elif defined(_MSC_VER)
2075 # define TRACKBAR_CLASSW L"msctls_trackbar32"
2076 #else
2077 static const WCHAR TRACKBAR_CLASSW[] = { 'm','s','c','t','l','s','_',
2078 't','r','a','c','k','b','a','r','3','2',0 };
2079 #endif
2080 #define TRACKBAR_CLASS WINELIB_NAME_AW(TRACKBAR_CLASS)
2081
2082 #define TBS_AUTOTICKS 0x0001
2083 #define TBS_VERT 0x0002
2084 #define TBS_HORZ 0x0000
2085 #define TBS_TOP 0x0004
2086 #define TBS_BOTTOM 0x0000
2087 #define TBS_LEFT 0x0004
2088 #define TBS_RIGHT 0x0000
2089 #define TBS_BOTH 0x0008
2090 #define TBS_NOTICKS 0x0010
2091 #define TBS_ENABLESELRANGE 0x0020
2092 #define TBS_FIXEDLENGTH 0x0040
2093 #define TBS_NOTHUMB 0x0080
2094 #define TBS_TOOLTIPS 0x0100
2095 #define TBS_REVERSED 0x0200
2096 #define TBS_DOWNISLEFT 0x0400
2097
2098 #define TBTS_TOP 0
2099 #define TBTS_LEFT 1
2100 #define TBTS_BOTTOM 2
2101 #define TBTS_RIGHT 3
2102
2103 #define TB_LINEUP 0
2104 #define TB_LINEDOWN 1
2105 #define TB_PAGEUP 2
2106 #define TB_PAGEDOWN 3
2107 #define TB_THUMBPOSITION 4
2108 #define TB_THUMBTRACK 5
2109 #define TB_TOP 6
2110 #define TB_BOTTOM 7
2111 #define TB_ENDTRACK 8
2112
2113 #define TBCD_TICS 0x0001
2114 #define TBCD_THUMB 0x0002
2115 #define TBCD_CHANNEL 0x0003
2116
2117 #define TBM_GETPOS (WM_USER)
2118 #define TBM_GETRANGEMIN (WM_USER+1)
2119 #define TBM_GETRANGEMAX (WM_USER+2)
2120 #define TBM_GETTIC (WM_USER+3)
2121 #define TBM_SETTIC (WM_USER+4)
2122 #define TBM_SETPOS (WM_USER+5)
2123 #define TBM_SETRANGE (WM_USER+6)
2124 #define TBM_SETRANGEMIN (WM_USER+7)
2125 #define TBM_SETRANGEMAX (WM_USER+8)
2126 #define TBM_CLEARTICS (WM_USER+9)
2127 #define TBM_SETSEL (WM_USER+10)
2128 #define TBM_SETSELSTART (WM_USER+11)
2129 #define TBM_SETSELEND (WM_USER+12)
2130 #define TBM_GETPTICS (WM_USER+14)
2131 #define TBM_GETTICPOS (WM_USER+15)
2132 #define TBM_GETNUMTICS (WM_USER+16)
2133 #define TBM_GETSELSTART (WM_USER+17)
2134 #define TBM_GETSELEND (WM_USER+18)
2135 #define TBM_CLEARSEL (WM_USER+19)
2136 #define TBM_SETTICFREQ (WM_USER+20)
2137 #define TBM_SETPAGESIZE (WM_USER+21)
2138 #define TBM_GETPAGESIZE (WM_USER+22)
2139 #define TBM_SETLINESIZE (WM_USER+23)
2140 #define TBM_GETLINESIZE (WM_USER+24)
2141 #define TBM_GETTHUMBRECT (WM_USER+25)
2142 #define TBM_GETCHANNELRECT (WM_USER+26)
2143 #define TBM_SETTHUMBLENGTH (WM_USER+27)
2144 #define TBM_GETTHUMBLENGTH (WM_USER+28)
2145 #define TBM_SETTOOLTIPS (WM_USER+29)
2146 #define TBM_GETTOOLTIPS (WM_USER+30)
2147 #define TBM_SETTIPSIDE (WM_USER+31)
2148 #define TBM_SETBUDDY (WM_USER+32)
2149 #define TBM_GETBUDDY (WM_USER+33)
2150 #define TBM_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
2151 #define TBM_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
2152
2153
2154 /* Pager control */
2155
2156 #define WC_PAGESCROLLERA "SysPager"
2157 #if defined(__GNUC__)
2158 # define WC_PAGESCROLLERW (const WCHAR []){ 'S','y','s','P','a','g','e','r',0 }
2159 #elif defined(_MSC_VER)
2160 # define WC_PAGESCROLLERW L"SysPager"
2161 #else
2162 static const WCHAR WC_PAGESCROLLERW[] = { 'S','y','s','P','a','g','e','r',0 };
2163 #endif
2164 #define WC_PAGESCROLLER WINELIB_NAME_AW(WC_PAGESCROLLER)
2165
2166 #define PGS_VERT 0x00000000
2167 #define PGS_HORZ 0x00000001
2168 #define PGS_AUTOSCROLL 0x00000002
2169 #define PGS_DRAGNDROP 0x00000004
2170
2171 #define PGF_INVISIBLE 0
2172 #define PGF_NORMAL 1
2173 #define PGF_GRAYED 2
2174 #define PGF_DEPRESSED 4
2175 #define PGF_HOT 8
2176
2177 #define PGB_TOPORLEFT 0
2178 #define PGB_BOTTOMORRIGHT 1
2179
2180 /* only used with PGN_SCROLL */
2181 #define PGF_SCROLLUP 1
2182 #define PGF_SCROLLDOWN 2
2183 #define PGF_SCROLLLEFT 4
2184 #define PGF_SCROLLRIGHT 8
2185
2186 #define PGK_SHIFT 1
2187 #define PGK_CONTROL 2
2188 #define PGK_MENU 4
2189
2190 /* only used with PGN_CALCSIZE */
2191 #define PGF_CALCWIDTH 1
2192 #define PGF_CALCHEIGHT 2
2193
2194 #define PGM_FIRST 0x1400
2195 #define PGM_SETCHILD (PGM_FIRST+1)
2196 #define PGM_RECALCSIZE (PGM_FIRST+2)
2197 #define PGM_FORWARDMOUSE (PGM_FIRST+3)
2198 #define PGM_SETBKCOLOR (PGM_FIRST+4)
2199 #define PGM_GETBKCOLOR (PGM_FIRST+5)
2200 #define PGM_SETBORDER (PGM_FIRST+6)
2201 #define PGM_GETBORDER (PGM_FIRST+7)
2202 #define PGM_SETPOS (PGM_FIRST+8)
2203 #define PGM_GETPOS (PGM_FIRST+9)
2204 #define PGM_SETBUTTONSIZE (PGM_FIRST+10)
2205 #define PGM_GETBUTTONSIZE (PGM_FIRST+11)
2206 #define PGM_GETBUTTONSTATE (PGM_FIRST+12)
2207 #define PGM_GETDROPTARGET CCM_GETDROPTARGET
2208
2209 #define PGN_FIRST (0U-900U)
2210 #define PGN_LAST (0U-950U)
2211 #define PGN_SCROLL (PGN_FIRST-1)
2212 #define PGN_CALCSIZE (PGN_FIRST-2)
2213
2214 #include <pshpack1.h>
2215
2216 typedef struct
2217 {
2218 NMHDR hdr;
2219 WORD fwKeys;
2220 RECT rcParent;
2221 INT iDir;
2222 INT iXpos;
2223 INT iYpos;
2224 INT iScroll;
2225 } NMPGSCROLL, *LPNMPGSCROLL;
2226
2227 #include <poppack.h>
2228
2229 typedef struct
2230 {
2231 NMHDR hdr;
2232 DWORD dwFlag;
2233 INT iWidth;
2234 INT iHeight;
2235 } NMPGCALCSIZE, *LPNMPGCALCSIZE;
2236
2237
2238 /* Treeview control */
2239
2240 #define WC_TREEVIEWA "SysTreeView32"
2241 #if defined(__GNUC__)
2242 # define WC_TREEVIEWW (const WCHAR []){ 'S','y','s', \
2243 'T','r','e','e','V','i','e','w','3','2',0 }
2244 #elif defined(_MSC_VER)
2245 # define WC_TREEVIEWW L"SysTreeView32"
2246 #else
2247 static const WCHAR WC_TREEVIEWW[] = { 'S','y','s',
2248 'T','r','e','e','V','i','e','w','3','2',0 };
2249 #endif
2250 #define WC_TREEVIEW WINELIB_NAME_AW(WC_TREEVIEW)
2251
2252 #define TVSIL_NORMAL 0
2253 #define TVSIL_STATE 2
2254
2255 #define TV_FIRST 0x1100
2256 #define TVM_INSERTITEMA (TV_FIRST+0)
2257 #define TVM_INSERTITEMW (TV_FIRST+50)
2258 #define TVM_INSERTITEM WINELIB_NAME_AW(TVM_INSERTITEM)
2259 #define TVM_DELETEITEM (TV_FIRST+1)
2260 #define TVM_EXPAND (TV_FIRST+2)
2261 #define TVM_GETITEMRECT (TV_FIRST+4)
2262 #define TVM_GETCOUNT (TV_FIRST+5)
2263 #define TVM_GETINDENT (TV_FIRST+6)
2264 #define TVM_SETINDENT (TV_FIRST+7)
2265 #define TVM_GETIMAGELIST (TV_FIRST+8)
2266 #define TVM_SETIMAGELIST (TV_FIRST+9)
2267 #define TVM_GETNEXTITEM (TV_FIRST+10)
2268 #define TVM_SELECTITEM (TV_FIRST+11)
2269 #define TVM_GETITEMA (TV_FIRST+12)
2270 #define TVM_GETITEMW (TV_FIRST+62)
2271 #define TVM_GETITEM WINELIB_NAME_AW(TVM_GETITEM)
2272 #define TVM_SETITEMA (TV_FIRST+13)
2273 #define TVM_SETITEMW (TV_FIRST+63)
2274 #define TVM_SETITEM WINELIB_NAME_AW(TVM_SETITEM)
2275 #define TVM_EDITLABELA (TV_FIRST+14)
2276 #define TVM_EDITLABELW (TV_FIRST+65)
2277 #define TVM_EDITLABEL WINELIB_NAME_AW(TVM_EDITLABEL)
2278 #define TVM_GETEDITCONTROL (TV_FIRST+15)
2279 #define TVM_GETVISIBLECOUNT (TV_FIRST+16)
2280 #define TVM_HITTEST (TV_FIRST+17)
2281 #define TVM_CREATEDRAGIMAGE (TV_FIRST+18)
2282 #define TVM_SORTCHILDREN (TV_FIRST+19)
2283 #define TVM_ENSUREVISIBLE (TV_FIRST+20)
2284 #define TVM_SORTCHILDRENCB (TV_FIRST+21)
2285 #define TVM_ENDEDITLABELNOW (TV_FIRST+22)
2286 #define TVM_GETISEARCHSTRINGA (TV_FIRST+23)
2287 #define TVM_GETISEARCHSTRINGW (TV_FIRST+64)
2288 #define TVM_GETISEARCHSTRING WINELIB_NAME_AW(TVM_GETISEARCHSTRING)
2289 #define TVM_SETTOOLTIPS (TV_FIRST+24)
2290 #define TVM_GETTOOLTIPS (TV_FIRST+25)
2291 #define TVM_SETINSERTMARK (TV_FIRST+26)
2292 #define TVM_SETITEMHEIGHT (TV_FIRST+27)
2293 #define TVM_GETITEMHEIGHT (TV_FIRST+28)
2294 #define TVM_SETBKCOLOR (TV_FIRST+29)
2295 #define TVM_SETTEXTCOLOR (TV_FIRST+30)
2296 #define TVM_GETBKCOLOR (TV_FIRST+31)
2297 #define TVM_GETTEXTCOLOR (TV_FIRST+32)
2298 #define TVM_SETSCROLLTIME (TV_FIRST+33)
2299 #define TVM_GETSCROLLTIME (TV_FIRST+34)
2300 #define TVM_UNKNOWN35 (TV_FIRST+35)
2301 #define TVM_UNKNOWN36 (TV_FIRST+36)
2302 #define TVM_SETINSERTMARKCOLOR (TV_FIRST+37)
2303 #define TVM_GETINSERTMARKCOLOR (TV_FIRST+38)
2304 #define TVM_GETITEMSTATE (TV_FIRST+39)
2305 #define TVM_SETLINECOLOR (TV_FIRST+40)
2306 #define TVM_GETLINECOLOR (TV_FIRST+41)
2307 #define TVM_SETUNICODEFORMAT CCM_SETUNICODEFORMAT
2308 #define TVM_GETUNICODEFORMAT CCM_GETUNICODEFORMAT
2309 #define TVM_MAPACCIDTOHTREEITEM (TV_FIRST + 42)
2310 #define TVM_MAPHTREEITEMTOACCID (TV_FIRST + 43)
2311
2312
2313 #define TVN_FIRST (0U-400U)
2314 #define TVN_LAST (0U-499U)
2315
2316 #define TVN_SELCHANGINGA (TVN_FIRST-1)
2317 #define TVN_SELCHANGINGW (TVN_FIRST-50)
2318 #define TVN_SELCHANGING WINELIB_NAME_AW(TVN_SELCHANGING)
2319
2320 #define TVN_SELCHANGEDA (TVN_FIRST-2)
2321 #define TVN_SELCHANGEDW (TVN_FIRST-51)
2322 #define TVN_SELCHANGED WINELIB_NAME_AW(TVN_SELCHANGED)
2323
2324 #define TVN_GETDISPINFOA (TVN_FIRST-3)
2325 #define TVN_GETDISPINFOW (TVN_FIRST-52)
2326 #define TVN_GETDISPINFO WINELIB_NAME_AW(TVN_GETDISPINFO)
2327
2328 #define TVN_SETDISPINFOA (TVN_FIRST-4)
2329 #define TVN_SETDISPINFOW (TVN_FIRST-53)
2330 #define TVN_SETDISPINFO WINELIB_NAME_AW(TVN_SETDISPINFO)
2331
2332 #define TVN_ITEMEXPANDINGA (TVN_FIRST-5)
2333 #define TVN_ITEMEXPANDINGW (TVN_FIRST-54)
2334 #define TVN_ITEMEXPANDING WINELIB_NAME_AW(TVN_ITEMEXPANDING)
2335
2336 #define TVN_ITEMEXPANDEDA (TVN_FIRST-6)
2337 #define TVN_ITEMEXPANDEDW (TVN_FIRST-55)
2338 #define TVN_ITEMEXPANDED WINELIB_NAME_AW(TVN_ITEMEXPANDED)
2339
2340 #define TVN_BEGINDRAGA (TVN_FIRST-7)
2341 #define TVN_BEGINDRAGW (TVN_FIRST-56)
2342 #define TVN_BEGINDRAG WINELIB_NAME_AW(TVN_BEGINDRAG)
2343
2344 #define TVN_BEGINRDRAGA (TVN_FIRST-8)
2345 #define TVN_BEGINRDRAGW (TVN_FIRST-57)
2346 #define TVN_BEGINRDRAG WINELIB_NAME_AW(TVN_BEGINRDRAG)
2347
2348 #define TVN_DELETEITEMA (TVN_FIRST-9)
2349 #define TVN_DELETEITEMW (TVN_FIRST-58)
2350 #define TVN_DELETEITEM WINELIB_NAME_AW(TVN_DELETEITEM)
2351
2352 #define TVN_BEGINLABELEDITA (TVN_FIRST-10)
2353 #define TVN_BEGINLABELEDITW (TVN_FIRST-59)
2354 #define TVN_BEGINLABELEDIT WINELIB_NAME_AW(TVN_BEGINLABELEDIT)
2355
2356 #define TVN_ENDLABELEDITA (TVN_FIRST-11)
2357 #define TVN_ENDLABELEDITW (TVN_FIRST-60)
2358 #define TVN_ENDLABELEDIT WINELIB_NAME_AW(TVN_ENDLABELEDIT)
2359
2360 #define TVN_KEYDOWN (TVN_FIRST-12)
2361
2362 #define TVN_GETINFOTIPA (TVN_FIRST-13)
2363 #define TVN_GETINFOTIPW (TVN_FIRST-14)
2364 #define TVN_GETINFOTIP WINELIB_NAME_AW(TVN_GETINFOTIP)
2365
2366 #define TVN_SINGLEEXPAND (TVN_FIRST-15)
2367
2368
2369
2370
2371
2372 #define TVIF_TEXT 0x0001
2373 #define TVIF_IMAGE 0x0002
2374 #define TVIF_PARAM 0x0004
2375 #define TVIF_STATE 0x0008
2376 #define TVIF_HANDLE 0x0010
2377 #define TVIF_SELECTEDIMAGE 0x0020
2378 #define TVIF_CHILDREN 0x0040
2379 #define TVIF_INTEGRAL 0x0080
2380 #define TVIF_DI_SETITEM 0x1000
2381
2382 #define TVI_ROOT ((HTREEITEM)0xffff0000) /* -65536 */
2383 #define TVI_FIRST ((HTREEITEM)0xffff0001) /* -65535 */
2384 #define TVI_LAST ((HTREEITEM)0xffff0002) /* -65534 */
2385 #define TVI_SORT ((HTREEITEM)0xffff0003) /* -65533 */
2386
2387 #define TVIS_FOCUSED 0x0001
2388 #define TVIS_SELECTED 0x0002
2389 #define TVIS_CUT 0x0004
2390 #define TVIS_DROPHILITED 0x0008
2391 #define TVIS_BOLD 0x0010
2392 #define TVIS_EXPANDED 0x0020
2393 #define TVIS_EXPANDEDONCE 0x0040
2394 #define TVIS_EXPANDPARTIAL 0x0080
2395 #define TVIS_OVERLAYMASK 0x0f00
2396 #define TVIS_STATEIMAGEMASK 0xf000
2397 #define TVIS_USERMASK 0xf000
2398
2399 #define TVHT_NOWHERE 0x0001
2400 #define TVHT_ONITEMICON 0x0002
2401 #define TVHT_ONITEMLABEL 0x0004
2402 #define TVHT_ONITEMINDENT 0x0008
2403 #define TVHT_ONITEMBUTTON 0x0010
2404 #define TVHT_ONITEMRIGHT 0x0020
2405 #define TVHT_ONITEMSTATEICON 0x0040
2406 #define TVHT_ONITEM 0x0046
2407 #define TVHT_ABOVE 0x0100
2408 #define TVHT_BELOW 0x0200
2409 #define TVHT_TORIGHT 0x0400
2410 #define TVHT_TOLEFT 0x0800
2411
2412 #define TVS_HASBUTTONS 0x0001
2413 #define TVS_HASLINES 0x0002
2414 #define TVS_LINESATROOT 0x0004
2415 #define TVS_EDITLABELS 0x0008
2416 #define TVS_DISABLEDRAGDROP 0x0010
2417 #define TVS_SHOWSELALWAYS 0x0020
2418 #define TVS_RTLREADING 0x0040
2419 #define TVS_NOTOOLTIPS 0x0080
2420 #define TVS_CHECKBOXES 0x0100
2421 #define TVS_TRACKSELECT 0x0200
2422 #define TVS_SINGLEEXPAND 0x0400
2423 #define TVS_INFOTIP 0x0800
2424 #define TVS_FULLROWSELECT 0x1000
2425 #define TVS_NOSCROLL 0x2000
2426 #define TVS_NONEVENHEIGHT 0x4000
2427 #define TVS_NOHSCROLL 0x8000
2428
2429 #define TVS_SHAREDIMAGELISTS 0x0000
2430 #define TVS_PRIVATEIMAGELISTS 0x0400
2431
2432
2433 #define TVE_COLLAPSE 0x0001
2434 #define TVE_EXPAND 0x0002
2435 #define TVE_TOGGLE 0x0003
2436 #define TVE_EXPANDPARTIAL 0x4000
2437 #define TVE_COLLAPSERESET 0x8000
2438
2439 #define TVGN_ROOT 0
2440 #define TVGN_NEXT 1
2441 #define TVGN_PREVIOUS 2
2442 #define TVGN_PARENT 3
2443 #define TVGN_CHILD 4
2444 #define TVGN_FIRSTVISIBLE 5
2445 #define TVGN_NEXTVISIBLE 6
2446 #define TVGN_PREVIOUSVISIBLE 7
2447 #define TVGN_DROPHILITE 8
2448 #define TVGN_CARET 9
2449 #define TVGN_LASTVISIBLE 10
2450 #define TVSI_NOSINGLEEXPAND 0x8000
2451
2452 #define TVC_UNKNOWN 0x00
2453 #define TVC_BYMOUSE 0x01
2454 #define TVC_BYKEYBOARD 0x02
2455
2456
2457 typedef struct _TREEITEM *HTREEITEM;
2458
2459 typedef struct {
2460 UINT mask;
2461 HTREEITEM hItem;
2462 UINT state;
2463 UINT stateMask;
2464 LPSTR pszText;
2465 INT cchTextMax;
2466 INT iImage;
2467 INT iSelectedImage;
2468 INT cChildren;
2469 LPARAM lParam;
2470 } TVITEMA, *LPTVITEMA;
2471
2472 typedef struct {
2473 UINT mask;
2474 HTREEITEM hItem;
2475 UINT state;
2476 UINT stateMask;
2477 LPWSTR pszText;
2478 INT cchTextMax;
2479 INT iImage;
2480 INT iSelectedImage;
2481 INT cChildren;
2482 LPARAM lParam;
2483 } TVITEMW, *LPTVITEMW;
2484
2485 #define TV_ITEMA TVITEMA
2486 #define TV_ITEMW TVITEMW
2487 #define LPTV_ITEMA LPTVITEMA
2488 #define LPTV_ITEMW LPTVITEMW
2489
2490 #define TVITEM WINELIB_NAME_AW(TVITEM)
2491 #define LPTVITEM WINELIB_NAME_AW(LPTVITEM)
2492 #define TV_ITEM WINELIB_NAME_AW(TV_ITEM)
2493 #define LPTV_ITEM WINELIB_NAME_AW(LPTV_ITEM)
2494
2495 typedef struct {
2496 UINT mask;
2497 HTREEITEM hItem;
2498 UINT state;
2499 UINT stateMask;
2500 LPSTR pszText;
2501 INT cchTextMax;
2502 INT iImage;
2503 INT iSelectedImage;
2504 INT cChildren;
2505 LPARAM lParam;
2506 INT iIntegral;
2507 } TVITEMEXA, *LPTVITEMEXA;
2508
2509 typedef struct {
2510 UINT mask;
2511 HTREEITEM hItem;
2512 UINT state;
2513 UINT stateMask;
2514 LPWSTR pszText;
2515 INT cchTextMax;
2516 INT iImage;
2517 INT iSelectedImage;
2518 INT cChildren;
2519 LPARAM lParam;
2520 INT iIntegral;
2521 } TVITEMEXW, *LPTVITEMEXW;
2522
2523 #define TVITEMEX WINELIB_NAME_AW(TVITEMEX)
2524 #define LPTVITEMEX WINELIB_NAME_AW(LPTVITEMEX)
2525
2526 typedef struct tagTVINSERTSTRUCTA {
2527 HTREEITEM hParent;
2528 HTREEITEM hInsertAfter;
2529 union {
2530 TVITEMEXA itemex;
2531 TVITEMA item;
2532 } DUMMYUNIONNAME;
2533 } TVINSERTSTRUCTA, *LPTVINSERTSTRUCTA;
2534
2535 typedef struct tagTVINSERTSTRUCTW {
2536 HTREEITEM hParent;
2537 HTREEITEM hInsertAfter;
2538 union {
2539 TVITEMEXW itemex;
2540 TVITEMW item;
2541 } DUMMYUNIONNAME;
2542 } TVINSERTSTRUCTW, *LPTVINSERTSTRUCTW;
2543
2544 #define TVINSERTSTRUCT WINELIB_NAME_AW(TVINSERTSTRUCT)
2545 #define LPTVINSERTSTRUCT WINELIB_NAME_AW(LPTVINSERTSTRUCT)
2546
2547 #define TVINSERTSTRUCT_V1_SIZEA CCSIZEOF_STRUCT(TVINSERTSTRUCTA, item)
2548 #define TVINSERTSTRUCT_V1_SIZEW CCSIZEOF_STRUCT(TVINSERTSTRUCTW, item)
2549 #define TVINSERTSTRUCT_V1_SIZE WINELIB_NAME_AW(TVINSERTSTRUCT_V1_SIZE)
2550
2551 #define TV_INSERTSTRUCT TVINSERTSTRUCT
2552 #define TV_INSERTSTRUCTA TVINSERTSTRUCTA
2553 #define TV_INSERTSTRUCTW TVINSERTSTRUCTW
2554 #define LPTV_INSERTSTRUCT LPTVINSERTSTRUCT
2555 #define LPTV_INSERTSTRUCTA LPTVINSERTSTRUCTA
2556 #define LPTV_INSERTSTRUCTW LPTVINSERTSTRUCTW
2557
2558
2559
2560 typedef struct tagNMTREEVIEWA {
2561 NMHDR hdr;
2562 UINT action;
2563 TVITEMA itemOld;
2564 TVITEMA itemNew;
2565 POINT ptDrag;
2566 } NMTREEVIEWA, *LPNMTREEVIEWA;
2567
2568 typedef struct tagNMTREEVIEWW {
2569 NMHDR hdr;
2570 UINT action;
2571 TVITEMW itemOld;
2572 TVITEMW itemNew;
2573 POINT ptDrag;
2574 } NMTREEVIEWW, *LPNMTREEVIEWW;
2575
2576 #define NMTREEVIEW WINELIB_NAME_AW(NMTREEVIEW)
2577 #define NM_TREEVIEW WINELIB_NAME_AW(NMTREEVIEW)
2578 #define NM_TREEVIEWA NMTREEVIEWA
2579 #define NM_TREEVIEWW NMTREEVIEWW
2580 #define LPNMTREEVIEW WINELIB_NAME_AW(LPNMTREEVIEW)
2581
2582 #define LPNM_TREEVIEW LPNMTREEVIEW
2583 #define LPNM_TREEVIEWA LPNMTREEVIEWA
2584 #define LPNM_TREEVIEWW LPNMTREEVIEWW
2585
2586 typedef struct tagTVDISPINFOA {
2587 NMHDR hdr;
2588 TVITEMA item;
2589 } NMTVDISPINFOA, *LPNMTVDISPINFOA;
2590
2591 typedef struct tagTVDISPINFOW {
2592 NMHDR hdr;
2593 TVITEMW item;
2594 } NMTVDISPINFOW, *LPNMTVDISPINFOW;
2595
2596 #define NMTVDISPINFO WINELIB_NAME_AW(NMTVDISPINFO)
2597 #define LPNMTVDISPINFO WINELIB_NAME_AW(LPNMTVDISPINFO)
2598 #define TV_DISPINFOA NMTVDISPINFOA
2599 #define TV_DISPINFOW NMTVDISPINFOW
2600 #define TV_DISPINFO NMTVDISPINFO
2601
2602 typedef INT (CALLBACK *PFNTVCOMPARE)(LPARAM, LPARAM, LPARAM);
2603
2604 typedef struct tagTVSORTCB
2605 {
2606 HTREEITEM hParent;
2607 PFNTVCOMPARE lpfnCompare;
2608 LPARAM lParam;
2609 } TVSORTCB, *LPTVSORTCB;
2610
2611 #define TV_SORTCB TVSORTCB
2612 #define LPTV_SORTCB LPTVSORTCB
2613
2614 typedef struct tagTVHITTESTINFO {
2615 POINT pt;
2616 UINT flags;
2617 HTREEITEM hItem;
2618 } TVHITTESTINFO, *LPTVHITTESTINFO;
2619
2620 #define TV_HITTESTINFO TVHITTESTINFO
2621
2622
2623 /* Custom Draw Treeview */
2624
2625 #define NMTVCUSTOMDRAW_V3_SIZE CCSIZEOF_STRUCT(NMTVCUSTOMDRAW, clrTextBk)
2626
2627 #define TVCDRF_NOIMAGES 0x00010000
2628
2629 typedef struct tagNMTVCUSTOMDRAW
2630 {
2631 NMCUSTOMDRAW nmcd;
2632 COLORREF clrText;
2633 COLORREF clrTextBk;
2634 INT iLevel; /* IE>0x0400 */
2635 } NMTVCUSTOMDRAW, *LPNMTVCUSTOMDRAW;
2636
2637 /* Treeview tooltips */
2638
2639 typedef struct tagNMTVGETINFOTIPA
2640 {
2641 NMHDR hdr;
2642 LPSTR pszText;
2643 INT cchTextMax;
2644 HTREEITEM hItem;
2645 LPARAM lParam;
2646 } NMTVGETINFOTIPA, *LPNMTVGETINFOTIPA;
2647
2648 typedef struct tagNMTVGETINFOTIPW
2649 {
2650 NMHDR hdr;
2651 LPWSTR pszText;
2652 INT cchTextMax;
2653 HTREEITEM hItem;
2654 LPARAM lParam;
2655 } NMTVGETINFOTIPW, *LPNMTVGETINFOTIPW;
2656
2657 #define NMTVGETINFOTIP WINELIB_NAME_AW(NMTVGETINFOTIP)
2658 #define LPNMTVGETINFOTIP WINELIB_NAME_AW(LPNMTVGETINFOTIP)
2659
2660 #include <pshpack1.h>
2661 typedef struct tagTVKEYDOWN
2662 {
2663 NMHDR hdr;
2664 WORD wVKey;
2665 UINT flags;
2666 } NMTVKEYDOWN, *LPNMTVKEYDOWN;
2667 #include <poppack.h>
2668
2669 #define TV_KEYDOWN NMTVKEYDOWN
2670
2671 #define TreeView_InsertItemA(hwnd, phdi) \
2672 (HTREEITEM)SNDMSGA((hwnd), TVM_INSERTITEMA, 0, \
2673 (LPARAM)(LPTVINSERTSTRUCTA)(phdi))
2674 #define TreeView_InsertItemW(hwnd,phdi) \
2675 (HTREEITEM)SNDMSGW((hwnd), TVM_INSERTITEMW, 0, \
2676 (LPARAM)(LPTVINSERTSTRUCTW)(phdi))
2677 #define TreeView_InsertItem WINELIB_NAME_AW(TreeView_InsertItem)
2678
2679 #define TreeView_DeleteItem(hwnd, hItem) \
2680 (BOOL)SNDMSGA((hwnd), TVM_DELETEITEM, 0, (LPARAM)(HTREEITEM)(hItem))
2681 #define TreeView_DeleteAllItems(hwnd) \
2682 (BOOL)SNDMSGA((hwnd), TVM_DELETEITEM, 0, (LPARAM)TVI_ROOT)
2683 #define TreeView_Expand(hwnd, hitem, code) \
2684 (BOOL)SNDMSGA((hwnd), TVM_EXPAND, (WPARAM)code, \
2685 (LPARAM)(HTREEITEM)(hitem))
2686
2687 #define TreeView_GetItemRect(hwnd, hitem, prc, code) \
2688 (*(HTREEITEM *)prc = (hitem), (BOOL)SNDMSGA((hwnd), \
2689 TVM_GETITEMRECT, (WPARAM)(code), (LPARAM)(RECT *)(prc)))
2690
2691 #define TreeView_GetCount(hwnd) \
2692 (UINT)SNDMSGA((hwnd), TVM_GETCOUNT, 0, 0)
2693 #define TreeView_GetIndent(hwnd) \
2694 (UINT)SNDMSGA((hwnd), TVM_GETINDENT, 0, 0)
2695 #define TreeView_SetIndent(hwnd, indent) \
2696 (BOOL)SNDMSGA((hwnd), TVM_SETINDENT, (WPARAM)indent, 0)
2697
2698 #define TreeView_GetImageList(hwnd, iImage) \
2699 (HIMAGELIST)SNDMSGA((hwnd), TVM_GETIMAGELIST, iImage, 0)
2700
2701 #define TreeView_SetImageList(hwnd, himl, iImage) \
2702 (HIMAGELIST)SNDMSGA((hwnd), TVM_SETIMAGELIST, iImage, \
2703 (LPARAM)(HIMAGELIST)(himl))
2704
2705 #define TreeView_GetNextItem(hwnd, hitem, code) \
2706 (HTREEITEM)SNDMSGA((hwnd), TVM_GETNEXTITEM, (WPARAM)code,\
2707 (LPARAM)(HTREEITEM) (hitem))
2708
2709 #define TreeView_GetChild(hwnd, hitem) \
2710 TreeView_GetNextItem(hwnd, hitem , TVGN_CHILD)
2711 #define TreeView_GetNextSibling(hwnd, hitem) \
2712 TreeView_GetNextItem(hwnd, hitem , TVGN_NEXT)
2713 #define TreeView_GetPrevSibling(hwnd, hitem) \
2714 TreeView_GetNextItem(hwnd, hitem , TVGN_PREVIOUS)
2715 #define TreeView_GetParent(hwnd, hitem) \
2716 TreeView_GetNextItem(hwnd, hitem , TVGN_PARENT)
2717 #define TreeView_GetFirstVisible(hwnd) \
2718 TreeView_GetNextItem(hwnd, NULL, TVGN_FIRSTVISIBLE)
2719 #define TreeView_GetLastVisible(hwnd) \
2720 TreeView_GetNextItem(hwnd, NULL, TVGN_LASTVISIBLE)
2721 #define TreeView_GetNextVisible(hwnd, hitem) \
2722 TreeView_GetNextItem(hwnd, hitem , TVGN_NEXTVISIBLE)
2723 #define TreeView_GetPrevVisible(hwnd, hitem) \
2724 TreeView_GetNextItem(hwnd, hitem , TVGN_PREVIOUSVISIBLE)
2725 #define TreeView_GetSelection(hwnd) \
2726 TreeView_GetNextItem(hwnd, NULL, TVGN_CARET)
2727 #define TreeView_GetDropHilight(hwnd) \
2728 TreeView_GetNextItem(hwnd, NULL, TVGN_DROPHILITE)
2729 #define TreeView_GetRoot(hwnd) \
2730 TreeView_GetNextItem(hwnd, NULL, TVGN_ROOT)
2731 #define TreeView_GetLastVisible(hwnd) \
2732 TreeView_GetNextItem(hwnd, NULL, TVGN_LASTVISIBLE)
2733
2734
2735 #define TreeView_Select(hwnd, hitem, code) \
2736 (BOOL)SNDMSGA((hwnd), TVM_SELECTITEM, (WPARAM)(code), \
2737 (LPARAM)(HTREEITEM)(hitem))
2738
2739
2740 #define TreeView_SelectItem(hwnd, hitem) \
2741 TreeView_Select(hwnd, hitem, TVGN_CARET)
2742 #define TreeView_SelectDropTarget(hwnd, hitem) \
2743 TreeView_Select(hwnd, hitem, TVGN_DROPHILITE)
2744 #define TreeView_SelectSetFirstVisible(hwnd, hitem) \
2745 TreeView_Select(hwnd, hitem, TVGN_FIRSTVISIBLE)
2746
2747
2748 #define TreeView_GetItemA(hwnd, pitem) \
2749 (BOOL)SNDMSGA((hwnd), TVM_GETITEMA, 0, (LPARAM) (TVITEMA *)(pitem))
2750 #define TreeView_GetItemW(hwnd, pitem) \
2751 (BOOL)SNDMSGW((hwnd), TVM_GETITEMW, 0, (LPARAM) (TVITEMW *)(pitem))
2752 #define TreeView_GetItem WINELIB_NAME_AW(TreeView_GetItem)
2753
2754 #define TreeView_SetItemA(hwnd, pitem) \
2755 (BOOL)SNDMSGA((hwnd), TVM_SETITEMA, 0, (LPARAM)(const TVITEMA *)(pitem))
2756 #define TreeView_SetItemW(hwnd, pitem) \
2757 (BOOL)SNDMSGW((hwnd), TVM_SETITEMW, 0, (LPARAM)(const TVITEMW *)(pitem))
2758 #define TreeView_SetItem WINELIB_NAME_AW(TreeView_SetItem)
2759
2760 #define TreeView_EditLabel(hwnd, hitem) \
2761 (HWND)SNDMSGA((hwnd), TVM_EDITLABEL, 0, (LPARAM)(HTREEITEM)(hitem))
2762
2763 #define TreeView_GetEditControl(hwnd) \
2764 (HWND)SNDMSGA((hwnd), TVM_GETEDITCONTROL, 0, 0)
2765
2766 #define TreeView_GetVisibleCount(hwnd) \
2767 (UINT)SNDMSGA((hwnd), TVM_GETVISIBLECOUNT, 0, 0)
2768
2769 #define TreeView_HitTest(hwnd, lpht) \
2770 (HTREEITEM)SNDMSGA((hwnd), TVM_HITTEST, 0,\
2771 (LPARAM)(LPTVHITTESTINFO)(lpht))
2772
2773 #define TreeView_CreateDragImage(hwnd, hitem) \
2774 (HIMAGELIST)SNDMSGA((hwnd), TVM_CREATEDRAGIMAGE, 0,\
2775 (LPARAM)(HTREEITEM)(hitem))
2776
2777 #define TreeView_SortChildren(hwnd, hitem, recurse) \
2778 (BOOL)SNDMSGA((hwnd), TVM_SORTCHILDREN, (WPARAM)recurse,\
2779 (LPARAM)(HTREEITEM)(hitem))
2780
2781 #define TreeView_EnsureVisible(hwnd, hitem) \
2782 (BOOL)SNDMSGA((hwnd), TVM_ENSUREVISIBLE, 0, (LPARAM)(UINT)(hitem))
2783
2784 #define TreeView_SortChildrenCB(hwnd, psort, recurse) \
2785 (BOOL)SNDMSGA((hwnd), TVM_SORTCHILDRENCB, (WPARAM)recurse, \
2786 (LPARAM)(LPTV_SORTCB)(psort))
2787
2788 #define TreeView_EndEditLabelNow(hwnd, fCancel) \
2789 (BOOL)SNDMSGA((hwnd), TVM_ENDEDITLABELNOW, (WPARAM)fCancel, 0)
2790
2791 #define TreeView_GetISearchString(hwnd, lpsz) \
2792 (BOOL)SNDMSGA((hwnd), TVM_GETISEARCHSTRING, 0, \
2793 (LPARAM)(LPTSTR)lpsz)
2794
2795 #define TreeView_SetToolTips(hwnd, hwndTT) \
2796 (HWND)SNDMSGA((hwnd), TVM_SETTOOLTIPS, (WPARAM)(hwndTT), 0)
2797
2798 #define TreeView_GetToolTips(hwnd) \
2799 (HWND)SNDMSGA((hwnd), TVM_GETTOOLTIPS, 0, 0)
2800
2801 #define TreeView_SetItemHeight(hwnd, iHeight) \
2802 (INT)SNDMSGA((hwnd), TVM_SETITEMHEIGHT, (WPARAM)iHeight, 0)
2803
2804 #define TreeView_GetItemHeight(hwnd) \
2805 (INT)SNDMSGA((hwnd), TVM_GETITEMHEIGHT, 0, 0)
2806
2807 #define TreeView_SetBkColor(hwnd, clr) \
2808 (COLORREF)SNDMSGA((hwnd), TVM_SETBKCOLOR, 0, (LPARAM)clr)
2809
2810 #define TreeView_SetTextColor(hwnd, clr) \
2811 (COLORREF)SNDMSGA((hwnd), TVM_SETTEXTCOLOR, 0, (LPARAM)clr)
2812
2813 #define TreeView_GetBkColor(hwnd) \
2814 (COLORREF)SNDMSGA((hwnd), TVM_GETBKCOLOR, 0, 0)
2815
2816 #define TreeView_GetTextColor(hwnd) \
2817 (COLORREF)SNDMSGA((hwnd), TVM_GETTEXTCOLOR, 0, 0)
2818
2819 #define TreeView_SetScrollTime(hwnd, uTime) \
2820 (UINT)SNDMSGA((hwnd), TVM_SETSCROLLTIME, uTime, 0)
2821
2822 #define TreeView_GetScrollTime(hwnd) \
2823 (UINT)SNDMSGA((hwnd), TVM_GETSCROLLTIME, 0, 0)
2824
2825 #define TreeView_SetInsertMark(hwnd, hItem, fAfter) \
2826 (BOOL)SNDMSGA((hwnd), TVM_SETINSERTMARK, (WPARAM)(fAfter), \
2827 (LPARAM) (hItem))
2828
2829 #define TreeView_SetInsertMarkColor(hwnd, clr) \
2830 (COLORREF)SNDMSGA((hwnd), TVM_SETINSERTMARKCOLOR, 0, (LPARAM)clr)
2831
2832 #define TreeView_GetInsertMarkColor(hwnd) \
2833 (COLORREF)SNDMSGA((hwnd), TVM_GETINSERTMARKCOLOR, 0, 0)
2834
2835 #define TreeView_SetItemState(hwndTV, hti, data, _mask) \
2836 { TVITEM _TVi; \
2837 _TVi.mask = TVIF_STATE; \
2838 _TVi.hItem = hti; \
2839 _TVi.stateMask = _mask; \
2840 _TVi.state = data; \
2841 SNDMSG((hwndTV), TVM_SETITEM, 0, (LPARAM)&_TVi); \
2842 }
2843
2844 #define TreeView_GetItemState(hwndTV, hti, mask) \
2845 (UINT)SNDMSGA((hwndTV), TVM_GETITEMSTATE, (WPARAM)(hti), (LPARAM)(mask))
2846 #define TreeView_GetCheckState(hwndTV, hti) \
2847 ((((UINT)(SNDMSGA((hwndTV), TVM_GETITEMSTATE, (WPARAM)(hti), \
2848 TVIS_STATEIMAGEMASK))) >> 12) -1)
2849
2850 #define TreeView_SetLineColor(hwnd, clr) \
2851 (COLORREF)SNDMSGA((hwnd), TVM_SETLINECOLOR, 0, (LPARAM)(clr))
2852
2853 #define TreeView_GetLineColor(hwnd) \
2854 (COLORREF)SNDMSGA((hwnd), TVM_GETLINECOLOR, 0, 0)
2855
2856 #define TreeView_MapAccIDToHTREEITEM(hwnd, id) \
2857 (HTREEITEM)SNDMSG((hwnd), TVM_MAPACCIDTOHTREEITEM, id, 0)
2858
2859 #define TreeView_MapHTREEITEMToAccID(hwnd, htreeitem) \
2860 (UINT)SNDMSG((hwnd), TVM_MAPHTREEITEMTOACCID, (WPARAM)htreeitem, 0)
2861
2862
2863 /* Listview control */
2864
2865 #define WC_LISTVIEWA "SysListView32"
2866 #if defined(__GNUC__)
2867 # define WC_LISTVIEWW (const WCHAR []){ 'S','y','s', \
2868 'L','i','s','t','V','i','e','w','3','2',0 }
2869 #elif defined(_MSC_VER)
2870 # define WC_LISTVIEWW L"SysListView32"
2871 #else
2872 static const WCHAR WC_LISTVIEWW[] = { 'S','y','s',
2873 'L','i','s','t','V','i','e','w','3','2',0 };
2874 #endif
2875 #define WC_LISTVIEW WINELIB_NAME_AW(WC_LISTVIEW)
2876
2877 #define LVSCW_AUTOSIZE -1
2878 #define LVSCW_AUTOSIZE_USEHEADER -2
2879
2880 #define LVS_ICON 0x0000
2881 #define LVS_REPORT 0x0001
2882 #define LVS_SMALLICON 0x0002
2883 #define LVS_LIST 0x0003
2884 #define LVS_TYPEMASK 0x0003
2885 #define LVS_SINGLESEL 0x0004
2886 #define LVS_SHOWSELALWAYS 0x0008
2887 #define LVS_SORTASCENDING 0x0010
2888 #define LVS_SORTDESCENDING 0x0020
2889 #define LVS_SHAREIMAGELISTS 0x0040
2890 #define LVS_NOLABELWRAP 0x0080
2891 #define LVS_AUTOARRANGE 0x0100
2892 #define LVS_EDITLABELS 0x0200
2893 #define LVS_OWNERDATA 0x1000
2894 #define LVS_NOSCROLL 0x2000
2895 #define LVS_TYPESTYLEMASK 0xfc00
2896 #define LVS_ALIGNTOP 0x0000
2897 #define LVS_ALIGNLEFT 0x0800
2898 #define LVS_ALIGNMASK 0x0c00
2899 #define LVS_OWNERDRAWFIXED 0x0400
2900 #define LVS_NOCOLUMNHEADER 0x4000
2901 #define LVS_NOSORTHEADER 0x8000
2902
2903 #define LVS_EX_GRIDLINES 0x0001
2904 #define LVS_EX_SUBITEMIMAGES 0x0002
2905 #define LVS_EX_CHECKBOXES 0x0004
2906 #define LVS_EX_TRACKSELECT 0x0008
2907 #define LVS_EX_HEADERDRAGDROP 0x0010
2908 #define LVS_EX_FULLROWSELECT 0x0020
2909 #define LVS_EX_ONECLICKACTIVATE 0x0040
2910 #define LVS_EX_TWOCLICKACTIVATE 0x0080
2911 #define LVS_EX_FLATSB 0x0100
2912 #define LVS_EX_REGIONAL 0x0200
2913 #define LVS_EX_INFOTIP 0x0400
2914 #define LVS_EX_UNDERLINEHOT 0x0800
2915 #define LVS_EX_UNDERLINECOLD 0x1000
2916 #define LVS_EX_MULTIWORKAREAS 0x2000
2917 #define LVS_EX_LABELTIP 0x4000
2918 #define LVS_EX_BORDERSELECT 0x8000
2919 #define LVS_EX_DOUBLEBUFFER 0x00010000
2920 #define LVS_EX_HIDELABELS 0x00020000
2921 #define LVS_EX_SINGLEROW 0x00040000
2922 #define LVS_EX_SNAPTOGRID 0x00080000
2923 #define LVS_EX_SIMPLESELECT 0x00100000
2924 #define LVS_EX_JUSTIFYCOLUMNS 0x00200000
2925 #define LVS_EX_TRANSPARENTBKGND 0x00400000
2926 #define LVS_EX_TRANSPARENTSHADOWTEXT 0x00800000
2927 #define LVS_EX_AUTOAUTOARRANGE 0x01000000
2928 #define LVS_EX_HEADERINALLVIEWS 0x02000000
2929 #define LVS_EX_AUTOCHECKSELECT 0x08000000
2930 #define LVS_EX_AUTOSIZECOLUMNS 0x10000000
2931 #define LVS_EX_COLUMNSNAPPOINTS 0x40000000
2932 #define LVS_EX_COLUMNOVERFLOW 0x80000000
2933
2934 #define LVCF_FMT 0x0001
2935 #define LVCF_WIDTH 0x0002
2936 #define LVCF_TEXT 0x0004
2937 #define LVCF_SUBITEM 0x0008
2938 #define LVCF_IMAGE 0x0010
2939 #define LVCF_ORDER 0x0020
2940
2941 #define LVCFMT_LEFT 0x0000
2942 #define LVCFMT_RIGHT 0x0001
2943 #define LVCFMT_CENTER 0x0002
2944 #define LVCFMT_JUSTIFYMASK 0x0003
2945 #define LVCFMT_FIXED_WIDTH 0x0100
2946 #define LVCFMT_IMAGE 0x0800
2947 #define LVCFMT_BITMAP_ON_RIGHT 0x1000
2948 #define LVCFMT_COL_HAS_IMAGES 0x8000
2949 #define LVCFMT_NO_DPI_SCALE 0x00040000
2950 #define LVCFMT_FIXED_RATIO 0x00080000
2951 #define LVCFMT_LINE_BREAK 0x00100000
2952 #define LVCFMT_FILL 0x00200000
2953 #define LVCFMT_WRAP 0x00400000
2954 #define LVCFMT_NO_TITLE 0x00800000
2955 #define LVCFMT_SPLIT_BUTTON 0x01000000
2956 #define LVCFMT_TILE_PLACEMENTMASK (LVCFMT_LINE_BREAK | LVCFMT_FILL)
2957
2958 #define LVSIL_NORMAL 0
2959 #define LVSIL_SMALL 1
2960 #define LVSIL_STATE 2
2961
2962 /* following 2 flags only for LVS_OWNERDATA listviews */
2963 /* and only in report or list mode */
2964 #define LVSICF_NOINVALIDATEALL 0x0001
2965 #define LVSICF_NOSCROLL 0x0002
2966
2967
2968 #define LVFI_PARAM 0X0001
2969 #define LVFI_STRING 0X0002
2970 #define LVFI_PARTIAL 0X0008
2971 #define LVFI_WRAP 0X0020
2972 #define LVFI_NEARESTXY 0X0040
2973
2974 #define LVIF_TEXT 0x0001
2975 #define LVIF_IMAGE 0x0002
2976 #define LVIF_PARAM 0x0004
2977 #define LVIF_STATE 0x0008
2978 #define LVIF_INDENT 0x0010
2979 #define LVIF_GROUPID 0x0100
2980 #define LVIF_COLUMNS 0x0200
2981 #define LVIF_NORECOMPUTE 0x0800
2982 #define LVIF_DI_SETITEM 0x1000
2983 #define LVIF_COLFMT 0x00010000
2984
2985 #define LVIR_BOUNDS 0x0000
2986 #define LVIR_ICON 0x0001
2987 #define LVIR_LABEL 0x0002
2988 #define LVIR_SELECTBOUNDS 0x0003
2989
2990 #define LVIS_FOCUSED 0x0001
2991 #define LVIS_SELECTED 0x0002
2992 #define LVIS_CUT 0x0004
2993 #define LVIS_DROPHILITED 0x0008
2994 #define LVIS_ACTIVATING 0x0020
2995
2996 #define LVIS_OVERLAYMASK 0x0F00
2997 #define LVIS_STATEIMAGEMASK 0xF000
2998
2999 #define LVNI_ALL 0x0000
3000 #define LVNI_FOCUSED 0x0001
3001 #define LVNI_SELECTED 0x0002
3002 #define LVNI_CUT 0x0004
3003 #define LVNI_DROPHILITED 0x0008
3004
3005 #define LVNI_ABOVE 0x0100
3006 #define LVNI_BELOW 0x0200
3007 #define LVNI_TOLEFT 0x0400
3008 #define LVNI_TORIGHT 0x0800
3009
3010 #define LVHT_NOWHERE 0x0001
3011 #define LVHT_ONITEMICON 0x0002
3012 #define LVHT_ONITEMLABEL 0x0004
3013 #define LVHT_ONITEMSTATEICON 0x0008
3014 #define LVHT_ONITEM (LVHT_ONITEMICON|LVHT_ONITEMLABEL|LVHT_ONITEMSTATEICON)
3015
3016 #define LVHT_ABOVE 0x0008
3017 #define LVHT_BELOW 0x0010
3018 #define LVHT_TORIGHT 0x0020
3019 #define LVHT_TOLEFT 0x0040
3020
3021 #define LV_VIEW_ICON 0x0000
3022 #define LV_VIEW_DETAILS 0x0001
3023 #define LV_VIEW_SMALLICON 0x0002
3024 #define LV_VIEW_LIST 0x0003
3025 #define LV_VIEW_TILE 0x0004
3026 #define LV_VIEW_MAX 0x0004
3027
3028 #define LVGF_NONE 0x00000000
3029 #define LVGF_HEADER 0x00000001
3030 #define LVGF_FOOTER 0x00000002
3031 #define LVGF_STATE 0x00000004
3032 #define LVGF_ALIGN 0x00000008
3033 #define LVGF_GROUPID 0x00000010
3034 #define LVGF_SUBTITLE 0x00000100
3035 #define LVGF_TASK 0x00000200
3036 #define LVGF_DESCRIPTIONTOP 0x00000400
3037 #define LVGF_DESCRIPTIONBOTTOM 0x00000800
3038 #define LVGF_TITLEIMAGE 0x00001000
3039 #define LVGF_EXTENDEDIMAGE 0x00002000
3040 #define LVGF_ITEMS 0x00004000
3041 #define LVGF_SUBSET 0x00008000
3042 #define LVGF_SUBSETITEMS 0x00010000
3043
3044 #define LVGS_NORMAL 0x00000000
3045 #define LVGS_COLLAPSED 0x00000001
3046 #define LVGS_HIDDEN 0x00000002
3047
3048 #define LVGA_HEADER_LEFT 0x00000001
3049 #define LVGA_HEADER_CENTER 0x00000002
3050 #define LVGA_HEADER_RIGHT 0x00000004
3051 #define LVGA_FOOTER_LEFT 0x00000008
3052 #define LVGA_FOOTER_CENTER 0x00000010
3053 #define LVGA_FOOTER_RIGHT 0x00000020
3054
3055 #define LVGMF_NONE 0x00000000
3056 #define LVGMF_BORDERSIZE 0x00000001
3057 #define LVGMF_BORDERCOLOR 0x00000002
3058 #define LVGMF_TEXTCOLOR 0x00000004
3059
3060 #define LVTVIF_AUTOSIZE 0x00000000
3061 #define LVTVIF_FIXEDWIDTH 0x00000001
3062 #define LVTVIF_FIXEDHEIGHT 0x00000002
3063 #define LVTVIF_FIXEDSIZE 0x00000003
3064 #define LVTVIF_EXTENDED 0x00000004
3065
3066 #define LVTVIM_TILESIZE 0x00000001
3067 #define LVTVIM_COLUMNS 0x00000002
3068 #define LVTVIM_LABELMARGIN 0x00000004
3069
3070 #define LVIM_AFTER 0x00000001
3071
3072 #define LVM_FIRST 0x1000
3073 #define LVM_GETBKCOLOR (LVM_FIRST+0)
3074 #define LVM_SETBKCOLOR (LVM_FIRST+1)
3075 #define LVM_GETIMAGELIST (LVM_FIRST+2)
3076 #define LVM_SETIMAGELIST (LVM_FIRST+3)
3077 #define LVM_GETITEMCOUNT (LVM_FIRST+4)
3078 #define LVM_GETITEMA (LVM_FIRST+5)
3079 #define LVM_GETITEMW (LVM_FIRST+75)
3080 #define LVM_GETITEM WINELIB_NAME_AW(LVM_GETITEM)
3081 #define LVM_SETITEMA (LVM_FIRST+6)
3082 #define LVM_SETITEMW (LVM_FIRST+76)
3083 #define LVM_SETITEM WINELIB_NAME_AW(LVM_SETITEM)
3084 #define LVM_INSERTITEMA (LVM_FIRST+7)
3085 #define LVM_INSERTITEMW (LVM_FIRST+77)
3086 #define LVM_INSERTITEM WINELIB_NAME_AW(LVM_INSERTITEM)
3087 #define LVM_DELETEITEM (LVM_FIRST+8)
3088 #define LVM_DELETEALLITEMS (LVM_FIRST+9)
3089 #define LVM_GETCALLBACKMASK (LVM_FIRST+10)
3090 #define LVM_SETCALLBACKMASK (LVM_FIRST+11)
3091 #define LVM_GETNEXTITEM (LVM_FIRST+12)
3092 #define LVM_FINDITEMA (LVM_FIRST+13)
3093 #define LVM_FINDITEMW (LVM_FIRST+83)
3094 #define LVM_FINDITEM WINELIB_NAME_AW(LVM_FINDITEM)
3095 #define LVM_GETITEMRECT (LVM_FIRST+14)
3096 #define LVM_SETITEMPOSITION (LVM_FIRST+15)
3097 #define LVM_GETITEMPOSITION (LVM_FIRST+16)
3098 #define LVM_GETSTRINGWIDTHA (LVM_FIRST+17)
3099 #define LVM_GETSTRINGWIDTHW (LVM_FIRST+87)
3100 #define LVM_GETSTRINGWIDTH WINELIB_NAME_AW(LVM_GETSTRINGWIDTH)
3101 #define LVM_HITTEST (LVM_FIRST+18)
3102 #define LVM_ENSUREVISIBLE (LVM_FIRST+19)
3103 #define LVM_SCROLL (LVM_FIRST+20)
3104 #define LVM_REDRAWITEMS (LVM_FIRST+21)
3105 #define LVM_ARRANGE (LVM_FIRST+22)
3106 #define LVM_EDITLABELA (LVM_FIRST+23)
3107 #define LVM_EDITLABELW (LVM_FIRST+118)
3108 #define LVM_EDITLABEL WINELIB_NAME_AW(LVM_EDITLABEL)
3109 #define LVM_GETEDITCONTROL (LVM_FIRST+24)
3110 #define LVM_GETCOLUMNA (LVM_FIRST+25)
3111 #define LVM_GETCOLUMNW (LVM_FIRST+95)
3112 #define LVM_GETCOLUMN WINELIB_NAME_AW(LVM_GETCOLUMN)
3113 #define LVM_SETCOLUMNA (LVM_FIRST+26)
3114 #define LVM_SETCOLUMNW (LVM_FIRST+96)
3115 #define LVM_SETCOLUMN WINELIB_NAME_AW(LVM_SETCOLUMN)
3116 #define LVM_INSERTCOLUMNA (LVM_FIRST+27)
3117 #define LVM_INSERTCOLUMNW (LVM_FIRST+97)
3118 #define LVM_INSERTCOLUMN WINELIB_NAME_AW(LVM_INSERTCOLUMN)
3119 #define LVM_DELETECOLUMN (LVM_FIRST+28)
3120 #define LVM_GETCOLUMNWIDTH (LVM_FIRST+29)
3121 #define LVM_SETCOLUMNWIDTH (LVM_FIRST+30)
3122 #define LVM_GETHEADER (LVM_FIRST+31)
3123
3124 #define LVM_CREATEDRAGIMAGE (LVM_FIRST+33)
3125 #define LVM_GETVIEWRECT (LVM_FIRST+34)
3126 #define LVM_GETTEXTCOLOR (LVM_FIRST+35)
3127 #define LVM_SETTEXTCOLOR (LVM_FIRST+36)
3128 #define LVM_GETTEXTBKCOLOR (LVM_FIRST+37)
3129 #define LVM_SETTEXTBKCOLOR (LVM_FIRST+38)
3130 #define LVM_GETTOPINDEX (LVM_FIRST+39)
3131 #define LVM_GETCOUNTPERPAGE (LVM_FIRST+40)
3132 #define LVM_GETORIGIN (LVM_FIRST+41)
3133 #define LVM_UPDATE (LVM_FIRST+42)
3134 #define LVM_SETITEMSTATE (LVM_FIRST+43)
3135 #define LVM_GETITEMSTATE (LVM_FIRST+44)
3136 #define LVM_GETITEMTEXTA (LVM_FIRST+45)
3137 #define LVM_GETITEMTEXTW (LVM_FIRST+115)
3138 #define LVM_GETITEMTEXT WINELIB_NAME_AW(LVM_GETITEMTEXT)
3139 #define LVM_SETITEMTEXTA (LVM_FIRST+46)
3140 #define LVM_SETITEMTEXTW (LVM_FIRST+116)
3141 #define LVM_SETITEMTEXT WINELIB_NAME_AW(LVM_SETITEMTEXT)
3142 #define LVM_SETITEMCOUNT (LVM_FIRST+47)
3143 #define LVM_SORTITEMS (LVM_FIRST+48)
3144 #define LVM_SETITEMPOSITION32 (LVM_FIRST+49)
3145 #define LVM_GETSELECTEDCOUNT (LVM_FIRST+50)
3146 #define LVM_GETITEMSPACING (LVM_FIRST+51)
3147 #define LVM_GETISEARCHSTRINGA (LVM_FIRST+52)
3148 #define LVM_GETISEARCHSTRINGW (LVM_FIRST+117)
3149 #define LVM_GETISEARCHSTRING WINELIB_NAME_AW(LVM_GETISEARCHSTRING)
3150 #define LVM_SETICONSPACING (LVM_FIRST+53)
3151 #define LVM_SETEXTENDEDLISTVIEWSTYLE (LVM_FIRST+54)
3152 #define LVM_GETEXTENDEDLISTVIEWSTYLE (LVM_FIRST+55)
3153 #define LVM_GETSUBITEMRECT (LVM_FIRST+56)
3154 #define LVM_SUBITEMHITTEST (LVM_FIRST+57)
3155 #define LVM_SETCOLUMNORDERARRAY (LVM_FIRST+58)
3156 #define LVM_GETCOLUMNORDERARRAY (LVM_FIRST+59)
3157 #define LVM_SETHOTITEM (LVM_FIRST+60)
3158 #define LVM_GETHOTITEM (LVM_FIRST+61)
3159 #define LVM_SETHOTCURSOR (LVM_FIRST+62)
3160 #define LVM_GETHOTCURSOR (LVM_FIRST+63)
3161 #define LVM_APPROXIMATEVIEWRECT (LVM_FIRST+64)
3162 #define LVM_SETWORKAREAS (LVM_FIRST+65)
3163 #define LVM_GETSELECTIONMARK (LVM_FIRST+66)
3164 #define LVM_SETSELECTIONMARK (LVM_FIRST+67)
3165 #define LVM_SETBKIMAGEA (LVM_FIRST+68)
3166 #define LVM_SETBKIMAGEW (LVM_FIRST+138)
3167 #define LVM_SETBKIMAGE WINELIB_NAME_AW(LVM_SETBKIMAGE)
3168 #define LVM_GETBKIMAGEA (LVM_FIRST+69)
3169 #define LVM_GETBKIMAGEW (LVM_FIRST+139)
3170 #define LVM_GETBKIMAGE WINELIB_NAME_AW(LVM_GETBKIMAGE)
3171 #define LVM_GETWORKAREAS (LVM_FIRST+70)
3172 #define LVM_SETHOVERTIME (LVM_FIRST+71)
3173 #define LVM_GETHOVERTIME (LVM_FIRST+72)
3174 #define LVM_GETNUMBEROFWORKAREAS (LVM_FIRST+73)
3175 #define LVM_SETTOOLTIPS (LVM_FIRST+74)
3176 #define LVM_GETTOOLTIPS (LVM_FIRST+78)
3177 #define LVM_GETUNICODEFORMAT (CCM_GETUNICODEFORMAT)
3178 #define LVM_SETUNICODEFORMAT (CCM_SETUNICODEFORMAT)
3179 #define LVM_SETSELECTEDCOLUMN (LVM_FIRST + 140)
3180 #define LVM_SETTILEWIDTH (LVM_FIRST + 141)
3181 #define LVM_SETVIEW (LVM_FIRST + 142)
3182 #define