comctl32: Introduce ListBox control.
[wine.git] / dlls / comctl32 / comctl32.h
blob18eaf7e5d17ba245cfe8a882803052c07d8cca55
1 /******************************************************************************
3 * Common definitions (resource ids and global variables)
5 * Copyright 1999 Thuy Nguyen
6 * Copyright 1999 Eric Kohl
7 * Copyright 2002 Dimitrie O. Paun
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #ifndef __WINE_COMCTL32_H
25 #define __WINE_COMCTL32_H
27 #ifndef RC_INVOKED
28 #include <stdarg.h>
29 #endif
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "winnls.h"
36 #include "commctrl.h"
38 extern HMODULE COMCTL32_hModule DECLSPEC_HIDDEN;
39 extern HBRUSH COMCTL32_hPattern55AABrush DECLSPEC_HIDDEN;
41 /* Property sheet / Wizard */
42 #define IDD_PROPSHEET 1006
43 #define IDD_WIZARD 1020
45 #define IDC_TABCONTROL 12320
46 #define IDC_APPLY_BUTTON 12321
47 #define IDC_BACK_BUTTON 12323
48 #define IDC_NEXT_BUTTON 12324
49 #define IDC_FINISH_BUTTON 12325
50 #define IDC_SUNKEN_LINE 12326
51 #define IDC_SUNKEN_LINEHEADER 12327
53 #define IDS_CLOSE 4160
55 /* Toolbar customization dialog */
56 #define IDD_TBCUSTOMIZE 200
58 #define IDC_AVAILBTN_LBOX 201
59 #define IDC_RESET_BTN 202
60 #define IDC_TOOLBARBTN_LBOX 203
61 #define IDC_REMOVE_BTN 204
62 #define IDC_HELP_BTN 205
63 #define IDC_MOVEUP_BTN 206
64 #define IDC_MOVEDN_BTN 207
66 #define IDS_SEPARATOR 1024
68 /* Toolbar imagelist bitmaps */
69 #define IDB_STD_SMALL 120
70 #define IDB_STD_LARGE 121
71 #define IDB_VIEW_SMALL 124
72 #define IDB_VIEW_LARGE 125
73 #define IDB_HIST_SMALL 130
74 #define IDB_HIST_LARGE 131
76 #define IDM_TODAY 4163
77 #define IDM_GOTODAY 4164
79 /* Treeview Checkboxes */
81 #define IDT_CHECK 401
84 /* Cursors */
85 #define IDC_MOVEBUTTON 102
86 #define IDC_COPY 104
87 #define IDC_DIVIDER 106
88 #define IDC_DIVIDEROPEN 107
91 /* DragList resources */
92 #define IDI_DRAGARROW 501
94 /* HOTKEY internal strings */
95 #define HKY_NONE 2048
97 /* Tooltip icons */
98 #define IDI_TT_INFO_SM 22
99 #define IDI_TT_WARN_SM 25
100 #define IDI_TT_ERROR_SM 28
102 /* Taskdialog strings */
103 #define IDS_BUTTON_YES 3000
104 #define IDS_BUTTON_NO 3001
105 #define IDS_BUTTON_RETRY 3002
106 #define IDS_BUTTON_OK 3003
107 #define IDS_BUTTON_CANCEL 3004
108 #define IDS_BUTTON_CLOSE 3005
110 #define WM_SYSTIMER 0x0118
112 enum combobox_state_flags
114 CBF_DROPPED = 0x0001,
115 CBF_BUTTONDOWN = 0x0002,
116 CBF_NOROLLUP = 0x0004,
117 CBF_MEASUREITEM = 0x0008,
118 CBF_FOCUSED = 0x0010,
119 CBF_CAPTURE = 0x0020,
120 CBF_EDIT = 0x0040,
121 CBF_NORESIZE = 0x0080,
122 CBF_NOTIFY = 0x0100,
123 CBF_NOREDRAW = 0x0200,
124 CBF_SELCHANGE = 0x0400,
125 CBF_HOT = 0x0800,
126 CBF_NOEDITNOTIFY = 0x1000,
127 CBF_NOLBSELECT = 0x2000, /* do not change current selection */
128 CBF_BEENFOCUSED = 0x4000, /* has it ever had focus */
129 CBF_EUI = 0x8000,
132 typedef struct
134 HWND self;
135 HWND owner;
136 UINT dwStyle;
137 HWND hWndEdit;
138 HWND hWndLBox;
139 UINT wState;
140 HFONT hFont;
141 RECT textRect;
142 RECT buttonRect;
143 RECT droppedRect;
144 INT droppedIndex;
145 INT fixedOwnerDrawHeight;
146 INT droppedWidth; /* last two are not used unless set */
147 INT editHeight; /* explicitly */
148 } HEADCOMBO, *LPHEADCOMBO;
150 extern BOOL COMBO_FlipListbox(HEADCOMBO *lphc, BOOL ok, BOOL bRedrawButton) DECLSPEC_HIDDEN;
152 typedef struct
154 COLORREF clrBtnHighlight; /* COLOR_BTNHIGHLIGHT */
155 COLORREF clrBtnShadow; /* COLOR_BTNSHADOW */
156 COLORREF clrBtnText; /* COLOR_BTNTEXT */
157 COLORREF clrBtnFace; /* COLOR_BTNFACE */
158 COLORREF clrHighlight; /* COLOR_HIGHLIGHT */
159 COLORREF clrHighlightText; /* COLOR_HIGHLIGHTTEXT */
160 COLORREF clrHotTrackingColor; /* COLOR_HOTLIGHT */
161 COLORREF clr3dHilight; /* COLOR_3DHILIGHT */
162 COLORREF clr3dShadow; /* COLOR_3DSHADOW */
163 COLORREF clr3dDkShadow; /* COLOR_3DDKSHADOW */
164 COLORREF clr3dFace; /* COLOR_3DFACE */
165 COLORREF clrWindow; /* COLOR_WINDOW */
166 COLORREF clrWindowText; /* COLOR_WINDOWTEXT */
167 COLORREF clrGrayText; /* COLOR_GREYTEXT */
168 COLORREF clrActiveCaption; /* COLOR_ACTIVECAPTION */
169 COLORREF clrInfoBk; /* COLOR_INFOBK */
170 COLORREF clrInfoText; /* COLOR_INFOTEXT */
171 } COMCTL32_SysColor;
173 extern COMCTL32_SysColor comctl32_color DECLSPEC_HIDDEN;
175 /* Internal function */
176 HWND COMCTL32_CreateToolTip (HWND) DECLSPEC_HIDDEN;
177 VOID COMCTL32_RefreshSysColors(void) DECLSPEC_HIDDEN;
178 void COMCTL32_DrawInsertMark(HDC hDC, const RECT *lpRect, COLORREF clrInsertMark, BOOL bHorizontal) DECLSPEC_HIDDEN;
179 void COMCTL32_EnsureBitmapSize(HBITMAP *pBitmap, int cxMinWidth, int cyMinHeight, COLORREF crBackground) DECLSPEC_HIDDEN;
180 void COMCTL32_GetFontMetrics(HFONT hFont, TEXTMETRICW *ptm) DECLSPEC_HIDDEN;
181 BOOL COMCTL32_IsReflectedMessage(UINT uMsg) DECLSPEC_HIDDEN;
182 INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen) DECLSPEC_HIDDEN;
183 INT Str_GetPtrAtoW (LPCSTR lpSrc, LPWSTR lpDest, INT nMaxLen) DECLSPEC_HIDDEN;
184 BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc) DECLSPEC_HIDDEN;
185 BOOL Str_SetPtrWtoA (LPSTR *lppDest, LPCWSTR lpSrc) DECLSPEC_HIDDEN;
187 #define COMCTL32_VERSION_MINOR 81
189 /* Our internal stack structure of the window procedures to subclass */
190 typedef struct _SUBCLASSPROCS {
191 SUBCLASSPROC subproc;
192 UINT_PTR id;
193 DWORD_PTR ref;
194 struct _SUBCLASSPROCS *next;
195 } SUBCLASSPROCS, *LPSUBCLASSPROCS;
197 typedef struct
199 SUBCLASSPROCS *SubclassProcs;
200 SUBCLASSPROCS *stackpos;
201 WNDPROC origproc;
202 int running;
203 } SUBCLASS_INFO, *LPSUBCLASS_INFO;
205 /* undocumented functions */
207 LPVOID WINAPI Alloc (DWORD) __WINE_ALLOC_SIZE(1);
208 LPVOID WINAPI ReAlloc (LPVOID, DWORD) __WINE_ALLOC_SIZE(2);
209 BOOL WINAPI Free (LPVOID);
210 DWORD WINAPI GetSize (LPVOID);
212 INT WINAPI Str_GetPtrA (LPCSTR, LPSTR, INT);
213 INT WINAPI Str_GetPtrW (LPCWSTR, LPWSTR, INT);
215 LRESULT WINAPI SetPathWordBreakProc(HWND hwnd, BOOL bSet);
216 BOOL WINAPI MirrorIcon(HICON *phicon1, HICON *phicon2);
218 HRGN set_control_clipping(HDC hdc, const RECT *rect) DECLSPEC_HIDDEN;
220 extern void ANIMATE_Register(void) DECLSPEC_HIDDEN;
221 extern void ANIMATE_Unregister(void) DECLSPEC_HIDDEN;
222 extern void BUTTON_Register(void) DECLSPEC_HIDDEN;
223 extern void COMBO_Register(void) DECLSPEC_HIDDEN;
224 extern void COMBOEX_Register(void) DECLSPEC_HIDDEN;
225 extern void COMBOEX_Unregister(void) DECLSPEC_HIDDEN;
226 extern void COMBOLBOX_Register(void) DECLSPEC_HIDDEN;
227 extern void DATETIME_Register(void) DECLSPEC_HIDDEN;
228 extern void DATETIME_Unregister(void) DECLSPEC_HIDDEN;
229 extern void EDIT_Register(void) DECLSPEC_HIDDEN;
230 extern void FLATSB_Register(void) DECLSPEC_HIDDEN;
231 extern void FLATSB_Unregister(void) DECLSPEC_HIDDEN;
232 extern void HEADER_Register(void) DECLSPEC_HIDDEN;
233 extern void HEADER_Unregister(void) DECLSPEC_HIDDEN;
234 extern void HOTKEY_Register(void) DECLSPEC_HIDDEN;
235 extern void HOTKEY_Unregister(void) DECLSPEC_HIDDEN;
236 extern void IPADDRESS_Register(void) DECLSPEC_HIDDEN;
237 extern void IPADDRESS_Unregister(void) DECLSPEC_HIDDEN;
238 extern void LISTBOX_Register(void) DECLSPEC_HIDDEN;
239 extern void LISTVIEW_Register(void) DECLSPEC_HIDDEN;
240 extern void LISTVIEW_Unregister(void) DECLSPEC_HIDDEN;
241 extern void MONTHCAL_Register(void) DECLSPEC_HIDDEN;
242 extern void MONTHCAL_Unregister(void) DECLSPEC_HIDDEN;
243 extern void NATIVEFONT_Register(void) DECLSPEC_HIDDEN;
244 extern void NATIVEFONT_Unregister(void) DECLSPEC_HIDDEN;
245 extern void PAGER_Register(void) DECLSPEC_HIDDEN;
246 extern void PAGER_Unregister(void) DECLSPEC_HIDDEN;
247 extern void PROGRESS_Register(void) DECLSPEC_HIDDEN;
248 extern void PROGRESS_Unregister(void) DECLSPEC_HIDDEN;
249 extern void REBAR_Register(void) DECLSPEC_HIDDEN;
250 extern void REBAR_Unregister(void) DECLSPEC_HIDDEN;
251 extern void STATIC_Register(void) DECLSPEC_HIDDEN;
252 extern void STATUS_Register(void) DECLSPEC_HIDDEN;
253 extern void STATUS_Unregister(void) DECLSPEC_HIDDEN;
254 extern void SYSLINK_Register(void) DECLSPEC_HIDDEN;
255 extern void SYSLINK_Unregister(void) DECLSPEC_HIDDEN;
256 extern void TAB_Register(void) DECLSPEC_HIDDEN;
257 extern void TAB_Unregister(void) DECLSPEC_HIDDEN;
258 extern void TOOLBAR_Register(void) DECLSPEC_HIDDEN;
259 extern void TOOLBAR_Unregister(void) DECLSPEC_HIDDEN;
260 extern void TOOLTIPS_Register(void) DECLSPEC_HIDDEN;
261 extern void TOOLTIPS_Unregister(void) DECLSPEC_HIDDEN;
262 extern void TRACKBAR_Register(void) DECLSPEC_HIDDEN;
263 extern void TRACKBAR_Unregister(void) DECLSPEC_HIDDEN;
264 extern void TREEVIEW_Register(void) DECLSPEC_HIDDEN;
265 extern void TREEVIEW_Unregister(void) DECLSPEC_HIDDEN;
266 extern void UPDOWN_Register(void) DECLSPEC_HIDDEN;
267 extern void UPDOWN_Unregister(void) DECLSPEC_HIDDEN;
270 int MONTHCAL_MonthLength(int month, int year) DECLSPEC_HIDDEN;
271 int MONTHCAL_CalculateDayOfWeek(SYSTEMTIME *date, BOOL inplace) DECLSPEC_HIDDEN;
272 LONG MONTHCAL_CompareSystemTime(const SYSTEMTIME *first, const SYSTEMTIME *second) DECLSPEC_HIDDEN;
274 extern void THEMING_Initialize(void) DECLSPEC_HIDDEN;
275 extern void THEMING_Uninitialize(void) DECLSPEC_HIDDEN;
276 extern LRESULT THEMING_CallOriginalClass(HWND, UINT, WPARAM, LPARAM) DECLSPEC_HIDDEN;
277 extern void THEMING_SetSubclassData(HWND, ULONG_PTR) DECLSPEC_HIDDEN;
279 #endif /* __WINE_COMCTL32_H */