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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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
);
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
));
340 tag
= xmalloc (len
+1);
341 GetDlgItemTextA (hwnd
, IDC_TAG
, tag
, len
+1);
342 EndDialog (hwnd
, IDOK
);
345 EndDialog (hwnd
, IDABORT
);
355 return DialogBox (GetModuleHandle (NULL
),
356 MAKEINTRESOURCE (IDD_TAG
),
360 /* Quiet functions */
376 return MBdefault (va_arg (ap
, int));
380 AboutProc (HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
384 switch (LOWORD (wParam
)) {
386 EndDialog (hwnd
, IDCANCEL
);
394 DlgProc (HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
398 SendMessage (hwnd
, WM_SETICON
, ICON_SMALL
,
399 (LPARAM
)LoadIcon (GetModuleHandle (NULL
),
400 MAKEINTRESOURCE (IDI_WINE
)));
401 SendMessage (hwnd
, WM_SETICON
, ICON_BIG
,
402 (LPARAM
)LoadIcon (GetModuleHandle (NULL
),
403 MAKEINTRESOURCE (IDI_WINE
)));
405 if (!SetEvent (initEvent
)) {
406 report (R_STATUS
, "Can't signal main thread: %d",
415 switch (LOWORD (wParam
)) {
417 DialogBox (GetModuleHandle (NULL
),
418 MAKEINTRESOURCE (IDD_ABOUT
), hwnd
, AboutProc
);
421 report (R_WARNING
, "Not implemented");
429 DlgThreadProc (LPVOID param
)
433 InitCommonControls ();
434 ret
= DialogBox (GetModuleHandle (NULL
),
435 MAKEINTRESOURCE (IDD_STATUS
),
439 report (R_WARNING
, "Invalid parent handle");
442 report (R_WARNING
, "DialogBox failed: %d",
448 report (R_STATUS
, "Dialog exited: %d", ret
);
454 report (enum report_type t
, ...)
456 typedef int r_fun_t (va_list);
460 static r_fun_t
* const text_funcs
[] =
461 {textStatus
, textProgress
, textStep
, textDelta
,
462 textTag
, textDir
, textOut
,
463 textWarning
, textError
, textFatal
, textAsk
};
464 static r_fun_t
* const GUI_funcs
[] =
465 {guiStatus
, guiProgress
, guiStep
, guiDelta
,
466 guiTag
, guiDir
, guiOut
,
467 guiWarning
, guiError
, guiFatal
, guiAsk
};
468 static r_fun_t
* const quiet_funcs
[] =
469 {qNoOp
, qNoOp
, qNoOp
, qNoOp
,
471 qNoOp
, qNoOp
, qFatal
, qAsk
};
472 static r_fun_t
* const * funcs
= NULL
;
490 initEvent
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
492 report (R_STATUS
, "Can't create event object: %d",
495 DlgThread
= CreateThread (NULL
, 0, DlgThreadProc
,
496 NULL
, 0, &DlgThreadID
);
498 report (R_STATUS
, "Can't create GUI thread: %d",
501 DWORD ret
= WaitForSingleObject (initEvent
, INFINITE
);
507 report (R_STATUS
, "GUI creation timed out");
510 report (R_STATUS
, "Wait for GUI failed: %d",
514 report (R_STATUS
, "Wait returned %d",
523 if (t
< sizeof text_funcs
/ sizeof text_funcs
[0] &&
524 t
< sizeof GUI_funcs
/ sizeof GUI_funcs
[0]) ret
= funcs
[t
](ap
);
525 else report (R_WARNING
, "unimplemented report type: %d", t
);