1 /* Dialog box features module for the Midnight Commander
2 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * \brief Source: dialog box features module
34 #include "../src/tty/tty.h"
35 #include "../src/skin/skin.h"
36 #include "../src/tty/mouse.h"
37 #include "../src/tty/key.h"
39 #include "help.h" /* interactive_display() */
42 #include "execute.h" /* suspend_cmd() */
43 #include "main.h" /* fast_refresh */
45 #include "setup.h" /* mouse_close_dialog */
47 /* Color styles for normal and error dialogs */
48 int dialog_colors
[4];
51 /* Primitive way to check if the the current dialog is our dialog */
52 /* This is needed by async routines like load_prompt */
53 Dlg_head
*current_dlg
= 0;
55 /* A hook list for idle events */
58 /* left click outside of dialog closes it */
59 int mouse_close_dialog
= 0;
61 static void dlg_broadcast_msg_to (Dlg_head
* h
, widget_msg_t message
,
62 int reverse
, int flags
);
64 /* draw box in window */
66 draw_box (Dlg_head
*h
, int y
, int x
, int ys
, int xs
)
68 tty_draw_box (h
->y
+ y
, h
->x
+ x
, ys
, xs
);
72 widget_erase (Widget
*w
)
74 tty_fill_region (w
->y
, w
->x
, w
->lines
, w
->cols
, ' ');
78 dlg_erase (Dlg_head
*h
)
81 tty_fill_region (h
->y
, h
->x
, h
->lines
, h
->cols
, ' ');
85 init_widget (Widget
*w
, int y
, int x
, int lines
, int cols
,
86 callback_fn callback
, mouse_h mouse_handler
)
92 w
->callback
= callback
;
93 w
->mouse
= mouse_handler
;
96 /* Almost all widgets want to put the cursor in a suitable place */
97 w
->options
= W_WANT_CURSOR
;
100 /* Clean the dialog area, draw the frame and the title */
102 common_dialog_repaint (struct Dlg_head
*h
)
106 space
= (h
->flags
& DLG_COMPACT
) ? 0 : 1;
108 tty_setcolor (DLG_NORMALC (h
));
110 draw_box (h
, space
, space
, h
->lines
- 2 * space
, h
->cols
- 2 * space
);
113 tty_setcolor (DLG_HOT_NORMALC (h
));
114 dlg_move (h
, space
, (h
->cols
- str_term_width1 (h
->title
)) / 2);
115 tty_print_string (h
->title
);
119 /* this function allows to set dialog position */
121 dlg_set_position (Dlg_head
*h
, int y1
, int x1
, int y2
, int x2
)
123 /* save old positions, will be used to reposition childs */
125 int shift_x
, shift_y
, scale_x
, scale_y
;
127 /* save old positions, will be used to reposition childs */
138 /* values by which controls should be moved */
141 scale_x
= h
->cols
- oc
;
142 scale_y
= h
->lines
- ol
;
144 if (h
->current
== NULL
)
147 if ((shift_x
!= 0) || (shift_y
!= 0) || (scale_x
!= 0) || (scale_y
!= 0)) {
148 Widget
*c
= h
->current
;
151 /* there are, mainly, 2 generally possible
154 1. control sticks to one side - it
157 2. control sticks to two sides of
158 one direction - it should be sized */
163 int lines
= c
->lines
;
165 if ((c
->pos_flags
& WPOS_KEEP_LEFT
) && (c
->pos_flags
& WPOS_KEEP_RIGHT
)) {
168 } else if (c
->pos_flags
& WPOS_KEEP_LEFT
)
170 else if (c
->pos_flags
& WPOS_KEEP_RIGHT
)
171 x
+= shift_x
+ scale_x
;
173 if ((c
->pos_flags
& WPOS_KEEP_TOP
) && (c
->pos_flags
& WPOS_KEEP_BOTTOM
)) {
176 } else if (c
->pos_flags
& WPOS_KEEP_TOP
)
178 else if (c
->pos_flags
& WPOS_KEEP_BOTTOM
)
179 y
+= shift_y
+ scale_y
;
181 widget_set_size (c
, y
, x
, lines
, cols
);
184 } while (h
->current
!= c
);
188 /* this function sets only size, leaving positioning to automatic methods */
190 dlg_set_size (Dlg_head
*h
, int lines
, int cols
)
195 if (h
->flags
& DLG_CENTER
) {
196 y
= (LINES
- lines
) / 2;
197 x
= (COLS
- cols
) / 2;
200 if ((h
->flags
& DLG_TRYUP
) && (y
> 3))
203 dlg_set_position (h
, y
, x
, y
+ lines
, x
+ cols
);
206 /* Default dialog callback */
208 default_dlg_callback (Dlg_head
*h
, Widget
*sender
,
209 dlg_msg_t msg
, int parm
, void *data
)
217 if (h
->color
!= NULL
) {
218 common_dialog_repaint (h
);
221 return MSG_NOT_HANDLED
;
224 dlg_broadcast_msg_to (h
, WIDGET_IDLE
, 0, W_WANT_IDLE
);
228 /* this is default resizing mechanism */
229 /* the main idea of this code is to resize dialog
230 according to flags (if any of flags require automatic
231 resizing, like DLG_CENTER, end after that reposition
232 controls in dialog according to flags of widget) */
233 dlg_set_size (h
, h
->lines
, h
->cols
);
240 return MSG_NOT_HANDLED
;
244 create_dlg (int y1
, int x1
, int lines
, int cols
, const int *color_set
,
245 dlg_cb_fn callback
, const char *help_ctx
, const char *title
,
250 new_d
= g_new0 (Dlg_head
, 1);
251 if (color_set
!= NULL
) {
252 new_d
->color
= g_new (int, DLG_COLOR_NUM
);
253 memmove (new_d
->color
, color_set
, sizeof (int) * DLG_COLOR_NUM
);
255 new_d
->help_ctx
= help_ctx
;
256 new_d
->callback
= (callback
!= NULL
) ? callback
: default_dlg_callback
;
259 new_d
->flags
= flags
;
262 dlg_set_size (new_d
, lines
, cols
);
264 /* Strip existing spaces, add one space before and after the title */
268 t
= g_strstrip (g_strdup (title
));
270 new_d
->title
= g_strdup_printf (" %s ", t
);
278 dlg_set_default_colors (void)
280 dialog_colors
[0] = COLOR_NORMAL
;
281 dialog_colors
[1] = COLOR_FOCUS
;
282 dialog_colors
[2] = COLOR_HOT_NORMAL
;
283 dialog_colors
[3] = COLOR_HOT_FOCUS
;
285 alarm_colors
[0] = ERROR_COLOR
;
286 alarm_colors
[1] = REVERSE_COLOR
;
287 alarm_colors
[2] = ERROR_HOT_NORMAL
;
288 alarm_colors
[3] = ERROR_HOT_FOCUS
;
292 set_idle_proc (Dlg_head
*d
, int enable
)
295 d
->flags
|= DLG_WANT_IDLE
;
297 d
->flags
&= ~DLG_WANT_IDLE
;
301 * Insert widget to dialog before current widget. For dialogs populated
302 * from the bottom, make the widget current. Return widget number.
305 add_widget_autopos (Dlg_head
*h
, void *w
, widget_pos_flags_t pos_flags
)
307 Widget
*widget
= (Widget
*) w
;
309 /* Don't accept 0 widgets, and running dialogs */
310 if (!widget
|| h
->running
)
316 widget
->dlg_id
= h
->count
++;
317 widget
->pos_flags
= pos_flags
;
320 widget
->next
= h
->current
;
321 widget
->prev
= h
->current
->prev
;
322 h
->current
->prev
->next
= widget
;
323 h
->current
->prev
= widget
;
325 widget
->prev
= widget
;
326 widget
->next
= widget
;
329 if ((h
->flags
& DLG_REVERSE
) || !h
->current
)
332 return widget
->dlg_id
;
335 /* wrapper to simply add lefttop positioned controls */
337 add_widget (Dlg_head
*h
, void *w
)
339 return add_widget_autopos (h
, w
, WPOS_KEEP_LEFT
| WPOS_KEEP_TOP
);
343 do_complete_refresh (Dlg_head
*dlg
)
345 if (!dlg
->fullscreen
&& dlg
->parent
)
346 do_complete_refresh (dlg
->parent
);
358 dlg_redraw (current_dlg
);
360 do_complete_refresh (current_dlg
);
364 /* broadcast a message to all the widgets in a dialog that have
365 * the options set to flags. If flags is zero, the message is sent
369 dlg_broadcast_msg_to (Dlg_head
*h
, widget_msg_t message
, int reverse
,
372 Widget
*p
, *first
, *wi
;
378 first
= p
= h
->current
->prev
;
380 first
= p
= h
->current
->next
;
388 if (flags
== 0 || (flags
& wi
->options
))
389 send_message (wi
, message
, 0);
390 } while (first
!= p
);
393 /* broadcast a message to all the widgets in a dialog */
395 dlg_broadcast_msg (Dlg_head
*h
, widget_msg_t message
, int reverse
)
397 dlg_broadcast_msg_to (h
, message
, reverse
, 0);
401 dlg_focus (Dlg_head
*h
)
403 if ((h
->current
!= NULL
)
404 && (send_message (h
->current
, WIDGET_FOCUS
, 0) == MSG_HANDLED
)) {
405 h
->callback (h
, h
->current
, DLG_FOCUS
, 0, NULL
);
412 dlg_unfocus (Dlg_head
*h
)
414 if ((h
->current
!= NULL
)
415 && (send_message (h
->current
, WIDGET_UNFOCUS
, 0) == MSG_HANDLED
)) {
416 h
->callback (h
, h
->current
, DLG_UNFOCUS
, 0, NULL
);
423 /* Return true if the windows overlap */
424 int dlg_overlap (Widget
*a
, Widget
*b
)
426 if ((b
->x
>= a
->x
+ a
->cols
)
427 || (a
->x
>= b
->x
+ b
->cols
)
428 || (b
->y
>= a
->y
+ a
->lines
)
429 || (a
->y
>= b
->y
+ b
->lines
))
435 /* Find the widget with the given callback in the dialog h */
437 find_widget_type (const Dlg_head
*h
, callback_fn callback
)
441 if ((h
!= NULL
) && (h
->current
!= NULL
)) {
445 for (i
= 0, item
= h
->current
; i
< h
->count
; i
++, item
= item
->next
) {
446 if (item
->callback
== callback
) {
456 /* Find the widget with the given dialog id in the dialog h and select it */
458 dlg_select_by_id (const Dlg_head
*h
, int id
)
469 if (w
->dlg_id
== id
) {
474 } while (w
!= h
->current
);
477 dlg_select_widget(w_found
);
481 /* What to do if the requested widget doesn't take focus */
483 SELECT_NEXT
, /* go the the next widget */
484 SELECT_PREV
, /* go the the previous widget */
485 SELECT_EXACT
/* use current widget */
489 * Try to select another widget. If forward is set, follow tab order.
490 * Otherwise go to the previous widget.
493 do_select_widget (Dlg_head
*h
, Widget
*w
, select_dir_t dir
)
495 Widget
*w0
= h
->current
;
497 if (!dlg_unfocus (h
))
507 h
->current
= h
->current
->next
;
510 h
->current
= h
->current
->prev
;
517 } while (h
->current
!= w
);
519 if (dlg_overlap (w0
, h
->current
)) {
520 send_message (h
->current
, WIDGET_DRAW
, 0);
521 send_message (h
->current
, WIDGET_FOCUS
, 0);
527 * Try to select widget in the dialog.
530 dlg_select_widget (void *w
)
532 do_select_widget (((Widget
*) w
)->parent
, w
, SELECT_NEXT
);
536 /* Try to select previous widget in the tab order */
538 dlg_one_up (Dlg_head
*h
)
541 do_select_widget (h
, h
->current
->prev
, SELECT_PREV
);
545 /* Try to select next widget in the tab order */
547 dlg_one_down (Dlg_head
*h
)
550 do_select_widget (h
, h
->current
->next
, SELECT_NEXT
);
554 void update_cursor (Dlg_head
*h
)
556 Widget
*p
= h
->current
;
559 if (p
->options
& W_WANT_CURSOR
)
560 send_message (p
, WIDGET_CURSOR
, 0);
562 while ((p
= p
->next
) != h
->current
)
563 if (p
->options
& W_WANT_CURSOR
)
564 if (send_message (p
, WIDGET_CURSOR
, 0) == MSG_HANDLED
)
569 /* Redraw the widgets in reverse order, leaving the current widget
573 dlg_redraw (Dlg_head
*h
)
575 h
->callback (h
, NULL
, DLG_DRAW
, 0, NULL
);
576 dlg_broadcast_msg (h
, WIDGET_DRAW
, 1);
581 dlg_stop (Dlg_head
*h
)
587 dialog_handle_key (Dlg_head
*h
, int d_key
)
589 if (is_abort_char (d_key
)) {
590 h
->ret_value
= B_CANCEL
;
598 h
->ret_value
= B_ENTER
;
613 interactive_display (NULL
, h
->help_ctx
);
626 /* Use this if the refreshes fail */
629 #endif /* HAVE_SLANG */
638 dlg_try_hotkey (Dlg_head
*h
, int d_key
)
644 if (h
->current
== NULL
)
645 return MSG_NOT_HANDLED
;
648 * Explanation: we don't send letter hotkeys to other widgets if
649 * the currently selected widget is an input line
652 if (h
->current
->options
& W_IS_INPUT
) {
653 /* skip ascii control characters, anything else can valid character in
655 if (d_key
>= 32 && d_key
< 256)
656 return MSG_NOT_HANDLED
;
659 /* If it's an alt key, send the message */
660 c
= d_key
& ~ALT (0);
661 if (d_key
& ALT (0) && g_ascii_isalpha (c
))
662 d_key
= g_ascii_tolower (c
);
664 handled
= MSG_NOT_HANDLED
;
665 if (h
->current
->options
& W_WANT_HOTKEY
)
666 handled
= send_message (h
->current
, WIDGET_HOTKEY
, d_key
);
668 /* If not used, send hotkey to other widgets */
669 if (handled
== MSG_HANDLED
)
672 hot_cur
= h
->current
->next
;
674 /* send it to all widgets */
675 while (h
->current
!= hot_cur
&& handled
== MSG_NOT_HANDLED
) {
676 if (hot_cur
->options
& W_WANT_HOTKEY
)
677 handled
= send_message (hot_cur
, WIDGET_HOTKEY
, d_key
);
679 if (handled
== MSG_NOT_HANDLED
)
680 hot_cur
= hot_cur
->next
;
683 if (handled
== MSG_HANDLED
)
684 do_select_widget (h
, hot_cur
, SELECT_EXACT
);
690 dlg_key_event (Dlg_head
*h
, int d_key
)
694 if (h
->current
== NULL
)
697 /* TAB used to cycle */
698 if (!(h
->flags
& DLG_WANT_TAB
)) {
702 } else if (d_key
== KEY_BTAB
) {
708 /* first can dlg_callback handle the key */
709 handled
= h
->callback (h
, NULL
, DLG_KEY
, d_key
, NULL
);
711 /* next try the hotkey */
712 if (handled
== MSG_NOT_HANDLED
)
713 handled
= dlg_try_hotkey (h
, d_key
);
715 if (handled
== MSG_HANDLED
)
716 h
->callback (h
, NULL
, DLG_HOTKEY_HANDLED
, 0, NULL
);
718 /* not used - then try widget_callback */
719 handled
= send_message (h
->current
, WIDGET_KEY
, d_key
);
721 /* not used- try to use the unhandled case */
722 if (handled
== MSG_NOT_HANDLED
)
723 handled
= h
->callback (h
, NULL
, DLG_UNHANDLED_KEY
, d_key
, NULL
);
725 if (handled
== MSG_NOT_HANDLED
)
726 dialog_handle_key (h
, d_key
);
728 h
->callback (h
, NULL
, DLG_POST_KEY
, d_key
, NULL
);
732 dlg_mouse_event (Dlg_head
* h
, Gpm_Event
* event
)
735 Widget
*starting_widget
= h
->current
;
740 /* close the dialog by mouse click out of dialog area */
741 if (mouse_close_dialog
&& !h
->fullscreen
742 && ((event
->buttons
& GPM_B_LEFT
) != 0) && ((event
->type
& GPM_DOWN
) != 0) /* left click */
743 && !((x
> h
->x
) && (x
<= h
->x
+ h
->cols
) && (y
> h
->y
) && (y
<= h
->y
+ h
->lines
))) {
744 h
->ret_value
= B_CANCEL
;
749 item
= starting_widget
;
756 if ((x
> widget
->x
) && (x
<= widget
->x
+ widget
->cols
)
757 && (y
> widget
->y
) && (y
<= widget
->y
+ widget
->lines
)) {
759 new_event
.x
-= widget
->x
;
760 new_event
.y
-= widget
->y
;
762 if (widget
->mouse
!= NULL
)
763 return widget
->mouse (&new_event
, widget
);
765 } while (item
!= starting_widget
);
770 /* Run dialog routines */
772 /* Init the process */
774 init_dlg (Dlg_head
*h
)
776 /* Initialize dialog manager and widgets */
777 h
->callback (h
, NULL
, DLG_INIT
, 0, NULL
);
778 dlg_broadcast_msg (h
, WIDGET_INIT
, 0);
780 if (h
->x
== 0 && h
->y
== 0 && h
->cols
== COLS
&& h
->lines
== LINES
)
783 h
->parent
= current_dlg
;
786 /* Initialize the mouse status */
787 h
->mouse_status
= MOU_NORMAL
;
789 /* Select the first widget that takes focus */
790 while (!dlg_focus (h
) && h
->current
)
791 h
->current
= h
->current
->next
;
793 /* Redraw the screen */
800 /* Shutdown the run_dlg */
802 dlg_run_done (Dlg_head
*h
)
804 if (h
->current
!= NULL
)
805 h
->callback (h
, h
->current
, DLG_END
, 0, NULL
);
807 current_dlg
= h
->parent
;
811 dlg_process_event (Dlg_head
*h
, int key
, Gpm_Event
*event
)
814 if (tty_got_interrupt ())
821 h
->mouse_status
= dlg_mouse_event (h
, event
);
823 dlg_key_event (h
, key
);
827 frontend_run_dlg (Dlg_head
*h
)
835 change_screen_size ();
839 execute_hooks (idle_hook
);
841 while ((h
->flags
& DLG_WANT_IDLE
) && is_idle ())
842 h
->callback (h
, NULL
, DLG_IDLE
, 0, NULL
);
844 /* Allow terminating the dialog from the idle handler */
851 /* Clear interrupt flag */
852 tty_got_interrupt ();
853 d_key
= tty_get_event (&event
, h
->mouse_status
== MOU_REPEAT
, TRUE
);
855 dlg_process_event (h
, d_key
, &event
);
858 h
->callback (h
, NULL
, DLG_VALIDATE
, 0, NULL
);
862 /* Standard run dialog routine
863 * We have to keep this routine small so that we can duplicate it's
864 * behavior on complex routines like the file routines, this way,
865 * they can call the dlg_process_event without rewriting all the code
867 int run_dlg (Dlg_head
*h
)
870 frontend_run_dlg (h
);
876 destroy_dlg (Dlg_head
*h
)
881 dlg_broadcast_msg (h
, WIDGET_DESTROY
, 0);
883 for (i
= 0; i
< h
->count
; i
++) {
895 void widget_set_size (Widget
*widget
, int y
, int x
, int lines
, int cols
)
900 widget
->lines
= lines
;
901 send_message (widget
, WIDGET_RESIZED
, 0 /* unused */);
904 /* Replace widget old_w for widget new_w in the dialog */
906 dlg_replace_widget (Widget
*old_w
, Widget
*new_w
)
908 Dlg_head
*h
= old_w
->parent
;
909 int should_focus
= 0;
914 if (old_w
== h
->current
)
918 new_w
->dlg_id
= old_w
->dlg_id
;
920 if (old_w
== old_w
->next
) {
921 /* just one widget */
925 new_w
->prev
= old_w
->prev
;
926 new_w
->next
= old_w
->next
;
927 old_w
->prev
->next
= new_w
;
928 old_w
->next
->prev
= new_w
;
934 send_message (old_w
, WIDGET_DESTROY
, 0);
935 send_message (new_w
, WIDGET_INIT
, 0);
938 dlg_select_widget (new_w
);
940 send_message (new_w
, WIDGET_DRAW
, 0);