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
27 /* Event object to signal successful window creation to main thread.
29 static HANDLE initEvent;
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;
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},
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, ...) */
63 textStatus (va_list ap)
65 char *str = vstrmake (NULL, ap);
74 guiStatus (va_list ap)
77 char *str = vstrmake (&len, ap);
79 if (len > 128) str[129] = 0;
80 SetDlgItemText (dialog, IDC_SB, str);
85 /* report (R_PROGRESS, barnum, steps) */
87 textProgress (va_list ap)
89 progressGroup = va_arg (ap, int);
90 progressMax = va_arg (ap, int);
96 guiProgress (va_list ap)
101 progressGroup = va_arg (ap, int);
102 progressMax = max = va_arg (ap, int);
105 progressScale = (double)0xffff / max;
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);
115 /* report (R_STEP, fmt, ...) */
117 textStep (va_list ap)
119 char *str = vstrmake (NULL, ap);
123 fprintf (stderr, " (%d of %d)\n", progressCurr, progressMax);
131 const int pgID = IDC_ST0 + progressGroup * 2;
132 char *str = vstrmake (NULL, ap);
135 SetDlgItemText (dialog, pgID, str);
136 SendDlgItemMessage (dialog, pgID+1, PBM_SETPOS,
137 (WPARAM)(progressScale * progressCurr), 0);
142 /* report (R_DELTA, inc, fmt, ...) */
144 textDelta (va_list ap)
146 const int inc = va_arg (ap, int);
147 char *str = vstrmake (NULL, ap);
151 fprintf (stderr, " (%d of %d)\n", progressCurr, progressMax);
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);
164 SetDlgItemText (dialog, pgID, str);
165 SendDlgItemMessage (dialog, pgID+1, PBM_SETPOS,
166 (WPARAM)(progressScale * progressCurr), 0);
175 fputs ("Tag: ", stderr);
177 fputc ('\n', stderr);
184 SetDlgItemText (dialog, IDC_TAG, tag);
188 /* report (R_DIR, fmt, ...) */
192 char *str = vstrmake (NULL, ap);
194 fputs ("Temporary directory: ", stderr);
196 fputc ('\n', stderr);
204 char *str = vstrmake (NULL, ap);
206 SetDlgItemText (dialog, IDC_DIR, str);
211 /* report (R_OUT, fmt, ...) */
215 char *str = vstrmake (NULL, ap);
217 fputs ("Log file: ", stderr);
219 fputc ('\n', stderr);
227 char *str = vstrmake (NULL, ap);
229 SetDlgItemText (dialog, IDC_OUT, str);
234 /* report (R_WARNING, fmt, ...) */
236 textWarning (va_list ap)
238 fputs ("Warning: ", stderr);
244 guiWarning (va_list ap)
246 char *str = vstrmake (NULL, ap);
248 MessageBox (dialog, str, "Warning", MB_ICONWARNING | MB_OK);
253 /* report (R_ERROR, fmt, ...) */
255 textError (va_list ap)
257 fputs ("Error: ", stderr);
263 guiError (va_list ap)
265 char *str = vstrmake (NULL, ap);
267 MessageBox (dialog, str, "Error", MB_ICONERROR | MB_OK);
272 /* report (R_FATAL, fmt, ...) */
274 textFatal (va_list ap)
281 guiFatal (va_list ap)
287 /* report (R_ASK, type, fmt, ...) */
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);
304 int uType = va_arg (ap, int);
305 char *str = vstrmake (NULL, ap);
306 int ret = MessageBox (dialog, str, "Question",
307 MB_ICONQUESTION | uType);
314 EditTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
318 if (wParam == 8) break; /* backspace is OK */
319 if (GetWindowTextLengthA (hwnd) == MAXTAGLEN ||
320 !goodtagchar (wParam)) return TRUE;
323 return CallWindowProcA (DefEditProc, hwnd, msg, wParam, lParam);
326 static INT_PTR CALLBACK
327 AskTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
333 DefEditProc = (WNDPROC)SetWindowLongPtr
334 (GetDlgItem (hwnd, IDC_TAG), GWLP_WNDPROC, (LONG_PTR)EditTagProc);
337 switch (LOWORD (wParam)) {
339 len = GetWindowTextLengthA (GetDlgItem (hwnd, IDC_TAG));
341 report (R_WARNING, "You must enter a tag to continue");
344 tag = heap_alloc (len+1);
345 GetDlgItemTextA (hwnd, IDC_TAG, tag, len+1);
346 EndDialog (hwnd, IDOK);
349 EndDialog (hwnd, IDABORT);
359 return DialogBox (GetModuleHandle (NULL),
360 MAKEINTRESOURCE (IDD_TAG),
364 /* Quiet functions */
380 return MBdefault (va_arg (ap, int));
383 static INT_PTR CALLBACK
384 AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
388 switch (LOWORD (wParam)) {
390 EndDialog (hwnd, IDCANCEL);
397 static INT_PTR CALLBACK
398 DlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
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)));
409 if (!SetEvent (initEvent)) {
410 report (R_STATUS, "Can't signal main thread: %d",
419 switch (LOWORD (wParam)) {
421 DialogBox (GetModuleHandle (NULL),
422 MAKEINTRESOURCE (IDD_ABOUT), hwnd, AboutProc);
425 report (R_WARNING, "Not implemented");
433 DlgThreadProc (LPVOID param)
437 InitCommonControls ();
438 ret = DialogBox (GetModuleHandle (NULL),
439 MAKEINTRESOURCE (IDD_STATUS),
443 report (R_WARNING, "Invalid parent handle");
446 report (R_WARNING, "DialogBox failed: %d",
452 report (R_STATUS, "Dialog exited: %d", ret);
458 report (enum report_type t, ...)
460 typedef int r_fun_t (va_list);
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,
475 qNoOp, qNoOp, qFatal, qAsk};
476 static r_fun_t * const * funcs = NULL;
494 initEvent = CreateEvent (NULL, FALSE, FALSE, NULL);
496 report (R_STATUS, "Can't create event object: %d",
499 DlgThread = CreateThread (NULL, 0, DlgThreadProc,
500 NULL, 0, &DlgThreadID);
502 report (R_STATUS, "Can't create GUI thread: %d",
505 DWORD ret = WaitForSingleObject (initEvent, INFINITE);
511 report (R_STATUS, "GUI creation timed out");
514 report (R_STATUS, "Wait for GUI failed: %d",
518 report (R_STATUS, "Wait returned %d",
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);