2 Widgets for the Midnight Commander
4 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
5 2004, 2005, 2006, 2007, 2009, 2010, 2011
6 The Free Software Foundation, Inc.
9 Radek Doulik, 1994, 1995
10 Miguel de Icaza, 1994, 1995
12 Andrej Borsenkow, 1996
14 Andrew Borodin <aborodin@vmail.ru>, 2009, 2010
16 This file is part of the Midnight Commander.
18 The Midnight Commander is free software: you can redistribute it
19 and/or modify it under the terms of the GNU General Public License as
20 published by the Free Software Foundation, either version 3 of the License,
21 or (at your option) any later version.
23 The Midnight Commander is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with this program. If not, see <http://www.gnu.org/licenses/>.
33 * \brief Source: WListbox widget
40 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/tty/mouse.h"
45 #include "lib/strutil.h"
46 #include "lib/util.h" /* Q_() */
47 #include "lib/keybind.h" /* global_keymap_t */
48 #include "lib/widget.h"
50 /*** global variables ****************************************************************************/
52 const global_keymap_t
*listbox_map
= NULL
;
54 /*** file scope macro definitions ****************************************************************/
56 /*** file scope type declarations ****************************************************************/
58 /*** file scope variables ************************************************************************/
60 /*** file scope functions ************************************************************************/
63 listbox_entry_cmp (const void *a
, const void *b
)
65 const WLEntry
*ea
= (const WLEntry
*) a
;
66 const WLEntry
*eb
= (const WLEntry
*) b
;
68 return strcmp (ea
->text
, eb
->text
);
71 /* --------------------------------------------------------------------------------------------- */
74 listbox_entry_free (void *data
)
81 /* --------------------------------------------------------------------------------------------- */
84 listbox_drawscroll (WListbox
* l
)
86 Widget
*w
= WIDGET (l
);
87 int max_line
= w
->lines
- 1;
91 /* Are we at the top? */
92 widget_move (w
, 0, w
->cols
);
94 tty_print_one_vline (TRUE
);
98 /* Are we at the bottom? */
99 widget_move (w
, max_line
, w
->cols
);
100 if ((l
->top
+ w
->lines
== l
->count
) || (w
->lines
>= l
->count
))
101 tty_print_one_vline (TRUE
);
103 tty_print_char ('v');
105 /* Now draw the nice relative pointer */
107 line
= 1 + ((l
->pos
* (w
->lines
- 2)) / l
->count
);
109 for (i
= 1; i
< max_line
; i
++)
111 widget_move (w
, i
, w
->cols
);
113 tty_print_one_vline (TRUE
);
115 tty_print_char ('*');
119 /* --------------------------------------------------------------------------------------------- */
122 listbox_draw (WListbox
* l
, gboolean focused
)
124 Widget
*w
= WIDGET (l
);
125 const WDialog
*h
= w
->owner
;
126 const gboolean disabled
= (w
->options
& W_DISABLED
) != 0;
127 const int normalc
= disabled
? DISABLED_COLOR
: h
->color
[DLG_COLOR_NORMAL
];
132 ? h
->color
[DLG_COLOR_HOT_FOCUS
]
133 : h
->color
[DLG_COLOR_FOCUS
];
141 le
= g_list_nth (l
->list
, l
->top
);
142 /* pos = (le == NULL) ? 0 : g_list_position (l->list, le); */
143 pos
= (le
== NULL
) ? 0 : l
->top
;
145 for (i
= 0; i
< w
->lines
; i
++)
149 /* Display the entry */
150 if (pos
== l
->pos
&& sel_line
== -1)
156 tty_setcolor (normalc
);
158 widget_move (l
, i
, 1);
160 if ((i
> 0 && pos
>= l
->count
) || (l
->list
== NULL
) || (le
== NULL
))
164 WLEntry
*e
= LENTRY (le
->data
);
167 le
= g_list_next (le
);
171 tty_print_string (str_fit_to_term (text
, w
->cols
- 2, J_LEFT_FIT
));
174 l
->cursor_y
= sel_line
;
176 if (l
->scrollbar
&& (l
->count
> w
->lines
))
178 tty_setcolor (normalc
);
179 listbox_drawscroll (l
);
183 /* --------------------------------------------------------------------------------------------- */
186 listbox_check_hotkey (WListbox
* l
, int key
)
191 for (i
= 0, le
= l
->list
; le
!= NULL
; i
++, le
= g_list_next (le
))
193 WLEntry
*e
= LENTRY (le
->data
);
195 if (e
->hotkey
== key
)
202 /* --------------------------------------------------------------------------------------------- */
204 /* Selects from base the pos element */
206 listbox_select_pos (WListbox
* l
, int base
, int pos
)
208 int last
= l
->count
- 1;
211 base
= min (base
, last
);
216 /* --------------------------------------------------------------------------------------------- */
219 listbox_fwd (WListbox
* l
)
221 if (l
->pos
+ 1 >= l
->count
)
222 listbox_select_first (l
);
224 listbox_select_entry (l
, l
->pos
+ 1);
227 /* --------------------------------------------------------------------------------------------- */
230 listbox_back (WListbox
* l
)
233 listbox_select_last (l
);
235 listbox_select_entry (l
, l
->pos
- 1);
238 /* --------------------------------------------------------------------------------------------- */
241 listbox_execute_cmd (WListbox
* l
, unsigned long command
)
243 cb_ret_t ret
= MSG_HANDLED
;
245 Widget
*w
= WIDGET (l
);
256 listbox_select_first (l
);
259 listbox_select_last (l
);
262 for (i
= 0; (i
< w
->lines
- 1) && (l
->pos
> 0); i
++)
266 for (i
= 0; (i
< w
->lines
- 1) && (l
->pos
< l
->count
- 1); i
++)
272 gboolean is_last
= (l
->pos
+ 1 >= l
->count
);
273 gboolean is_more
= (l
->top
+ w
->lines
>= l
->count
);
275 listbox_remove_current (l
);
276 if ((l
->top
> 0) && (is_last
|| is_more
))
281 if (l
->deletable
&& mc_global
.widget
.confirm_history_cleanup
282 /* TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix */
283 && (query_dialog (Q_ ("DialogTitle|History cleanup"),
284 _("Do you want clean this history?"),
285 D_ERROR
, 2, _("&Yes"), _("&No")) == 0))
286 listbox_remove_list (l
);
289 ret
= MSG_NOT_HANDLED
;
295 /* --------------------------------------------------------------------------------------------- */
297 /* Return MSG_HANDLED if we want a redraw */
299 listbox_key (WListbox
* l
, int key
)
301 unsigned long command
;
304 return MSG_NOT_HANDLED
;
306 /* focus on listbox item N by '0'..'9' keys */
307 if (key
>= '0' && key
<= '9')
310 listbox_select_entry (l
, key
- '0');
312 /* need scroll to item? */
313 if (abs (oldpos
- l
->pos
) > WIDGET (l
)->lines
)
319 command
= keybind_lookup_keymap_command (listbox_map
, key
);
320 if (command
== CK_IgnoreKey
)
321 return MSG_NOT_HANDLED
;
322 return listbox_execute_cmd (l
, command
);
325 /* --------------------------------------------------------------------------------------------- */
327 /* Listbox item adding function */
329 listbox_append_item (WListbox
* l
, WLEntry
* e
, listbox_append_t pos
)
333 case LISTBOX_APPEND_AT_END
:
334 l
->list
= g_list_append (l
->list
, e
);
337 case LISTBOX_APPEND_BEFORE
:
338 l
->list
= g_list_insert_before (l
->list
, g_list_nth (l
->list
, l
->pos
), e
);
343 case LISTBOX_APPEND_AFTER
:
344 l
->list
= g_list_insert (l
->list
, e
, l
->pos
+ 1);
347 case LISTBOX_APPEND_SORTED
:
348 l
->list
= g_list_insert_sorted (l
->list
, e
, (GCompareFunc
) listbox_entry_cmp
);
358 /* --------------------------------------------------------------------------------------------- */
361 listbox_destroy (WListbox
* l
)
363 listbox_remove_list (l
);
366 /* --------------------------------------------------------------------------------------------- */
369 listbox_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
371 WListbox
*l
= LISTBOX (w
);
372 WDialog
*h
= w
->owner
;
384 pos
= listbox_check_hotkey (l
, parm
);
386 return MSG_NOT_HANDLED
;
388 listbox_select_entry (l
, pos
);
389 send_message (h
, w
, MSG_ACTION
, l
->pos
, NULL
);
391 if (l
->callback
!= NULL
)
392 action
= l
->callback (l
);
394 action
= LISTBOX_DONE
;
396 if (action
== LISTBOX_DONE
)
398 h
->ret_value
= B_ENTER
;
406 ret_code
= listbox_key (l
, parm
);
407 if (ret_code
!= MSG_NOT_HANDLED
)
409 listbox_draw (l
, TRUE
);
410 send_message (h
, w
, MSG_ACTION
, l
->pos
, NULL
);
415 return listbox_execute_cmd (l
, parm
);
418 widget_move (l
, l
->cursor_y
, 0);
419 send_message (h
, w
, MSG_ACTION
, l
->pos
, NULL
);
425 listbox_draw (l
, msg
!= MSG_UNFOCUS
);
436 return widget_default_callback (w
, sender
, msg
, parm
, data
);
440 /* --------------------------------------------------------------------------------------------- */
443 listbox_event (Gpm_Event
* event
, void *data
)
445 WListbox
*l
= LISTBOX (data
);
446 Widget
*w
= WIDGET (data
);
448 if (!mouse_global_in_widget (event
, w
))
449 return MOU_UNHANDLED
;
452 if ((event
->type
& GPM_DOWN
) != 0)
453 dlg_select_widget (l
);
458 if ((event
->type
& (GPM_DOWN
| GPM_DRAG
)) != 0)
460 int ret
= MOU_REPEAT
;
464 local
= mouse_get_local (event
, w
);
466 for (i
= -local
.y
; i
>= 0; i
--)
468 else if (local
.y
> w
->lines
)
469 for (i
= local
.y
- w
->lines
; i
> 0; i
--)
471 else if ((local
.buttons
& GPM_B_UP
) != 0)
476 else if ((local
.buttons
& GPM_B_DOWN
) != 0)
482 listbox_select_entry (l
, listbox_select_pos (l
, l
->top
, local
.y
- 1));
484 /* We need to refresh ourselves since the dialog manager doesn't */
485 /* know about this event */
486 listbox_draw (l
, TRUE
);
491 if ((event
->type
& (GPM_DOUBLE
| GPM_UP
)) == (GPM_UP
| GPM_DOUBLE
))
496 local
= mouse_get_local (event
, w
);
497 dlg_select_widget (l
);
498 listbox_select_entry (l
, listbox_select_pos (l
, l
->top
, local
.y
- 1));
500 if (l
->callback
!= NULL
)
501 action
= l
->callback (l
);
503 action
= LISTBOX_DONE
;
505 if (action
== LISTBOX_DONE
)
507 w
->owner
->ret_value
= B_ENTER
;
515 /* --------------------------------------------------------------------------------------------- */
516 /*** public functions ****************************************************************************/
517 /* --------------------------------------------------------------------------------------------- */
520 listbox_new (int y
, int x
, int height
, int width
, gboolean deletable
, lcback_fn callback
)
528 l
= g_new (WListbox
, 1);
530 init_widget (w
, y
, x
, height
, width
, listbox_callback
, listbox_event
);
535 l
->deletable
= deletable
;
536 l
->callback
= callback
;
537 l
->allow_duplicates
= TRUE
;
538 l
->scrollbar
= !mc_global
.tty
.slow_terminal
;
539 widget_want_hotkey (w
, TRUE
);
540 widget_want_cursor (w
, FALSE
);
545 /* --------------------------------------------------------------------------------------------- */
548 listbox_search_text (WListbox
* l
, const char *text
)
555 for (i
= 0, le
= l
->list
; le
!= NULL
; i
++, le
= g_list_next (le
))
557 WLEntry
*e
= LENTRY (le
->data
);
559 if (strcmp (e
->text
, text
) == 0)
567 /* --------------------------------------------------------------------------------------------- */
569 /* Selects the first entry and scrolls the list to the top */
571 listbox_select_first (WListbox
* l
)
576 /* --------------------------------------------------------------------------------------------- */
578 /* Selects the last entry and scrolls the list to the bottom */
580 listbox_select_last (WListbox
* l
)
582 int lines
= WIDGET (l
)->lines
;
584 l
->pos
= l
->count
- 1;
585 l
->top
= l
->count
> lines
? l
->count
- lines
: 0;
588 /* --------------------------------------------------------------------------------------------- */
591 listbox_select_entry (WListbox
* l
, int dest
)
595 gboolean top_seen
= FALSE
;
601 for (pos
= 0, le
= l
->list
; le
!= NULL
; pos
++, le
= g_list_next (le
))
613 int lines
= WIDGET (l
)->lines
;
615 if (l
->pos
- l
->top
>= lines
)
616 l
->top
= l
->pos
- lines
+ 1;
622 /* If we are unable to find it, set decent values */
626 /* --------------------------------------------------------------------------------------------- */
628 /* Returns the current string text as well as the associated extra data */
630 listbox_get_current (WListbox
* l
, char **string
, void **extra
)
636 e
= LENTRY (g_list_nth_data (l
->list
, l
->pos
));
641 *string
= ok
? e
->text
: NULL
;
644 *extra
= ok
? e
->data
: NULL
;
647 /* --------------------------------------------------------------------------------------------- */
650 listbox_remove_current (WListbox
* l
)
652 if ((l
!= NULL
) && (l
->count
!= 0))
656 current
= g_list_nth (l
->list
, l
->pos
);
657 l
->list
= g_list_remove_link (l
->list
, current
);
658 listbox_entry_free (LENTRY (current
->data
));
659 g_list_free_1 (current
);
664 else if (l
->pos
>= l
->count
)
665 l
->pos
= l
->count
- 1;
669 /* --------------------------------------------------------------------------------------------- */
672 listbox_set_list (WListbox
* l
, GList
* list
)
674 listbox_remove_list (l
);
680 l
->count
= g_list_length (list
);
684 /* --------------------------------------------------------------------------------------------- */
687 listbox_remove_list (WListbox
* l
)
689 if ((l
!= NULL
) && (l
->count
!= 0))
691 g_list_foreach (l
->list
, (GFunc
) listbox_entry_free
, NULL
);
692 g_list_free (l
->list
);
694 l
->count
= l
->pos
= l
->top
= 0;
698 /* --------------------------------------------------------------------------------------------- */
701 listbox_add_item (WListbox
* l
, listbox_append_t pos
, int hotkey
, const char *text
, void *data
)
708 if (!l
->allow_duplicates
&& (listbox_search_text (l
, text
) >= 0))
711 entry
= g_new (WLEntry
, 1);
712 entry
->text
= g_strdup (text
);
714 entry
->hotkey
= hotkey
;
716 listbox_append_item (l
, entry
, pos
);
721 /* --------------------------------------------------------------------------------------------- */