2 * User controls definitions
4 * Copyright 2000 Alexandre Julliard
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.
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.
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
21 #ifndef __WINE_CONTROLS_H
22 #define __WINE_CONTROLS_H
26 /* Built-in class names (see _Undocumented_Windows_ p.418) */
27 #define POPUPMENU_CLASS_ATOM MAKEINTATOM(32768) /* PopupMenu */
28 #define DESKTOP_CLASS_ATOM MAKEINTATOM(32769) /* Desktop */
29 #define DIALOG_CLASS_ATOM MAKEINTATOM(32770) /* Dialog */
30 #define WINSWITCH_CLASS_ATOM MAKEINTATOM(32771) /* WinSwitch */
31 #define ICONTITLE_CLASS_ATOM MAKEINTATOM(32772) /* IconTitle */
45 /* unicode-only procs */
51 NB_BUILTIN_AW_WINPROCS
= WINPROC_DESKTOP
54 #define WINPROC_HANDLE (~0u >> 16)
55 #define BUILTIN_WINPROC(index) ((WNDPROC)(ULONG_PTR)((index) | (WINPROC_HANDLE << 16)))
57 /* Built-in class descriptor */
58 struct builtin_class_descr
60 LPCWSTR name
; /* class name */
61 UINT style
; /* class style */
62 enum builtin_winprocs proc
;
63 INT extra
; /* window extra bytes */
64 ULONG_PTR cursor
; /* cursor id */
65 HBRUSH brush
; /* brush or system color */
68 extern const struct builtin_class_descr BUTTON_builtin_class DECLSPEC_HIDDEN
;
69 extern const struct builtin_class_descr COMBO_builtin_class DECLSPEC_HIDDEN
;
70 extern const struct builtin_class_descr COMBOLBOX_builtin_class DECLSPEC_HIDDEN
;
71 extern const struct builtin_class_descr DIALOG_builtin_class DECLSPEC_HIDDEN
;
72 extern const struct builtin_class_descr DESKTOP_builtin_class DECLSPEC_HIDDEN
;
73 extern const struct builtin_class_descr EDIT_builtin_class DECLSPEC_HIDDEN
;
74 extern const struct builtin_class_descr ICONTITLE_builtin_class DECLSPEC_HIDDEN
;
75 extern const struct builtin_class_descr LISTBOX_builtin_class DECLSPEC_HIDDEN
;
76 extern const struct builtin_class_descr MDICLIENT_builtin_class DECLSPEC_HIDDEN
;
77 extern const struct builtin_class_descr MENU_builtin_class DECLSPEC_HIDDEN
;
78 extern const struct builtin_class_descr MESSAGE_builtin_class DECLSPEC_HIDDEN
;
79 extern const struct builtin_class_descr SCROLL_builtin_class DECLSPEC_HIDDEN
;
80 extern const struct builtin_class_descr STATIC_builtin_class DECLSPEC_HIDDEN
;
82 extern LRESULT WINAPI
DesktopWndProc(HWND
,UINT
,WPARAM
,LPARAM
) DECLSPEC_HIDDEN
;
83 extern LRESULT WINAPI
IconTitleWndProc(HWND
,UINT
,WPARAM
,LPARAM
) DECLSPEC_HIDDEN
;
84 extern LRESULT WINAPI
PopupMenuWndProc(HWND
,UINT
,WPARAM
,LPARAM
) DECLSPEC_HIDDEN
;
85 extern LRESULT WINAPI
MessageWndProc(HWND
,UINT
,WPARAM
,LPARAM
) DECLSPEC_HIDDEN
;
89 /* the structures must match the corresponding ones in user.exe */
92 LRESULT (*button_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
93 LRESULT (*combo_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
94 LRESULT (*edit_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
95 LRESULT (*listbox_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
96 LRESULT (*mdiclient_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
97 LRESULT (*scrollbar_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
98 LRESULT (*static_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
99 DWORD (*wait_message
)(DWORD
,const HANDLE
*,DWORD
,DWORD
,DWORD
);
100 HWND (*create_window
)(CREATESTRUCTW
*,LPCWSTR
,HINSTANCE
,BOOL
);
101 LRESULT (*call_window_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,LRESULT
*,void*);
102 LRESULT (*call_dialog_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,LRESULT
*,void*);
103 void (*free_icon_param
)(ULONG_PTR
);
106 struct wow_handlers32
108 LRESULT (*button_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
109 LRESULT (*combo_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
110 LRESULT (*edit_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
111 LRESULT (*listbox_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
112 LRESULT (*mdiclient_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
113 LRESULT (*scrollbar_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
114 LRESULT (*static_proc
)(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
);
115 DWORD (*wait_message
)(DWORD
,const HANDLE
*,DWORD
,DWORD
,DWORD
);
116 HWND (*create_window
)(CREATESTRUCTW
*,LPCWSTR
,HINSTANCE
,BOOL
);
117 HWND (*get_win_handle
)(HWND
);
118 WNDPROC (*alloc_winproc
)(WNDPROC
,BOOL
);
119 struct tagDIALOGINFO
*(*get_dialog_info
)(HWND
,BOOL
);
120 INT (*dialog_box_loop
)(HWND
,HWND
);
121 ULONG_PTR (*get_icon_param
)(HICON
);
122 ULONG_PTR (*set_icon_param
)(HICON
,ULONG_PTR
);
125 extern struct wow_handlers16 wow_handlers DECLSPEC_HIDDEN
;
127 extern LRESULT
ButtonWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
128 extern LRESULT
ComboWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
129 extern LRESULT
EditWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
130 extern LRESULT
ListBoxWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
131 extern LRESULT
MDIClientWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
132 extern LRESULT
ScrollBarWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
133 extern LRESULT
StaticWndProc_common(HWND
,UINT
,WPARAM
,LPARAM
,BOOL
) DECLSPEC_HIDDEN
;
135 extern ULONG_PTR
get_icon_param( HICON handle
) DECLSPEC_HIDDEN
;
136 extern ULONG_PTR
set_icon_param( HICON handle
, ULONG_PTR param
) DECLSPEC_HIDDEN
;
138 /* Class functions */
139 struct tagCLASS
; /* opaque structure */
141 extern ATOM
get_int_atom_value( LPCWSTR name
) DECLSPEC_HIDDEN
;
142 extern void CLASS_RegisterBuiltinClasses(void) DECLSPEC_HIDDEN
;
143 extern WNDPROC
get_class_winproc( struct tagCLASS
*class ) DECLSPEC_HIDDEN
;
144 extern struct dce
*get_class_dce( struct tagCLASS
*class ) DECLSPEC_HIDDEN
;
145 extern struct dce
*set_class_dce( struct tagCLASS
*class, struct dce
*dce
) DECLSPEC_HIDDEN
;
148 extern HBRUSH
DEFWND_ControlColor( HDC hDC
, UINT ctlType
) DECLSPEC_HIDDEN
;
151 extern BOOL
update_wallpaper( const WCHAR
*wallpaper
, const WCHAR
*pattern
) DECLSPEC_HIDDEN
;
154 extern HWND
ICONTITLE_Create( HWND hwnd
) DECLSPEC_HIDDEN
;
157 extern HWND
MENU_IsMenuActive(void) DECLSPEC_HIDDEN
;
158 extern UINT
MENU_GetMenuBarHeight( HWND hwnd
, UINT menubarWidth
,
159 INT orgX
, INT orgY
) DECLSPEC_HIDDEN
;
160 extern BOOL
MENU_SetMenu(HWND
, HMENU
) DECLSPEC_HIDDEN
;
161 extern void MENU_TrackMouseMenuBar( HWND hwnd
, INT ht
, POINT pt
) DECLSPEC_HIDDEN
;
162 extern void MENU_TrackKbdMenuBar( HWND hwnd
, UINT wParam
, WCHAR wChar
) DECLSPEC_HIDDEN
;
163 extern UINT
MENU_DrawMenuBar( HDC hDC
, LPRECT lprect
, HWND hwnd
) DECLSPEC_HIDDEN
;
164 extern void MENU_EndMenu(HWND
) DECLSPEC_HIDDEN
;
167 extern LRESULT
NC_HandleNCPaint( HWND hwnd
, HRGN clip
) DECLSPEC_HIDDEN
;
168 extern LRESULT
NC_HandleNCActivate( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
169 extern LRESULT
NC_HandleNCCalcSize( HWND hwnd
, WPARAM wParam
, RECT
*winRect
) DECLSPEC_HIDDEN
;
170 extern LRESULT
NC_HandleNCHitTest( HWND hwnd
, POINT pt
) DECLSPEC_HIDDEN
;
171 extern LRESULT
NC_HandleNCLButtonDown( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
172 extern LRESULT
NC_HandleNCRButtonDown( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
173 extern LRESULT
NC_HandleNCLButtonDblClk( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
174 extern LRESULT
NC_HandleSysCommand( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
175 extern LRESULT
NC_HandleSetCursor( HWND hwnd
, WPARAM wParam
, LPARAM lParam
) DECLSPEC_HIDDEN
;
176 extern BOOL
NC_DrawSysButton( HWND hwnd
, HDC hdc
, BOOL down
) DECLSPEC_HIDDEN
;
177 extern void NC_GetSysPopupPos( HWND hwnd
, RECT
* rect
) DECLSPEC_HIDDEN
;
180 extern void SCROLL_DrawScrollBar( HWND hwnd
, HDC hdc
, INT nBar
, BOOL arrows
, BOOL interior
) DECLSPEC_HIDDEN
;
181 extern void SCROLL_TrackScrollBar( HWND hwnd
, INT scrollbar
, POINT pt
) DECLSPEC_HIDDEN
;
185 #define ID_CB_LISTBOX 1000
186 #define ID_CB_EDIT 1001
189 #define CBF_DROPPED 0x0001
190 #define CBF_BUTTONDOWN 0x0002
191 #define CBF_NOROLLUP 0x0004
192 #define CBF_MEASUREITEM 0x0008
193 #define CBF_FOCUSED 0x0010
194 #define CBF_CAPTURE 0x0020
195 #define CBF_EDIT 0x0040
196 #define CBF_NORESIZE 0x0080
197 #define CBF_NOTIFY 0x0100
198 #define CBF_NOREDRAW 0x0200
199 #define CBF_SELCHANGE 0x0400
200 #define CBF_NOEDITNOTIFY 0x1000
201 #define CBF_NOLBSELECT 0x2000 /* do not change current selection */
202 #define CBF_BEENFOCUSED 0x4000 /* has it ever had focus */
203 #define CBF_EUI 0x8000
205 /* combo state struct */
219 INT fixedOwnerDrawHeight
;
220 INT droppedWidth
; /* last two are not used unless set */
221 INT editHeight
; /* explicitly */
222 } HEADCOMBO
,*LPHEADCOMBO
;
224 extern BOOL
COMBO_FlipListbox( LPHEADCOMBO
, BOOL
, BOOL
) DECLSPEC_HIDDEN
;
226 /* Dialog info structure (note: shared with user.exe) */
227 typedef struct tagDIALOGINFO
229 HWND hwndFocus
; /* Current control with focus */
230 HFONT hUserFont
; /* Dialog font */
231 HMENU hMenu
; /* Dialog menu */
232 UINT xBaseUnit
; /* Dialog units (depends on the font) */
234 INT idResult
; /* EndDialog() result / default pushbutton ID */
235 UINT flags
; /* EndDialog() called for this dialog */
238 #define DF_END 0x0001
239 #define DF_OWNERENABLED 0x0002
241 extern DIALOGINFO
*DIALOG_get_info( HWND hwnd
, BOOL create
) DECLSPEC_HIDDEN
;
242 extern INT
DIALOG_DoDialogBox( HWND hwnd
, HWND owner
) DECLSPEC_HIDDEN
;
244 HRGN
set_control_clipping( HDC hdc
, const RECT
*rect
) DECLSPEC_HIDDEN
;
246 #endif /* __WINE_CONTROLS_H */