cryptui: Implement specifying the destination store in CryptUIWizImport.
[wine/wine64.git] / programs / winetest / gui.c
blob2957dbfd1d57d2686450a5197988eaa49c55acde
1 /*
2 * GUI support
4 * Copyright 2004 Ferenc Wagner
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 #include <windows.h>
22 #include <commctrl.h>
24 #include "resource.h"
25 #include "winetest.h"
27 /* Event object to signal successful window creation to main thread.
29 static HANDLE initEvent;
31 /* Dialog handle
33 static HWND dialog;
35 /* Progress data for the text* functions and for scaling.
37 static unsigned int progressMax, progressCurr;
38 static double progressScale;
40 /* Progress group counter for the gui* functions.
42 static int progressGroup;
44 static WNDPROC DefEditProc;
46 static int
47 MBdefault (int uType)
49 static const int matrix[][4] = {{IDOK, 0, 0, 0},
50 {IDOK, IDCANCEL, 0, 0},
51 {IDABORT, IDRETRY, IDIGNORE, 0},
52 {IDYES, IDNO, IDCANCEL, 0},
53 {IDYES, IDNO, 0, 0},
54 {IDRETRY, IDCANCEL, 0, 0}};
55 int type = uType & MB_TYPEMASK;
56 int def = (uType & MB_DEFMASK) / MB_DEFBUTTON2;
58 return matrix[type][def];
61 /* report (R_STATUS, fmt, ...) */
62 static int
63 textStatus (va_list ap)
65 char *str = vstrmake (NULL, ap);
67 fputs (str, stderr);
68 fputc ('\n', stderr);
69 free (str);
70 return 0;
73 static int
74 guiStatus (va_list ap)
76 size_t len;
77 char *str = vstrmake (&len, ap);
79 if (len > 128) str[129] = 0;
80 SetDlgItemText (dialog, IDC_SB, str);
81 free (str);
82 return 0;
85 /* report (R_PROGRESS, barnum, steps) */
86 static int
87 textProgress (va_list ap)
89 progressGroup = va_arg (ap, int);
90 progressMax = va_arg (ap, int);
91 progressCurr = 0;
92 return 0;
95 static int
96 guiProgress (va_list ap)
98 unsigned int max;
99 HWND pb;
101 progressGroup = va_arg (ap, int);
102 progressMax = max = va_arg (ap, int);
103 progressCurr = 0;
104 if (max > 0xffff) {
105 progressScale = (double)0xffff / max;
106 max = 0xffff;
108 else progressScale = 1;
109 pb = GetDlgItem (dialog, IDC_PB0 + progressGroup * 2);
110 SendMessage (pb, PBM_SETRANGE, 0, MAKELPARAM (0, max));
111 SendMessage (pb, PBM_SETSTEP, (WPARAM)1, 0);
112 return 0;
115 /* report (R_STEP, fmt, ...) */
116 static int
117 textStep (va_list ap)
119 char *str = vstrmake (NULL, ap);
121 progressCurr++;
122 fputs (str, stderr);
123 fprintf (stderr, " (%d of %d)\n", progressCurr, progressMax);
124 free (str);
125 return 0;
128 static int
129 guiStep (va_list ap)
131 const int pgID = IDC_ST0 + progressGroup * 2;
132 char *str = vstrmake (NULL, ap);
134 progressCurr++;
135 SetDlgItemText (dialog, pgID, str);
136 SendDlgItemMessage (dialog, pgID+1, PBM_SETPOS,
137 (WPARAM)(progressScale * progressCurr), 0);
138 free (str);
139 return 0;
142 /* report (R_DELTA, inc, fmt, ...) */
143 static int
144 textDelta (va_list ap)
146 const int inc = va_arg (ap, int);
147 char *str = vstrmake (NULL, ap);
149 progressCurr += inc;
150 fputs (str, stderr);
151 fprintf (stderr, " (%d of %d)\n", progressCurr, progressMax);
152 free (str);
153 return 0;
156 static int
157 guiDelta (va_list ap)
159 const int inc = va_arg (ap, int);
160 const int pgID = IDC_ST0 + progressGroup * 2;
161 char *str = vstrmake (NULL, ap);
163 progressCurr += inc;
164 SetDlgItemText (dialog, pgID, str);
165 SendDlgItemMessage (dialog, pgID+1, PBM_SETPOS,
166 (WPARAM)(progressScale * progressCurr), 0);
167 free (str);
168 return 0;
171 /* report (R_TAG) */
172 static int
173 textTag (va_list ap)
175 fputs ("Tag: ", stderr);
176 fputs (tag, stderr);
177 fputc ('\n', stderr);
178 return 0;
181 static int
182 guiTag (va_list ap)
184 SetDlgItemText (dialog, IDC_TAG, tag);
185 return 0;
188 /* report (R_DIR, fmt, ...) */
189 static int
190 textDir (va_list ap)
192 char *str = vstrmake (NULL, ap);
194 fputs ("Temporary directory: ", stderr);
195 fputs (str, stderr);
196 fputc ('\n', stderr);
197 free (str);
198 return 0;
201 static int
202 guiDir (va_list ap)
204 char *str = vstrmake (NULL, ap);
206 SetDlgItemText (dialog, IDC_DIR, str);
207 free (str);
208 return 0;
211 /* report (R_OUT, fmt, ...) */
212 static int
213 textOut (va_list ap)
215 char *str = vstrmake (NULL, ap);
217 fputs ("Log file: ", stderr);
218 fputs (str, stderr);
219 fputc ('\n', stderr);
220 free (str);
221 return 0;
224 static int
225 guiOut (va_list ap)
227 char *str = vstrmake (NULL, ap);
229 SetDlgItemText (dialog, IDC_OUT, str);
230 free (str);
231 return 0;
234 /* report (R_WARNING, fmt, ...) */
235 static int
236 textWarning (va_list ap)
238 fputs ("Warning: ", stderr);
239 textStatus (ap);
240 return 0;
243 static int
244 guiWarning (va_list ap)
246 char *str = vstrmake (NULL, ap);
248 MessageBox (dialog, str, "Warning", MB_ICONWARNING | MB_OK);
249 free (str);
250 return 0;
253 /* report (R_ERROR, fmt, ...) */
254 static int
255 textError (va_list ap)
257 fputs ("Error: ", stderr);
258 textStatus (ap);
259 return 0;
262 static int
263 guiError (va_list ap)
265 char *str = vstrmake (NULL, ap);
267 MessageBox (dialog, str, "Error", MB_ICONERROR | MB_OK);
268 free (str);
269 return 0;
272 /* report (R_FATAL, fmt, ...) */
273 static int
274 textFatal (va_list ap)
276 textError (ap);
277 exit (1);
280 static int
281 guiFatal (va_list ap)
283 guiError (ap);
284 exit (1);
287 /* report (R_ASK, type, fmt, ...) */
288 static int
289 textAsk (va_list ap)
291 int uType = va_arg (ap, int);
292 int ret = MBdefault (uType);
293 char *str = vstrmake (NULL, ap);
295 fprintf (stderr, "Question of type %d: %s\n"
296 "Returning default: %d\n", uType, str, ret);
297 free (str);
298 return ret;
301 static int
302 guiAsk (va_list ap)
304 int uType = va_arg (ap, int);
305 char *str = vstrmake (NULL, ap);
306 int ret = MessageBox (dialog, str, "Question",
307 MB_ICONQUESTION | uType);
309 free (str);
310 return ret;
313 static BOOL CALLBACK
314 EditTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
316 switch (msg) {
317 case WM_CHAR:
318 if (wParam == 8) break; /* backspace is OK */
319 if (GetWindowTextLengthA (hwnd) == MAXTAGLEN ||
320 !goodtagchar (wParam)) return TRUE;
321 break;
323 return CallWindowProcA (DefEditProc, hwnd, msg, wParam, lParam);
326 static INT_PTR CALLBACK
327 AskTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
329 int len;
331 switch (msg) {
332 case WM_INITDIALOG:
333 DefEditProc = (WNDPROC)SetWindowLongPtr
334 (GetDlgItem (hwnd, IDC_TAG), GWLP_WNDPROC, (LONG_PTR)EditTagProc);
335 return TRUE;
336 case WM_COMMAND:
337 switch (LOWORD (wParam)) {
338 case IDOK:
339 len = GetWindowTextLengthA (GetDlgItem (hwnd, IDC_TAG));
340 if(!len) {
341 report (R_WARNING, "You must enter a tag to continue");
342 return FALSE;
344 tag = xmalloc (len+1);
345 GetDlgItemTextA (hwnd, IDC_TAG, tag, len+1);
346 EndDialog (hwnd, IDOK);
347 return TRUE;
348 case IDABORT:
349 EndDialog (hwnd, IDABORT);
350 return TRUE;
353 return FALSE;
357 guiAskTag (void)
359 return DialogBox (GetModuleHandle (NULL),
360 MAKEINTRESOURCE (IDD_TAG),
361 dialog, AskTagProc);
364 /* Quiet functions */
365 static int
366 qNoOp (va_list ap)
368 return 0;
371 static int
372 qFatal (va_list ap)
374 exit (1);
377 static int
378 qAsk (va_list ap)
380 return MBdefault (va_arg (ap, int));
383 static INT_PTR CALLBACK
384 AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
386 switch (msg) {
387 case WM_COMMAND:
388 switch (LOWORD (wParam)) {
389 case IDCANCEL:
390 EndDialog (hwnd, IDCANCEL);
391 return TRUE;
394 return FALSE;
397 static INT_PTR CALLBACK
398 DlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
400 switch (msg) {
401 case WM_INITDIALOG:
402 SendMessage (hwnd, WM_SETICON, ICON_SMALL,
403 (LPARAM)LoadIcon (GetModuleHandle (NULL),
404 MAKEINTRESOURCE (IDI_WINE)));
405 SendMessage (hwnd, WM_SETICON, ICON_BIG,
406 (LPARAM)LoadIcon (GetModuleHandle (NULL),
407 MAKEINTRESOURCE (IDI_WINE)));
408 dialog = hwnd;
409 if (!SetEvent (initEvent)) {
410 report (R_STATUS, "Can't signal main thread: %d",
411 GetLastError ());
412 EndDialog (hwnd, 2);
414 return TRUE;
415 case WM_CLOSE:
416 EndDialog (hwnd, 3);
417 return TRUE;
418 case WM_COMMAND:
419 switch (LOWORD (wParam)) {
420 case IDHELP:
421 DialogBox (GetModuleHandle (NULL),
422 MAKEINTRESOURCE (IDD_ABOUT), hwnd, AboutProc);
423 return TRUE;
424 case IDABORT:
425 report (R_WARNING, "Not implemented");
426 return TRUE;
429 return FALSE;
432 static DWORD WINAPI
433 DlgThreadProc (LPVOID param)
435 int ret;
437 InitCommonControls ();
438 ret = DialogBox (GetModuleHandle (NULL),
439 MAKEINTRESOURCE (IDD_STATUS),
440 NULL, DlgProc);
441 switch (ret) {
442 case 0:
443 report (R_WARNING, "Invalid parent handle");
444 break;
445 case 1:
446 report (R_WARNING, "DialogBox failed: %d",
447 GetLastError ());
448 break;
449 case 3:
450 exit (0);
451 default:
452 report (R_STATUS, "Dialog exited: %d", ret);
454 return 0;
458 report (enum report_type t, ...)
460 typedef int r_fun_t (va_list);
462 va_list ap;
463 int ret = 0;
464 static r_fun_t * const text_funcs[] =
465 {textStatus, textProgress, textStep, textDelta,
466 textTag, textDir, textOut,
467 textWarning, textError, textFatal, textAsk};
468 static r_fun_t * const GUI_funcs[] =
469 {guiStatus, guiProgress, guiStep, guiDelta,
470 guiTag, guiDir, guiOut,
471 guiWarning, guiError, guiFatal, guiAsk};
472 static r_fun_t * const quiet_funcs[] =
473 {qNoOp, qNoOp, qNoOp, qNoOp,
474 qNoOp, qNoOp, qNoOp,
475 qNoOp, qNoOp, qFatal, qAsk};
476 static r_fun_t * const * funcs = NULL;
478 switch (t) {
479 case R_TEXTMODE:
480 funcs = text_funcs;
481 return 0;
482 case R_QUIET:
483 funcs = quiet_funcs;
484 return 0;
485 default:
486 break;
489 if (!funcs) {
490 HANDLE DlgThread;
491 DWORD DlgThreadID;
493 funcs = text_funcs;
494 initEvent = CreateEvent (NULL, FALSE, FALSE, NULL);
495 if (!initEvent)
496 report (R_STATUS, "Can't create event object: %d",
497 GetLastError ());
498 else {
499 DlgThread = CreateThread (NULL, 0, DlgThreadProc,
500 NULL, 0, &DlgThreadID);
501 if (!DlgThread)
502 report (R_STATUS, "Can't create GUI thread: %d",
503 GetLastError ());
504 else {
505 DWORD ret = WaitForSingleObject (initEvent, INFINITE);
506 switch (ret) {
507 case WAIT_OBJECT_0:
508 funcs = GUI_funcs;
509 break;
510 case WAIT_TIMEOUT:
511 report (R_STATUS, "GUI creation timed out");
512 break;
513 case WAIT_FAILED:
514 report (R_STATUS, "Wait for GUI failed: %d",
515 GetLastError ());
516 break;
517 default:
518 report (R_STATUS, "Wait returned %d",
519 ret);
520 break;
526 va_start (ap, t);
527 if (t < sizeof text_funcs / sizeof text_funcs[0] &&
528 t < sizeof GUI_funcs / sizeof GUI_funcs[0]) ret = funcs[t](ap);
529 else report (R_WARNING, "unimplemented report type: %d", t);
530 va_end (ap);
531 return ret;