(query_dialog): add horizontal line.
[midnight-commander.git] / lib / widget / wtools.c
blobec1b062306d40bc4fe46837b0af6bd3751fc01c2
1 /*
2 Widget based utility functions.
4 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
6 The Free Software Foundation, Inc.
8 Authors:
9 Miguel de Icaza, 1994, 1995, 1996
10 Radek Doulik, 1994, 1995
11 Jakub Jelinek, 1995
12 Andrej Borsenkow, 1995
13 Andrew Borodin <aborodin@vmail.ru>, 2009, 2010, 2012
15 This file is part of the Midnight Commander.
17 The Midnight Commander is free software: you can redistribute it
18 and/or modify it under the terms of the GNU General Public License as
19 published by the Free Software Foundation, either version 3 of the License,
20 or (at your option) any later version.
22 The Midnight Commander is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 /** \file wtools.c
32 * \brief Source: widget based utility functions
35 #include <config.h>
37 #include <stdarg.h>
38 #include <stdlib.h>
40 #include "lib/global.h"
41 #include "lib/tty/tty.h"
42 #include "lib/tty/key.h" /* tty_getch() */
43 #include "lib/strutil.h"
44 #include "lib/util.h" /* tilde_expand() */
45 #include "lib/widget.h"
46 #include "lib/event.h" /* mc_event_raise() */
48 /*** global variables ****************************************************************************/
50 /*** file scope macro definitions ****************************************************************/
52 /*** file scope type declarations ****************************************************************/
54 /*** file scope variables ************************************************************************/
56 static Dlg_head *last_query_dlg;
58 static int sel_pos = 0;
60 /*** file scope functions ************************************************************************/
61 /* --------------------------------------------------------------------------------------------- */
63 /** default query callback, used to reposition query */
65 static cb_ret_t
66 default_query_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
68 switch (msg)
70 case DLG_RESIZE:
71 if ((h->flags & DLG_CENTER) == 0)
73 Widget *wh = WIDGET (h);
74 Dlg_head *prev_dlg = NULL;
75 int ypos, xpos;
77 /* get dialog under h */
78 if (top_dlg != NULL)
80 if (top_dlg->data != (void *) h)
81 prev_dlg = (Dlg_head *) top_dlg->data;
82 else
84 GList *p;
86 /* Top dialog is current if it is visible.
87 Get previous dialog in stack */
88 p = g_list_next (top_dlg);
89 if (p != NULL)
90 prev_dlg = (Dlg_head *) p->data;
94 /* if previous dialog is not fullscreen'd -- overlap it */
95 if (prev_dlg == NULL || prev_dlg->fullscreen)
96 ypos = LINES / 3 - (wh->lines - 3) / 2;
97 else
98 ypos = WIDGET (prev_dlg)->y + 2;
100 xpos = COLS / 2 - wh->cols / 2;
102 /* set position */
103 dlg_set_position (h, ypos, xpos, ypos + wh->lines, xpos + wh->cols);
105 return MSG_HANDLED;
107 /* fallthrough */
109 default:
110 return default_dlg_callback (h, sender, msg, parm, data);
114 /* --------------------------------------------------------------------------------------------- */
115 /** Create message dialog */
117 static struct Dlg_head *
118 do_create_message (int flags, const char *title, const char *text)
120 char *p;
121 Dlg_head *d;
123 /* Add empty lines before and after the message */
124 p = g_strconcat ("\n", text, "\n", (char *) NULL);
125 query_dialog (title, p, flags, 0);
126 d = last_query_dlg;
128 /* do resize before initing and running */
129 default_query_callback (d, NULL, DLG_RESIZE, 0, NULL);
131 init_dlg (d);
132 g_free (p);
134 return d;
137 /* --------------------------------------------------------------------------------------------- */
139 * Show message dialog. Dismiss it when any key is pressed.
140 * Not safe to call from background.
143 static void
144 fg_message (int flags, const char *title, const char *text)
146 Dlg_head *d;
148 d = do_create_message (flags, title, text);
149 tty_getch ();
150 dlg_run_done (d);
151 destroy_dlg (d);
155 /* --------------------------------------------------------------------------------------------- */
156 /** Show message box from background */
158 #ifdef ENABLE_BACKGROUND
159 static void
160 bg_message (int dummy, int *flags, char *title, const char *text)
162 (void) dummy;
163 title = g_strconcat (_("Background process:"), " ", title, (char *) NULL);
164 fg_message (*flags, title, text);
165 g_free (title);
167 #endif /* ENABLE_BACKGROUND */
169 /* --------------------------------------------------------------------------------------------- */
172 * Show dialog, not background safe.
174 * If the arguments "header" and "text" should be translated,
175 * that MUST be done by the caller of fg_input_dialog_help().
177 * The argument "history_name" holds the name of a section
178 * in the history file. Data entered in the input field of
179 * the dialog box will be stored there.
182 static char *
183 fg_input_dialog_help (const char *header, const char *text, const char *help,
184 const char *history_name, const char *def_text, gboolean strip_password)
186 char *p_text;
187 char histname[64] = "inp|";
188 int flags = strip_password ? 4 : 0;
189 char *my_str;
190 int ret;
192 /* label text */
193 p_text = g_strstrip (g_strdup (text));
195 /* input history */
196 if (history_name != NULL && *history_name != '\0')
197 g_strlcpy (histname + 3, history_name, sizeof (histname) - 3);
199 /* The special value of def_text is used to identify password boxes
200 and hide characters with "*". Don't save passwords in history! */
201 if (def_text == INPUT_PASSWORD)
203 flags = 1;
204 histname[3] = '\0';
205 def_text = "";
209 quick_widget_t quick_widgets[] = {
210 /* *INDENT-OFF* */
211 QUICK_LABELED_INPUT (p_text, input_label_above, def_text, flags, histname, &my_str,
212 NULL),
213 QUICK_BUTTONS_OK_CANCEL,
214 QUICK_END
215 /* *INDENT-ON* */
218 quick_dialog_t qdlg = {
219 -1, -1, COLS / 2, header,
220 help, quick_widgets, NULL, NULL
223 ret = quick_dialog (&qdlg);
226 g_free (p_text);
228 return (ret != B_CANCEL) ? my_str : NULL;
231 /* --------------------------------------------------------------------------------------------- */
233 #ifdef ENABLE_BACKGROUND
234 static int
235 wtools_parent_call (void *routine, gpointer ctx, int argc, ...)
237 ev_background_parent_call_t event_data;
239 event_data.routine = routine;
240 event_data.ctx = ctx;
241 event_data.argc = argc;
242 va_start (event_data.ap, argc);
243 mc_event_raise (MCEVENT_GROUP_CORE, "background_parent_call", (gpointer) & event_data);
244 va_end (event_data.ap);
245 return event_data.ret.i;
248 /* --------------------------------------------------------------------------------------------- */
250 static char *
251 wtools_parent_call_string (void *routine, int argc, ...)
253 ev_background_parent_call_t event_data;
255 event_data.routine = routine;
256 event_data.argc = argc;
257 va_start (event_data.ap, argc);
258 mc_event_raise (MCEVENT_GROUP_CORE, "background_parent_call_string", (gpointer) & event_data);
259 va_end (event_data.ap);
260 return event_data.ret.s;
262 #endif /* ENABLE_BACKGROUND */
264 /* --------------------------------------------------------------------------------------------- */
265 /*** public functions ****************************************************************************/
266 /* --------------------------------------------------------------------------------------------- */
268 /** Used to ask questions to the user */
270 query_dialog (const char *header, const char *text, int flags, int count, ...)
272 va_list ap;
273 Dlg_head *query_dlg;
274 WButton *button;
275 WButton *defbutton = NULL;
276 int win_len = 0;
277 int i;
278 int result = -1;
279 int cols, lines;
280 char *cur_name;
281 const int *query_colors = (flags & D_ERROR) != 0 ? alarm_colors : dialog_colors;
282 dlg_flags_t dlg_flags = (flags & D_CENTER) != 0 ? (DLG_CENTER | DLG_TRYUP) : DLG_NONE;
284 if (header == MSG_ERROR)
285 header = _("Error");
287 if (count > 0)
289 va_start (ap, count);
290 for (i = 0; i < count; i++)
292 char *cp = va_arg (ap, char *);
293 win_len += str_term_width1 (cp) + 6;
294 if (strchr (cp, '&') != NULL)
295 win_len--;
297 va_end (ap);
300 /* count coordinates */
301 str_msg_term_size (text, &lines, &cols);
302 cols = 6 + max (win_len, max (str_term_width1 (header), cols));
303 lines += 4 + (count > 0 ? 2 : 0);
305 /* prepare dialog */
306 query_dlg =
307 create_dlg (TRUE, 0, 0, lines, cols, query_colors, default_query_callback, NULL,
308 "[QueryBox]", header, dlg_flags);
310 if (count > 0)
312 add_widget (query_dlg, label_new (2, 3, text));
314 add_widget (query_dlg, hline_new (lines - 4, -1, -1));
316 cols = (cols - win_len - 2) / 2 + 2;
317 va_start (ap, count);
318 for (i = 0; i < count; i++)
320 int xpos;
322 cur_name = va_arg (ap, char *);
323 xpos = str_term_width1 (cur_name) + 6;
324 if (strchr (cur_name, '&') != NULL)
325 xpos--;
327 button = button_new (lines - 3, cols, B_USER + i, NORMAL_BUTTON, cur_name, 0);
328 add_widget (query_dlg, button);
329 cols += xpos;
330 if (i == sel_pos)
331 defbutton = button;
333 va_end (ap);
336 /* do resize before running and selecting any widget */
337 default_query_callback (query_dlg, NULL, DLG_RESIZE, 0, NULL);
339 if (defbutton)
340 dlg_select_widget (defbutton);
342 /* run dialog and make result */
343 switch (run_dlg (query_dlg))
345 case B_CANCEL:
346 break;
347 default:
348 result = query_dlg->ret_value - B_USER;
351 /* free used memory */
352 destroy_dlg (query_dlg);
354 else
356 add_widget (query_dlg, label_new (2, 3, text));
357 add_widget (query_dlg, button_new (0, 0, 0, HIDDEN_BUTTON, "-", 0));
358 last_query_dlg = query_dlg;
360 sel_pos = 0;
361 return result;
364 /* --------------------------------------------------------------------------------------------- */
366 void
367 query_set_sel (int new_sel)
369 sel_pos = new_sel;
372 /* --------------------------------------------------------------------------------------------- */
374 * Create message dialog. The caller must call dlg_run_done() and
375 * destroy_dlg() to dismiss it. Not safe to call from background.
378 struct Dlg_head *
379 create_message (int flags, const char *title, const char *text, ...)
381 va_list args;
382 Dlg_head *d;
383 char *p;
385 va_start (args, text);
386 p = g_strdup_vprintf (text, args);
387 va_end (args);
389 d = do_create_message (flags, title, p);
390 g_free (p);
392 return d;
395 /* --------------------------------------------------------------------------------------------- */
396 /** Show message box, background safe */
398 void
399 message (int flags, const char *title, const char *text, ...)
401 char *p;
402 va_list ap;
404 va_start (ap, text);
405 p = g_strdup_vprintf (text, ap);
406 va_end (ap);
408 if (title == MSG_ERROR)
409 title = _("Error");
411 #ifdef ENABLE_BACKGROUND
412 if (mc_global.we_are_background)
414 union
416 void *p;
417 void (*f) (int, int *, char *, const char *);
418 } func;
419 func.f = bg_message;
421 wtools_parent_call (func.p, NULL, 3, sizeof (flags), &flags, strlen (title), title,
422 strlen (p), p);
424 else
425 #endif /* ENABLE_BACKGROUND */
426 fg_message (flags, title, p);
428 g_free (p);
431 /* --------------------------------------------------------------------------------------------- */
433 * Show input dialog, background safe.
435 * If the arguments "header" and "text" should be translated,
436 * that MUST be done by the caller of these wrappers.
439 char *
440 input_dialog_help (const char *header, const char *text, const char *help,
441 const char *history_name, const char *def_text, gboolean strip_password)
443 #ifdef ENABLE_BACKGROUND
444 if (mc_global.we_are_background)
446 union
448 void *p;
449 char *(*f) (const char *, const char *, const char *, const char *, const char *,
450 gboolean);
451 } func;
452 func.f = fg_input_dialog_help;
453 return wtools_parent_call_string (func.p, 6,
454 strlen (header), header, strlen (text),
455 text, strlen (help), help,
456 strlen (history_name), history_name,
457 strlen (def_text), def_text,
458 sizeof (gboolean), strip_password);
460 else
461 #endif /* ENABLE_BACKGROUND */
462 return fg_input_dialog_help (header, text, help, history_name, def_text, strip_password);
465 /* --------------------------------------------------------------------------------------------- */
466 /** Show input dialog with default help, background safe */
468 char *
469 input_dialog (const char *header, const char *text, const char *history_name, const char *def_text)
471 return input_dialog_help (header, text, "[Input Line Keys]", history_name, def_text, FALSE);
474 /* --------------------------------------------------------------------------------------------- */
476 char *
477 input_expand_dialog (const char *header, const char *text,
478 const char *history_name, const char *def_text)
480 char *result;
481 char *expanded;
483 result = input_dialog (header, text, history_name, def_text);
484 if (result)
486 expanded = tilde_expand (result);
487 g_free (result);
488 return expanded;
490 return result;
493 /* --------------------------------------------------------------------------------------------- */