4 * Copyright 1995 Bernd Schmidt
8 #include "wine/winuser16.h"
19 /**************************************************************************
22 * Dialog procedure for message boxes.
24 static LRESULT CALLBACK
MSGBOX_DlgProc( HWND hwnd
, UINT message
,
25 WPARAM wParam
, LPARAM lParam
)
27 static HFONT hFont
= 0;
34 int i
, buttons
, bwidth
, bheight
, theight
, wwidth
, bpos
;
35 int borheight
, iheight
, tiheight
;
39 lpmb
= (LPMSGBOXPARAMSA
)lParam
;
40 if (TWEAK_WineLook
>= WIN95_LOOK
) {
41 NONCLIENTMETRICSA nclm
;
43 nclm
.cbSize
= sizeof(NONCLIENTMETRICSA
);
44 SystemParametersInfoA (SPI_GETNONCLIENTMETRICS
, 0, &nclm
, 0);
45 hFont
= CreateFontIndirectA (&nclm
.lfMessageFont
);
48 SendDlgItemMessageA (hwnd
, i
, WM_SETFONT
, (WPARAM
)hFont
, 0);
50 SendDlgItemMessageA (hwnd
, 100, WM_SETFONT
, (WPARAM
)hFont
, 0);
52 if (lpmb
->lpszCaption
) SetWindowTextA(hwnd
, lpmb
->lpszCaption
);
53 SetWindowTextA(GetDlgItem(hwnd
, 100), lpmb
->lpszText
);
54 /* Hide not selected buttons */
55 switch(lpmb
->dwStyle
& MB_TYPEMASK
) {
57 ShowWindow(GetDlgItem(hwnd
, 2), SW_HIDE
);
60 ShowWindow(GetDlgItem(hwnd
, 3), SW_HIDE
);
61 ShowWindow(GetDlgItem(hwnd
, 4), SW_HIDE
);
62 ShowWindow(GetDlgItem(hwnd
, 5), SW_HIDE
);
63 ShowWindow(GetDlgItem(hwnd
, 6), SW_HIDE
);
64 ShowWindow(GetDlgItem(hwnd
, 7), SW_HIDE
);
66 case MB_ABORTRETRYIGNORE
:
67 ShowWindow(GetDlgItem(hwnd
, 1), SW_HIDE
);
68 ShowWindow(GetDlgItem(hwnd
, 2), SW_HIDE
);
69 ShowWindow(GetDlgItem(hwnd
, 6), SW_HIDE
);
70 ShowWindow(GetDlgItem(hwnd
, 7), SW_HIDE
);
73 ShowWindow(GetDlgItem(hwnd
, 2), SW_HIDE
);
76 ShowWindow(GetDlgItem(hwnd
, 1), SW_HIDE
);
77 ShowWindow(GetDlgItem(hwnd
, 3), SW_HIDE
);
78 ShowWindow(GetDlgItem(hwnd
, 4), SW_HIDE
);
79 ShowWindow(GetDlgItem(hwnd
, 5), SW_HIDE
);
83 switch(lpmb
->dwStyle
& MB_ICONMASK
) {
84 case MB_ICONEXCLAMATION
:
85 SendDlgItemMessage16(hwnd
, stc1
, STM_SETICON16
,
86 (WPARAM16
)LoadIcon16(0, IDI_EXCLAMATION16
), 0);
89 SendDlgItemMessage16(hwnd
, stc1
, STM_SETICON16
,
90 (WPARAM16
)LoadIcon16(0, IDI_QUESTION16
), 0);
93 SendDlgItemMessage16(hwnd
, stc1
, STM_SETICON16
,
94 (WPARAM16
)LoadIcon16(0, IDI_ASTERISK16
), 0);
98 SendDlgItemMessage16(hwnd
, stc1
, STM_SETICON16
,
99 (WPARAM16
)LoadIcon16(0, IDI_HAND16
), 0);
103 /* Position everything */
104 GetWindowRect(hwnd
, &rect
);
105 borheight
= rect
.bottom
- rect
.top
;
106 wwidth
= rect
.right
- rect
.left
;
107 GetClientRect(hwnd
, &rect
);
108 borheight
-= rect
.bottom
- rect
.top
;
110 /* Get the icon height */
111 GetWindowRect(GetDlgItem(hwnd
, 1088), &rect
);
112 iheight
= rect
.bottom
- rect
.top
;
114 /* Get the number of visible buttons and their width */
115 GetWindowRect(GetDlgItem(hwnd
, 2), &rect
);
116 bheight
= rect
.bottom
- rect
.top
;
118 GetWindowRect(GetDlgItem(hwnd
, 1), &rect
);
120 for (buttons
= 0, i
= 1; i
< 8; i
++)
122 hItem
= GetDlgItem(hwnd
, i
);
123 if (GetWindowLongA(hItem
, GWL_STYLE
) & WS_VISIBLE
) buttons
++;
126 /* Get the text size */
127 hItem
= GetDlgItem(hwnd
, 100);
128 GetWindowRect(hItem
, &textrect
);
129 MapWindowPoints(0, hwnd
, (LPPOINT
)&textrect
, 2);
131 GetClientRect(hItem
, &rect
);
133 lRet
= DrawTextA( hdc
, lpmb
->lpszText
, -1, &rect
,
134 DT_LEFT
| DT_EXPANDTABS
| DT_WORDBREAK
| DT_CALCRECT
);
135 theight
= rect
.bottom
- rect
.top
;
136 tiheight
= 16 + MAX(iheight
, theight
);
137 ReleaseDC(hItem
, hdc
);
139 /* Position the text */
140 SetWindowPos(hItem
, 0, textrect
.left
, (tiheight
- theight
) / 2,
141 rect
.right
- rect
.left
, theight
,
142 SWP_NOZORDER
| SWP_NOACTIVATE
| SWP_NOREDRAW
);
144 /* Position the icon */
145 hItem
= GetDlgItem(hwnd
, 1088);
146 GetWindowRect(hItem
, &rect
);
147 MapWindowPoints(0, hwnd
, (LPPOINT
)&rect
, 2);
148 SetWindowPos(hItem
, 0, rect
.left
, (tiheight
- iheight
) / 2, 0, 0,
149 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
| SWP_NOREDRAW
);
151 /* Resize the window */
152 SetWindowPos(hwnd
, 0, 0, 0, wwidth
, 8 + tiheight
+ bheight
+ borheight
,
153 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
| SWP_NOREDRAW
);
155 /* Position the buttons */
156 bpos
= (wwidth
- bwidth
* buttons
) / 2;
157 GetWindowRect(GetDlgItem(hwnd
, 1), &rect
);
158 for (buttons
= i
= 0; i
< 7; i
++) {
159 /* some arithmetic to get the right order for YesNoCancel windows */
160 hItem
= GetDlgItem(hwnd
, (i
+ 5) % 7 + 1);
161 if (GetWindowLongA(hItem
, GWL_STYLE
) & WS_VISIBLE
) {
162 if (buttons
++ == ((lpmb
->dwStyle
& MB_DEFMASK
) >> 8)) {
164 SendMessageA( hItem
, BM_SETSTYLE
, BS_DEFPUSHBUTTON
, TRUE
);
166 SetWindowPos(hItem
, 0, bpos
, tiheight
, 0, 0,
167 SWP_NOSIZE
|SWP_NOZORDER
|SWP_NOACTIVATE
|SWP_NOREDRAW
);
184 if ((TWEAK_WineLook
> WIN31_LOOK
) && hFont
)
185 DeleteObject (hFont
);
186 EndDialog(hwnd
, wParam
);
191 /* Ok. Ignore all the other messages */
192 TRACE (dialog
, "Message number %i is being ignored.\n", message
);
199 /**************************************************************************
200 * MessageBox16 (USER.1)
202 INT16 WINAPI
MessageBox16( HWND16 hwnd
, LPCSTR text
, LPCSTR title
, UINT16 type
)
204 WARN(dialog
,"Messagebox\n");
205 return MessageBoxA( hwnd
, text
, title
, type
);
209 /**************************************************************************
210 * MessageBox32A (USER32.391)
213 * The WARN is here to help debug erroneous MessageBoxes
214 * Use: -debugmsg warn+dialog,+relay
216 INT WINAPI
MessageBoxA(HWND hWnd
, LPCSTR text
, LPCSTR title
, UINT type
)
219 WARN(dialog
,"Messagebox\n");
220 if (!text
) text
="<WINE-NULL>";
223 mbox
.lpszCaption
= title
;
224 mbox
.lpszText
= text
;
226 return DialogBoxIndirectParamA( WIN_GetWindowInstance(hWnd
),
227 SYSRES_GetResPtr( SYSRES_DIALOG_MSGBOX
),
228 hWnd
, (DLGPROC
)MSGBOX_DlgProc
, (LPARAM
)&mbox
);
232 /**************************************************************************
233 * MessageBox32W (USER32.396)
235 INT WINAPI
MessageBoxW( HWND hwnd
, LPCWSTR text
, LPCWSTR title
,
238 LPSTR titleA
= HEAP_strdupWtoA( GetProcessHeap(), 0, title
);
239 LPSTR textA
= HEAP_strdupWtoA( GetProcessHeap(), 0, text
);
242 WARN(dialog
,"Messagebox\n");
244 ret
= MessageBoxA( hwnd
, textA
, titleA
, type
);
245 HeapFree( GetProcessHeap(), 0, titleA
);
246 HeapFree( GetProcessHeap(), 0, textA
);
251 /**************************************************************************
252 * MessageBoxEx32A (USER32.392)
254 INT WINAPI
MessageBoxExA( HWND hWnd
, LPCSTR text
, LPCSTR title
,
255 UINT type
, WORD langid
)
257 WARN(dialog
,"Messagebox\n");
258 /* ignore language id for now */
259 return MessageBoxA(hWnd
,text
,title
,type
);
262 /**************************************************************************
263 * MessageBoxEx32W (USER32.393)
265 INT WINAPI
MessageBoxExW( HWND hWnd
, LPCWSTR text
, LPCWSTR title
,
266 UINT type
, WORD langid
)
268 WARN(dialog
,"Messagebox\n");
269 /* ignore language id for now */
270 return MessageBoxW(hWnd
,text
,title
,type
);
273 /**************************************************************************
274 * MessageBoxIndirect16 (USER.827)
276 INT16 WINAPI
MessageBoxIndirect16( LPMSGBOXPARAMS16 msgbox
)
278 MSGBOXPARAMSA msgbox32
;
279 WARN(dialog
,"Messagebox\n");
281 msgbox32
.cbSize
= msgbox
->cbSize
;
282 msgbox32
.hwndOwner
= msgbox
->hwndOwner
;
283 msgbox32
.hInstance
= msgbox
->hInstance
;
284 msgbox32
.lpszText
= PTR_SEG_TO_LIN(msgbox
->lpszText
);
285 msgbox32
.lpszCaption
= PTR_SEG_TO_LIN(msgbox
->lpszCaption
);
286 msgbox32
.dwStyle
= msgbox
->dwStyle
;
287 msgbox32
.lpszIcon
= PTR_SEG_TO_LIN(msgbox
->lpszIcon
);
288 msgbox32
.dwContextHelpId
= msgbox
->dwContextHelpId
;
289 msgbox32
.lpfnMsgBoxCallback
= msgbox
->lpfnMsgBoxCallback
;
290 msgbox32
.dwLanguageId
= msgbox
->dwLanguageId
;
292 return DialogBoxIndirectParamA( msgbox32
.hInstance
,
293 SYSRES_GetResPtr( SYSRES_DIALOG_MSGBOX
),
294 msgbox32
.hwndOwner
, (DLGPROC
)MSGBOX_DlgProc
,
298 /**************************************************************************
299 * MessageBoxIndirect32A (USER32.394)
301 INT WINAPI
MessageBoxIndirectA( LPMSGBOXPARAMSA msgbox
)
303 WARN(dialog
,"Messagebox\n");
304 return DialogBoxIndirectParamA( msgbox
->hInstance
,
305 SYSRES_GetResPtr( SYSRES_DIALOG_MSGBOX
),
306 msgbox
->hwndOwner
, (DLGPROC
)MSGBOX_DlgProc
,
310 /**************************************************************************
311 * MessageBoxIndirect32W (USER32.395)
313 INT WINAPI
MessageBoxIndirectW( LPMSGBOXPARAMSW msgbox
)
315 MSGBOXPARAMSA msgboxa
;
316 WARN(dialog
,"Messagebox\n");
318 memcpy(&msgboxa
,msgbox
,sizeof(msgboxa
));
319 if (msgbox
->lpszCaption
)
320 lstrcpyWtoA((LPSTR
)msgboxa
.lpszCaption
,msgbox
->lpszCaption
);
321 if (msgbox
->lpszText
)
322 lstrcpyWtoA((LPSTR
)msgboxa
.lpszText
,msgbox
->lpszText
);
324 return MessageBoxIndirectA(&msgboxa
);
328 /**************************************************************************
329 * FatalAppExit16 (KERNEL.137)
331 void WINAPI
FatalAppExit16( UINT16 action
, LPCSTR str
)
333 WARN(dialog
,"AppExit\n");
334 FatalAppExitA( action
, str
);
338 /**************************************************************************
339 * FatalAppExit32A (KERNEL32.108)
341 void WINAPI
FatalAppExitA( UINT action
, LPCSTR str
)
343 WARN(dialog
,"AppExit\n");
344 MessageBoxA( 0, str
, NULL
, MB_SYSTEMMODAL
| MB_OK
);
349 /**************************************************************************
350 * FatalAppExit32W (KERNEL32.109)
352 void WINAPI
FatalAppExitW( UINT action
, LPCWSTR str
)
354 WARN(dialog
,"AppExit\n");
355 MessageBoxW( 0, str
, NULL
, MB_SYSTEMMODAL
| MB_OK
);