2 Directory hotlist -- for the Midnight Commander
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
10 Andrej Borsenkow, 1996
12 Andrew Borodin <aborodin@vmail.ru>, 2012-2022
14 Janne did the original Hotlist code, Andrej made the groupable
15 hotlist; the move hotlist and revamped the file format and made
18 This file is part of the Midnight Commander.
20 The Midnight Commander is free software: you can redistribute it
21 and/or modify it under the terms of the GNU General Public License as
22 published by the Free Software Foundation, either version 3 of the License,
23 or (at your option) any later version.
25 The Midnight Commander is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
30 You should have received a copy of the GNU General Public License
31 along with this program. If not, see <http://www.gnu.org/licenses/>.
35 * \brief Source: directory hotlist
43 #include <sys/types.h>
47 #include "lib/global.h"
49 #include "lib/tty/tty.h" /* COLS */
50 #include "lib/tty/key.h" /* KEY_M_CTRL */
51 #include "lib/skin.h" /* colors */
52 #include "lib/mcconfig.h" /* Load/save directories hotlist */
53 #include "lib/fileloc.h"
54 #include "lib/strutil.h"
55 #include "lib/vfs/vfs.h"
57 #include "lib/widget.h"
59 #include "src/setup.h" /* For profile_bname */
60 #include "src/history.h"
62 #include "command.h" /* cmdline */
66 /*** global variables ****************************************************************************/
68 /*** file scope macro definitions ****************************************************************/
73 #define B_ADD_CURRENT B_USER
74 #define B_REMOVE (B_USER + 1)
75 #define B_NEW_GROUP (B_USER + 2)
76 #define B_NEW_ENTRY (B_USER + 3)
77 #define B_ENTER_GROUP (B_USER + 4)
78 #define B_UP_GROUP (B_USER + 5)
79 #define B_INSERT (B_USER + 6)
80 #define B_APPEND (B_USER + 7)
81 #define B_MOVE (B_USER + 8)
83 #define B_FREE_ALL_VFS (B_USER + 9)
84 #define B_REFRESH_VFS (B_USER + 10)
91 #define TKN_ENDGROUP 4
95 #define TKN_UNKNOWN 127
100 while ((_tkn = hot_next_token ()) != TKN_EOF && _tkn != TKN_EOL) ; \
103 #define CHECK_TOKEN(_TKN_) \
104 tkn = hot_next_token (); \
107 hotlist_state.readonly = TRUE; \
108 hotlist_state.file_error = TRUE; \
109 while (tkn != TKN_EOL && tkn != TKN_EOF) \
110 tkn = hot_next_token (); \
114 /*** file scope type declarations ****************************************************************/
127 * these reflect run time state
130 gboolean loaded
; /* hotlist is loaded */
131 gboolean readonly
; /* hotlist readonly */
132 gboolean file_error
; /* parse error while reading file */
133 gboolean running
; /* we are running dlg (and have to
135 gboolean moving
; /* we are in moving hotlist currently */
136 gboolean modified
; /* hotlist was modified */
137 hotlist_t type
; /* LIST_HOTLIST || LIST_VFSLIST */
140 /* Directory hotlist */
143 enum HotListType type
;
146 struct hotlist
*head
;
148 struct hotlist
*next
;
151 /*** forward declarations (file scope functions) *************************************************/
153 /*** file scope variables ************************************************************************/
155 static WPanel
*our_panel
;
157 static gboolean hotlist_has_dot_dot
= TRUE
;
159 static WDialog
*hotlist_dlg
, *movelist_dlg
;
160 static WGroupbox
*hotlist_group
, *movelist_group
;
161 static WListbox
*l_hotlist
, *l_movelist
;
162 static WLabel
*pname
;
166 int ret_cmd
, flags
, y
, x
, len
;
169 widget_pos_flags_t pos_flags
;
172 { B_ENTER
, DEFPUSH_BUTTON
, 0, 0, 0, N_("Change &to"),
173 LIST_HOTLIST
| LIST_VFSLIST
| LIST_MOVELIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
175 { B_FREE_ALL_VFS
, NORMAL_BUTTON
, 0, 20, 0, N_("&Free VFSs now"),
176 LIST_VFSLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
177 { B_REFRESH_VFS
, NORMAL_BUTTON
, 0, 43, 0, N_("&Refresh"),
178 LIST_VFSLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
180 { B_ADD_CURRENT
, NORMAL_BUTTON
, 0, 20, 0, N_("&Add current"),
181 LIST_HOTLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
182 { B_UP_GROUP
, NORMAL_BUTTON
, 0, 42, 0, N_("&Up"),
183 LIST_HOTLIST
| LIST_MOVELIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
184 { B_CANCEL
, NORMAL_BUTTON
, 0, 53, 0, N_("&Cancel"),
185 LIST_HOTLIST
| LIST_VFSLIST
| LIST_MOVELIST
, WPOS_KEEP_RIGHT
| WPOS_KEEP_BOTTOM
},
186 { B_NEW_GROUP
, NORMAL_BUTTON
, 1, 0, 0, N_("New &group"),
187 LIST_HOTLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
188 { B_NEW_ENTRY
, NORMAL_BUTTON
, 1, 15, 0, N_("New &entry"),
189 LIST_HOTLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
190 { B_INSERT
, NORMAL_BUTTON
, 1, 0, 0, N_("&Insert"),
191 LIST_MOVELIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
192 { B_APPEND
, NORMAL_BUTTON
, 1, 15, 0, N_("A&ppend"),
193 LIST_MOVELIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
194 { B_REMOVE
, NORMAL_BUTTON
, 1, 30, 0, N_("&Remove"),
195 LIST_HOTLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
},
196 { B_MOVE
, NORMAL_BUTTON
, 1, 42, 0, N_("&Move"),
197 LIST_HOTLIST
, WPOS_KEEP_LEFT
| WPOS_KEEP_BOTTOM
}
201 static const size_t hotlist_but_num
= G_N_ELEMENTS (hotlist_but
);
203 static struct hotlist
*hotlist
= NULL
;
205 static struct hotlist
*current_group
;
207 static GString
*tkn_buf
= NULL
;
209 static char *hotlist_file_name
;
210 static FILE *hotlist_file
;
211 static time_t hotlist_file_mtime
;
213 static int list_level
= 0;
215 /* --------------------------------------------------------------------------------------------- */
216 /*** file scope functions ************************************************************************/
217 /* --------------------------------------------------------------------------------------------- */
219 static void init_movelist (struct hotlist
*item
);
220 static void add_new_group_cmd (void);
221 static void add_new_entry_cmd (WPanel
* panel
);
222 static void remove_from_hotlist (struct hotlist
*entry
);
223 static void load_hotlist (void);
224 static void add_dotdot_to_list (void);
226 /* --------------------------------------------------------------------------------------------- */
227 /** If current->data is 0, then we are dealing with a VFS pathname */
230 update_path_name (void)
232 const char *text
= "";
234 WListbox
*list
= hotlist_state
.moving
? l_movelist
: l_hotlist
;
235 Widget
*w
= WIDGET (list
);
237 if (!listbox_is_empty (list
))
242 listbox_get_current (list
, &ctext
, &cdata
);
247 struct hotlist
*hlp
= (struct hotlist
*) cdata
;
249 if (hlp
->type
== HL_TYPE_ENTRY
|| hlp
->type
== HL_TYPE_DOTDOT
)
250 text
= hlp
->directory
;
251 else if (hlp
->type
== HL_TYPE_GROUP
)
252 text
= _("Subgroup - press ENTER to see list");
256 p
= g_strconcat (" ", current_group
->label
, " ", (char *) NULL
);
257 if (hotlist_state
.moving
)
258 groupbox_set_title (movelist_group
, str_trunc (p
, w
->rect
.cols
- 2));
261 groupbox_set_title (hotlist_group
, str_trunc (p
, w
->rect
.cols
- 2));
262 label_set_text (pname
, str_trunc (text
, w
->rect
.cols
));
267 /* --------------------------------------------------------------------------------------------- */
270 fill_listbox (WListbox
*list
)
272 struct hotlist
*current
;
274 for (current
= current_group
->head
; current
!= NULL
; current
= current
->next
)
275 switch (current
->type
)
281 lbl
= g_strconcat ("->", current
->label
, (char *) NULL
);
282 listbox_add_item_take (list
, LISTBOX_APPEND_AT_END
, 0, lbl
, current
, FALSE
);
287 listbox_add_item (list
, LISTBOX_APPEND_AT_END
, 0, current
->label
, current
, FALSE
);
294 /* --------------------------------------------------------------------------------------------- */
297 unlink_entry (struct hotlist
*entry
)
299 struct hotlist
*current
= current_group
->head
;
301 if (current
== entry
)
302 current_group
->head
= entry
->next
;
305 while (current
!= NULL
&& current
->next
!= entry
)
306 current
= current
->next
;
308 current
->next
= entry
->next
;
310 entry
->next
= entry
->up
= NULL
;
313 /* --------------------------------------------------------------------------------------------- */
317 add_name_to_list (const char *path
)
319 listbox_add_item (l_hotlist
, LISTBOX_APPEND_AT_END
, 0, path
, NULL
, FALSE
);
321 #endif /* !ENABLE_VFS */
323 /* --------------------------------------------------------------------------------------------- */
326 hotlist_run_cmd (int action
)
332 struct hotlist
*saved
= current_group
;
333 struct hotlist
*item
= NULL
;
334 struct hotlist
*moveto_item
= NULL
;
335 struct hotlist
*moveto_group
= NULL
;
338 if (listbox_is_empty (l_hotlist
))
339 return 0; /* empty group - nothing to do */
341 listbox_get_current (l_hotlist
, NULL
, (void **) &item
);
342 init_movelist (item
);
343 hotlist_state
.moving
= TRUE
;
344 ret
= dlg_run (movelist_dlg
);
345 hotlist_state
.moving
= FALSE
;
346 listbox_get_current (l_movelist
, NULL
, (void **) &moveto_item
);
347 moveto_group
= current_group
;
348 widget_destroy (WIDGET (movelist_dlg
));
349 current_group
= saved
;
352 if (moveto_item
== item
)
353 return 0; /* If we insert/append a before/after a
354 it hardly changes anything ;) */
356 listbox_remove_current (l_hotlist
);
357 item
->up
= moveto_group
;
358 if (moveto_group
->head
== NULL
)
359 moveto_group
->head
= item
;
360 else if (moveto_item
== NULL
)
361 { /* we have group with just comments */
362 struct hotlist
*p
= moveto_group
->head
;
365 while (p
->next
!= NULL
)
369 else if (ret
== B_ENTER
|| ret
== B_APPEND
)
371 if (moveto_item
->next
== NULL
)
372 moveto_item
->next
= item
;
375 item
->next
= moveto_item
->next
;
376 moveto_item
->next
= item
;
379 else if (moveto_group
->head
== moveto_item
)
381 moveto_group
->head
= item
;
382 item
->next
= moveto_item
;
386 struct hotlist
*p
= moveto_group
->head
;
388 while (p
->next
!= moveto_item
)
390 item
->next
= p
->next
;
393 listbox_remove_list (l_hotlist
);
394 fill_listbox (l_hotlist
);
396 hotlist_state
.modified
= TRUE
;
401 struct hotlist
*entry
= NULL
;
403 listbox_get_current (l_hotlist
, NULL
, (void **) &entry
);
404 remove_from_hotlist (entry
);
409 add_new_group_cmd ();
413 add2hotlist_cmd (our_panel
);
417 add_new_entry_cmd (our_panel
);
427 list
= hotlist_state
.moving
? l_movelist
: l_hotlist
;
428 listbox_get_current (list
, NULL
, &data
);
433 hlp
= (struct hotlist
*) data
;
435 if (hlp
->type
== HL_TYPE_ENTRY
)
436 return (action
== B_ENTER
? 1 : 0);
437 if (hlp
->type
!= HL_TYPE_DOTDOT
)
439 listbox_remove_list (list
);
445 MC_FALLTHROUGH
; /* if list empty - just go up */
449 WListbox
*list
= hotlist_state
.moving
? l_movelist
: l_hotlist
;
451 listbox_remove_list (list
);
452 current_group
= current_group
->up
;
463 listbox_remove_list (l_hotlist
);
464 listbox_add_item (l_hotlist
, LISTBOX_APPEND_AT_END
, 0, mc_config_get_home_dir (), NULL
,
466 vfs_fill_names (add_name_to_list
);
468 #endif /* ENABLE_VFS */
475 /* --------------------------------------------------------------------------------------------- */
478 hotlist_button_callback (WButton
*button
, int action
)
483 ret
= hotlist_run_cmd (action
);
488 /* --------------------------------------------------------------------------------------------- */
490 static inline cb_ret_t
491 hotlist_handle_key (WDialog
*h
, int key
)
495 case KEY_M_CTRL
| '\n':
500 if (hotlist_button_callback (NULL
, B_ENTER
) != 0)
502 h
->ret_value
= B_ENTER
;
508 /* enter to the group */
509 if (hotlist_state
.type
== LIST_VFSLIST
)
510 return MSG_NOT_HANDLED
;
511 return hotlist_button_callback (NULL
, B_ENTER_GROUP
) == 0 ? MSG_HANDLED
: MSG_NOT_HANDLED
;
514 /* leave the group */
515 if (hotlist_state
.type
== LIST_VFSLIST
)
516 return MSG_NOT_HANDLED
;
517 return hotlist_button_callback (NULL
, B_UP_GROUP
) == 0 ? MSG_HANDLED
: MSG_NOT_HANDLED
;
520 if (hotlist_state
.moving
)
521 return MSG_NOT_HANDLED
;
522 hotlist_button_callback (NULL
, B_REMOVE
);
528 if (!hotlist_state
.moving
)
532 listbox_get_current (l_hotlist
, NULL
, &ldata
);
536 struct hotlist
*hlp
= (struct hotlist
*) ldata
;
538 if (hlp
->type
== HL_TYPE_ENTRY
)
542 tmp
= g_strconcat ("cd ", hlp
->directory
, (char *) NULL
);
543 input_insert (cmdline
, tmp
, FALSE
);
545 h
->ret_value
= B_CANCEL
;
550 return MSG_HANDLED
; /* ignore key */
553 return MSG_NOT_HANDLED
;
557 /* --------------------------------------------------------------------------------------------- */
560 hotlist_callback (Widget
*w
, Widget
*sender
, widget_msg_t msg
, int parm
, void *data
)
562 WDialog
*h
= DIALOG (w
);
567 case MSG_NOTIFY
: /* MSG_NOTIFY is fired by the listbox to tell us the item has changed. */
571 case MSG_UNHANDLED_KEY
:
572 return hotlist_handle_key (h
, parm
);
576 * The code here has two purposes:
578 * (1) Always stay on the hotlist.
580 * Activating a button using its hotkey (and even pressing ENTER, as
581 * there's a "default button") moves the focus to the button. But we
582 * want to stay on the hotlist, to be able to use the usual keys (up,
583 * down, etc.). So we do `widget_select (lst)`.
585 * (2) Refresh the hotlist.
587 * We may have run a command that changed the contents of the list.
588 * We therefore need to refresh it. So we do `widget_draw (lst)`.
593 lst
= WIDGET (h
== hotlist_dlg
? l_hotlist
: l_movelist
);
595 /* widget_select() already redraws the widget, but since it's a
596 * no-op if the widget is already selected ("focused"), we have
597 * to call widget_draw() separately. */
598 if (!widget_get_state (lst
, WST_FOCUSED
))
609 r
.lines
= LINES
- (h
== hotlist_dlg
? 2 : 6);
612 return dlg_default_callback (w
, NULL
, MSG_RESIZE
, 0, &r
);
616 return dlg_default_callback (w
, sender
, msg
, parm
, data
);
620 /* --------------------------------------------------------------------------------------------- */
623 hotlist_listbox_callback (WListbox
*list
)
625 WDialog
*dlg
= DIALOG (WIDGET (list
)->owner
);
627 if (!listbox_is_empty (list
))
631 listbox_get_current (list
, NULL
, &data
);
635 struct hotlist
*hlp
= (struct hotlist
*) data
;
637 if (hlp
->type
== HL_TYPE_ENTRY
)
639 dlg
->ret_value
= B_ENTER
;
645 hotlist_button_callback (NULL
, B_ENTER
);
646 send_message (dlg
, NULL
, MSG_POST_KEY
, '\n', NULL
);
652 dlg
->ret_value
= B_ENTER
;
658 hotlist_button_callback (NULL
, B_UP_GROUP
);
659 send_message (dlg
, NULL
, MSG_POST_KEY
, 'u', NULL
);
663 /* --------------------------------------------------------------------------------------------- */
665 * Expands all button names (once) and recalculates button positions.
666 * returns number of columns in the dialog box, which is 10 chars longer
669 * If common width of the window (i.e. in xterm) is less than returned
670 * width - sorry :) (anyway this did not handled in previous version too)
674 init_i18n_stuff (int list_type
, int cols
)
678 static gboolean i18n_flag
= FALSE
;
682 for (i
= 0; i
< hotlist_but_num
; i
++)
685 hotlist_but
[i
].text
= _(hotlist_but
[i
].text
);
686 #endif /* ENABLE_NLS */
687 hotlist_but
[i
].len
= str_term_width1 (hotlist_but
[i
].text
) + 3;
688 if (hotlist_but
[i
].flags
== DEFPUSH_BUTTON
)
689 hotlist_but
[i
].len
+= 2;
695 /* Dynamic resizing of buttonbars */
697 int len
[2], count
[2]; /* at most two lines of buttons */
701 count
[0] = count
[1] = 0;
702 cur_x
[0] = cur_x
[1] = 0;
704 /* Count len of buttonbars, assuming 1 extra space between buttons */
705 for (i
= 0; i
< hotlist_but_num
; i
++)
706 if ((hotlist_but
[i
].type
& list_type
) != 0)
710 row
= hotlist_but
[i
].y
;
712 len
[row
] += hotlist_but
[i
].len
+ 1;
718 cols
= MAX (cols
, MAX (len
[0], len
[1]));
720 /* arrange buttons */
721 for (i
= 0; i
< hotlist_but_num
; i
++)
722 if ((hotlist_but
[i
].type
& list_type
) != 0)
726 row
= hotlist_but
[i
].y
;
728 if (hotlist_but
[i
].x
!= 0)
730 /* not first int the row */
731 if (hotlist_but
[i
].ret_cmd
== B_CANCEL
)
732 hotlist_but
[i
].x
= cols
- hotlist_but
[i
].len
- 6;
734 hotlist_but
[i
].x
= cur_x
[row
];
737 cur_x
[row
] += hotlist_but
[i
].len
+ 1;
744 /* --------------------------------------------------------------------------------------------- */
747 init_hotlist (hotlist_t list_type
)
750 const char *title
, *help_node
;
756 Widget
*hotlist_widget
;
761 cols
= init_i18n_stuff (list_type
, COLS
- 6);
764 if (list_type
== LIST_VFSLIST
)
766 title
= _("Active VFS directories");
767 help_node
= "[vfshot]"; /* FIXME - no such node */
771 #endif /* !ENABLE_VFS */
773 title
= _("Directory hotlist");
774 help_node
= "[Hotlist]";
778 dlg_create (TRUE
, 0, 0, lines
, cols
, WPOS_CENTER
, FALSE
, dialog_colors
, hotlist_callback
,
779 NULL
, help_node
, title
);
780 g
= GROUP (hotlist_dlg
);
783 hotlist_group
= groupbox_new (y
, UX
, lines
- 10 + dh
, cols
- 2 * UX
, _("Top level group"));
784 hotlist_widget
= WIDGET (hotlist_group
);
785 group_add_widget_autopos (g
, hotlist_widget
, WPOS_KEEP_ALL
, NULL
);
788 listbox_new (y
+ 1, UX
+ 1, hotlist_widget
->rect
.lines
- 2, hotlist_widget
->rect
.cols
- 2,
789 FALSE
, hotlist_listbox_callback
);
791 /* Fill the hotlist with the active VFS or the hotlist */
793 if (list_type
== LIST_VFSLIST
)
795 listbox_add_item (l_hotlist
, LISTBOX_APPEND_AT_END
, 0, mc_config_get_home_dir (), NULL
,
797 vfs_fill_names (add_name_to_list
);
800 #endif /* !ENABLE_VFS */
801 fill_listbox (l_hotlist
);
803 /* insert before groupbox to view scrollbar */
804 group_add_widget_autopos (g
, l_hotlist
, WPOS_KEEP_ALL
, NULL
);
806 y
+= hotlist_widget
->rect
.lines
;
808 path_box
= groupbox_new (y
, UX
, 3, hotlist_widget
->rect
.cols
, _("Directory path"));
809 group_add_widget_autopos (g
, path_box
, WPOS_KEEP_BOTTOM
| WPOS_KEEP_HORZ
, NULL
);
811 pname
= label_new (y
+ 1, UX
+ 2, NULL
);
812 group_add_widget_autopos (g
, pname
, WPOS_KEEP_BOTTOM
| WPOS_KEEP_LEFT
, NULL
);
813 y
+= WIDGET (path_box
)->rect
.lines
;
815 group_add_widget_autopos (g
, hline_new (y
++, -1, -1), WPOS_KEEP_BOTTOM
, NULL
);
817 for (i
= 0; i
< hotlist_but_num
; i
++)
818 if ((hotlist_but
[i
].type
& list_type
) != 0)
819 group_add_widget_autopos (g
,
820 button_new (y
+ hotlist_but
[i
].y
, UX
+ hotlist_but
[i
].x
,
821 hotlist_but
[i
].ret_cmd
, hotlist_but
[i
].flags
,
822 hotlist_but
[i
].text
, hotlist_button_callback
),
823 hotlist_but
[i
].pos_flags
, NULL
);
825 widget_select (WIDGET (l_hotlist
));
828 /* --------------------------------------------------------------------------------------------- */
831 init_movelist (struct hotlist
*item
)
838 Widget
*movelist_widget
;
843 cols
= init_i18n_stuff (LIST_MOVELIST
, COLS
- 6);
845 hdr
= g_strdup_printf (_("Moving %s"), item
->label
);
848 dlg_create (TRUE
, 0, 0, lines
, cols
, WPOS_CENTER
, FALSE
, dialog_colors
, hotlist_callback
,
849 NULL
, "[Hotlist]", hdr
);
850 g
= GROUP (movelist_dlg
);
855 movelist_group
= groupbox_new (y
, UX
, lines
- 7, cols
- 2 * UX
, _("Directory label"));
856 movelist_widget
= WIDGET (movelist_group
);
857 group_add_widget_autopos (g
, movelist_widget
, WPOS_KEEP_ALL
, NULL
);
860 listbox_new (y
+ 1, UX
+ 1, movelist_widget
->rect
.lines
- 2, movelist_widget
->rect
.cols
- 2,
861 FALSE
, hotlist_listbox_callback
);
862 fill_listbox (l_movelist
);
863 /* insert before groupbox to view scrollbar */
864 group_add_widget_autopos (g
, l_movelist
, WPOS_KEEP_ALL
, NULL
);
866 y
+= movelist_widget
->rect
.lines
;
868 group_add_widget_autopos (g
, hline_new (y
++, -1, -1), WPOS_KEEP_BOTTOM
, NULL
);
870 for (i
= 0; i
< hotlist_but_num
; i
++)
871 if ((hotlist_but
[i
].type
& LIST_MOVELIST
) != 0)
872 group_add_widget_autopos (g
,
873 button_new (y
+ hotlist_but
[i
].y
, UX
+ hotlist_but
[i
].x
,
874 hotlist_but
[i
].ret_cmd
, hotlist_but
[i
].flags
,
875 hotlist_but
[i
].text
, hotlist_button_callback
),
876 hotlist_but
[i
].pos_flags
, NULL
);
878 widget_select (WIDGET (l_movelist
));
881 /* --------------------------------------------------------------------------------------------- */
883 * Destroy the list dialog.
884 * Don't confuse with done_hotlist() for the list in memory.
890 widget_destroy (WIDGET (hotlist_dlg
));
893 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
898 /* --------------------------------------------------------------------------------------------- */
901 find_group_section (struct hotlist
*grp
)
903 return g_strconcat (grp
->directory
, ".Group", (char *) NULL
);
906 /* --------------------------------------------------------------------------------------------- */
908 static struct hotlist
*
909 add2hotlist (char *label
, char *directory
, enum HotListType type
, listbox_append_t pos
)
912 struct hotlist
*current
= NULL
;
915 * Hotlist is neither loaded nor loading.
916 * Must be called by "Ctrl-x a" before using hotlist.
918 if (current_group
== NULL
)
921 listbox_get_current (l_hotlist
, NULL
, (void **) ¤t
);
923 /* Make sure '..' stays at the top of the list. */
924 if ((current
!= NULL
) && (current
->type
== HL_TYPE_DOTDOT
))
925 pos
= LISTBOX_APPEND_AFTER
;
927 new = g_new0 (struct hotlist
, 1);
931 new->directory
= directory
;
932 new->up
= current_group
;
934 if (type
== HL_TYPE_GROUP
)
937 add_dotdot_to_list ();
938 current_group
= new->up
;
941 if (current_group
->head
== NULL
)
943 /* first element in group */
944 current_group
->head
= new;
946 else if (pos
== LISTBOX_APPEND_AFTER
)
948 new->next
= current
->next
;
951 else if (pos
== LISTBOX_APPEND_BEFORE
&& current
== current_group
->head
)
953 /* should be inserted before first item */
955 current_group
->head
= new;
957 else if (pos
== LISTBOX_APPEND_BEFORE
)
959 struct hotlist
*p
= current_group
->head
;
961 while (p
->next
!= current
)
968 { /* append at the end */
969 struct hotlist
*p
= current_group
->head
;
971 while (p
->next
!= NULL
)
977 if (hotlist_state
.running
&& type
!= HL_TYPE_COMMENT
&& type
!= HL_TYPE_DOTDOT
)
979 if (type
== HL_TYPE_GROUP
)
983 lbl
= g_strconcat ("->", new->label
, (char *) NULL
);
984 listbox_add_item_take (l_hotlist
, pos
, 0, lbl
, new, FALSE
);
987 listbox_add_item (l_hotlist
, pos
, 0, new->label
, new, FALSE
);
988 listbox_set_current (l_hotlist
, l_hotlist
->current
);
994 /* --------------------------------------------------------------------------------------------- */
997 add_new_entry_input (const char *header
, const char *text1
, const char *text2
,
998 const char *help
, char **r1
, char **r2
)
1000 quick_widget_t quick_widgets
[] = {
1002 QUICK_LABELED_INPUT (text1
, input_label_above
, *r1
, "input-lbl", r1
, NULL
,
1003 FALSE
, FALSE
, INPUT_COMPLETE_NONE
),
1004 QUICK_SEPARATOR (FALSE
),
1005 QUICK_LABELED_INPUT (text2
, input_label_above
, *r2
, "input-lbl", r2
, NULL
,
1006 FALSE
, FALSE
, INPUT_COMPLETE_FILENAMES
| INPUT_COMPLETE_CD
),
1007 QUICK_START_BUTTONS (TRUE
, TRUE
),
1008 QUICK_BUTTON (N_("&Append"), B_APPEND
, NULL
, NULL
),
1009 QUICK_BUTTON (N_("&Insert"), B_INSERT
, NULL
, NULL
),
1010 QUICK_BUTTON (N_("&Cancel"), B_CANCEL
, NULL
, NULL
),
1015 WRect r
= { -1, -1, 0, 64 };
1017 quick_dialog_t qdlg
= {
1019 quick_widgets
, NULL
, NULL
1024 ret
= quick_dialog (&qdlg
);
1026 return (ret
!= B_CANCEL
) ? ret
: 0;
1029 /* --------------------------------------------------------------------------------------------- */
1032 add_new_entry_cmd (WPanel
*panel
)
1034 char *title
, *url
, *to_free
;
1037 /* Take current directory as default value for input fields */
1038 to_free
= title
= url
= vfs_path_to_str_flags (panel
->cwd_vpath
, 0, VPF_STRIP_PASSWORD
);
1040 ret
= add_new_entry_input (_("New hotlist entry"), _("Directory label:"),
1041 _("Directory path:"), "[Hotlist]", &title
, &url
);
1046 if (title
== NULL
|| *title
== '\0' || url
== NULL
|| *url
== '\0')
1053 if (ret
== B_ENTER
|| ret
== B_APPEND
)
1054 add2hotlist (title
, url
, HL_TYPE_ENTRY
, LISTBOX_APPEND_AFTER
);
1056 add2hotlist (title
, url
, HL_TYPE_ENTRY
, LISTBOX_APPEND_BEFORE
);
1058 hotlist_state
.modified
= TRUE
;
1061 /* --------------------------------------------------------------------------------------------- */
1064 add_new_group_input (const char *header
, const char *label
, char **result
)
1066 quick_widget_t quick_widgets
[] = {
1068 QUICK_LABELED_INPUT (label
, input_label_above
, "", "input", result
, NULL
,
1069 FALSE
, FALSE
, INPUT_COMPLETE_NONE
),
1070 QUICK_START_BUTTONS (TRUE
, TRUE
),
1071 QUICK_BUTTON (N_("&Append"), B_APPEND
, NULL
, NULL
),
1072 QUICK_BUTTON (N_("&Insert"), B_INSERT
, NULL
, NULL
),
1073 QUICK_BUTTON (N_("&Cancel"), B_CANCEL
, NULL
, NULL
),
1078 WRect r
= { -1, -1, 0, 64 };
1080 quick_dialog_t qdlg
= {
1081 r
, header
, "[Hotlist]",
1082 quick_widgets
, NULL
, NULL
1087 ret
= quick_dialog (&qdlg
);
1089 return (ret
!= B_CANCEL
) ? ret
: 0;
1092 /* --------------------------------------------------------------------------------------------- */
1095 add_new_group_cmd (void)
1100 ret
= add_new_group_input (_("New hotlist group"), _("Name of new group:"), &label
);
1101 if (ret
== 0 || label
== NULL
|| *label
== '\0')
1104 if (ret
== B_ENTER
|| ret
== B_APPEND
)
1105 add2hotlist (label
, 0, HL_TYPE_GROUP
, LISTBOX_APPEND_AFTER
);
1107 add2hotlist (label
, 0, HL_TYPE_GROUP
, LISTBOX_APPEND_BEFORE
);
1109 hotlist_state
.modified
= TRUE
;
1112 /* --------------------------------------------------------------------------------------------- */
1115 remove_group (struct hotlist
*grp
)
1117 struct hotlist
*current
= grp
->head
;
1119 while (current
!= NULL
)
1121 struct hotlist
*next
= current
->next
;
1123 if (current
->type
== HL_TYPE_GROUP
)
1124 remove_group (current
);
1126 g_free (current
->label
);
1127 g_free (current
->directory
);
1134 /* --------------------------------------------------------------------------------------------- */
1137 remove_from_hotlist (struct hotlist
*entry
)
1142 if (entry
->type
== HL_TYPE_DOTDOT
)
1145 if (confirm_directory_hotlist_delete
)
1147 char text
[BUF_MEDIUM
];
1153 g_snprintf (text
, sizeof (text
), _("Are you sure you want to remove entry \"%s\"?"),
1154 str_trunc (entry
->label
, 30));
1155 result
= query_dialog (Q_ ("DialogTitle|Delete"), text
, D_ERROR
| D_CENTER
, 2,
1156 _("&Yes"), _("&No"));
1161 if (entry
->type
== HL_TYPE_GROUP
)
1163 struct hotlist
*head
= entry
->head
;
1165 if (head
!= NULL
&& (head
->type
!= HL_TYPE_DOTDOT
|| head
->next
!= NULL
))
1167 char text
[BUF_MEDIUM
];
1170 g_snprintf (text
, sizeof (text
), _("Group \"%s\" is not empty.\nRemove it?"),
1171 str_trunc (entry
->label
, 30));
1172 result
= query_dialog (Q_ ("DialogTitle|Delete"), text
, D_ERROR
| D_CENTER
, 2,
1173 _("&Yes"), _("&No"));
1178 remove_group (entry
);
1181 unlink_entry (entry
);
1183 g_free (entry
->label
);
1184 g_free (entry
->directory
);
1186 /* now remove list entry from screen */
1187 listbox_remove_current (l_hotlist
);
1188 hotlist_state
.modified
= TRUE
;
1191 /* --------------------------------------------------------------------------------------------- */
1194 load_group (struct hotlist
*grp
)
1196 gchar
**profile_keys
, **keys
;
1197 char *group_section
;
1198 struct hotlist
*current
= 0;
1200 group_section
= find_group_section (grp
);
1202 keys
= mc_config_get_keys (mc_global
.main_config
, group_section
, NULL
);
1204 current_group
= grp
;
1206 for (profile_keys
= keys
; *profile_keys
!= NULL
; profile_keys
++)
1207 add2hotlist (mc_config_get_string (mc_global
.main_config
, group_section
, *profile_keys
, ""),
1208 g_strdup (*profile_keys
), HL_TYPE_GROUP
, LISTBOX_APPEND_AT_END
);
1212 keys
= mc_config_get_keys (mc_global
.main_config
, grp
->directory
, NULL
);
1214 for (profile_keys
= keys
; *profile_keys
!= NULL
; profile_keys
++)
1215 add2hotlist (mc_config_get_string (mc_global
.main_config
, group_section
, *profile_keys
, ""),
1216 g_strdup (*profile_keys
), HL_TYPE_ENTRY
, LISTBOX_APPEND_AT_END
);
1218 g_free (group_section
);
1221 for (current
= grp
->head
; current
; current
= current
->next
)
1222 load_group (current
);
1225 /* --------------------------------------------------------------------------------------------- */
1228 hot_skip_blanks (void)
1232 while ((c
= getc (hotlist_file
)) != EOF
&& c
!= '\n' && g_ascii_isspace (c
))
1237 /* --------------------------------------------------------------------------------------------- */
1240 hot_next_token (void)
1245 if (tkn_buf
== NULL
)
1246 tkn_buf
= g_string_new ("");
1247 g_string_set_size (tkn_buf
, 0);
1250 c
= hot_skip_blanks ();
1260 while ((c
= getc (hotlist_file
)) != EOF
&& c
!= '\n')
1261 g_string_append_c (tkn_buf
, c
);
1265 while ((c
= getc (hotlist_file
)) != EOF
&& c
!= '"')
1269 c
= getc (hotlist_file
);
1272 g_string_free (tkn_buf
, TRUE
);
1276 g_string_append_c (tkn_buf
, c
== '\n' ? ' ' : c
);
1278 ret
= (c
== EOF
) ? TKN_EOF
: TKN_STRING
;
1281 c
= getc (hotlist_file
);
1284 g_string_free (tkn_buf
, TRUE
);
1290 MC_FALLTHROUGH
; /* it is taken as normal character */
1295 g_string_append_c (tkn_buf
, g_ascii_toupper (c
));
1297 while ((c
= fgetc (hotlist_file
)) != EOF
&& (g_ascii_isalnum (c
) || !isascii (c
)));
1299 ungetc (c
, hotlist_file
);
1301 if (strncmp (tkn_buf
->str
, "GROUP", l
) == 0)
1303 else if (strncmp (tkn_buf
->str
, "ENTRY", l
) == 0)
1305 else if (strncmp (tkn_buf
->str
, "ENDGROUP", l
) == 0)
1307 else if (strncmp (tkn_buf
->str
, "URL", l
) == 0)
1316 /* --------------------------------------------------------------------------------------------- */
1319 hot_load_group (struct hotlist
*grp
)
1322 struct hotlist
*new_grp
;
1325 current_group
= grp
;
1327 while ((tkn
= hot_next_token ()) != TKN_ENDGROUP
)
1331 CHECK_TOKEN (TKN_STRING
);
1333 add2hotlist (g_strndup (tkn_buf
->str
, tkn_buf
->len
), 0, HL_TYPE_GROUP
,
1334 LISTBOX_APPEND_AT_END
);
1336 hot_load_group (new_grp
);
1337 current_group
= grp
;
1341 CHECK_TOKEN (TKN_STRING
);
1342 label
= g_strndup (tkn_buf
->str
, tkn_buf
->len
);
1343 CHECK_TOKEN (TKN_URL
);
1344 CHECK_TOKEN (TKN_STRING
);
1345 url
= tilde_expand (tkn_buf
->str
);
1346 add2hotlist (label
, url
, HL_TYPE_ENTRY
, LISTBOX_APPEND_AT_END
);
1351 label
= g_strndup (tkn_buf
->str
, tkn_buf
->len
);
1352 add2hotlist (label
, 0, HL_TYPE_COMMENT
, LISTBOX_APPEND_AT_END
);
1355 hotlist_state
.readonly
= TRUE
;
1356 hotlist_state
.file_error
= TRUE
;
1359 /* skip empty lines */
1362 hotlist_state
.readonly
= TRUE
;
1363 hotlist_state
.file_error
= TRUE
;
1370 /* --------------------------------------------------------------------------------------------- */
1373 hot_load_file (struct hotlist
*grp
)
1376 struct hotlist
*new_grp
;
1379 current_group
= grp
;
1381 while ((tkn
= hot_next_token ()) != TKN_EOF
)
1385 CHECK_TOKEN (TKN_STRING
);
1387 add2hotlist (g_strndup (tkn_buf
->str
, tkn_buf
->len
), 0, HL_TYPE_GROUP
,
1388 LISTBOX_APPEND_AT_END
);
1390 hot_load_group (new_grp
);
1391 current_group
= grp
;
1395 CHECK_TOKEN (TKN_STRING
);
1396 label
= g_strndup (tkn_buf
->str
, tkn_buf
->len
);
1397 CHECK_TOKEN (TKN_URL
);
1398 CHECK_TOKEN (TKN_STRING
);
1399 url
= tilde_expand (tkn_buf
->str
);
1400 add2hotlist (label
, url
, HL_TYPE_ENTRY
, LISTBOX_APPEND_AT_END
);
1405 label
= g_strndup (tkn_buf
->str
, tkn_buf
->len
);
1406 add2hotlist (label
, 0, HL_TYPE_COMMENT
, LISTBOX_APPEND_AT_END
);
1409 /* skip empty lines */
1412 hotlist_state
.readonly
= TRUE
;
1413 hotlist_state
.file_error
= TRUE
;
1419 /* --------------------------------------------------------------------------------------------- */
1422 clean_up_hotlist_groups (const char *section
)
1426 grp_section
= g_strconcat (section
, ".Group", (char *) NULL
);
1427 if (mc_config_has_group (mc_global
.main_config
, section
))
1428 mc_config_del_group (mc_global
.main_config
, section
);
1430 if (mc_config_has_group (mc_global
.main_config
, grp_section
))
1432 char **profile_keys
, **keys
;
1434 keys
= mc_config_get_keys (mc_global
.main_config
, grp_section
, NULL
);
1436 for (profile_keys
= keys
; *profile_keys
!= NULL
; profile_keys
++)
1437 clean_up_hotlist_groups (*profile_keys
);
1440 mc_config_del_group (mc_global
.main_config
, grp_section
);
1442 g_free (grp_section
);
1445 /* --------------------------------------------------------------------------------------------- */
1450 gboolean remove_old_list
= FALSE
;
1451 struct stat stat_buf
;
1453 if (hotlist_state
.loaded
)
1455 stat (hotlist_file_name
, &stat_buf
);
1456 if (hotlist_file_mtime
< stat_buf
.st_mtime
)
1462 if (hotlist_file_name
== NULL
)
1463 hotlist_file_name
= mc_config_get_full_path (MC_HOTLIST_FILE
);
1465 hotlist
= g_new0 (struct hotlist
, 1);
1466 hotlist
->type
= HL_TYPE_GROUP
;
1467 hotlist
->label
= g_strdup (_("Top level group"));
1468 hotlist
->up
= hotlist
;
1472 hotlist
->directory
= g_strdup ("Hotlist");
1474 hotlist_file
= fopen (hotlist_file_name
, "r");
1475 if (hotlist_file
== NULL
)
1479 load_group (hotlist
);
1480 hotlist_state
.loaded
= TRUE
;
1482 * just to be sure we got copy
1484 hotlist_state
.modified
= TRUE
;
1485 result
= save_hotlist ();
1486 hotlist_state
.modified
= FALSE
;
1488 remove_old_list
= TRUE
;
1490 message (D_ERROR
, _("Hotlist Load"),
1492 ("MC was unable to write %s file,\nyour old hotlist entries were not deleted"),
1493 MC_USERCONF_DIR PATH_SEP_STR MC_HOTLIST_FILE
);
1497 hot_load_file (hotlist
);
1498 fclose (hotlist_file
);
1499 hotlist_state
.loaded
= TRUE
;
1502 if (remove_old_list
)
1504 GError
*mcerror
= NULL
;
1506 clean_up_hotlist_groups ("Hotlist");
1507 if (!mc_config_save_file (mc_global
.main_config
, &mcerror
))
1508 setup_save_config_show_error (mc_global
.main_config
->ini_path
, &mcerror
);
1510 mc_error_message (&mcerror
, NULL
);
1513 stat (hotlist_file_name
, &stat_buf
);
1514 hotlist_file_mtime
= stat_buf
.st_mtime
;
1515 current_group
= hotlist
;
1518 /* --------------------------------------------------------------------------------------------- */
1521 hot_save_group (struct hotlist
*grp
)
1523 struct hotlist
*current
;
1529 for (i = 0; i < n; i++) \
1530 putc (' ', hotlist_file); \
1533 for (current
= grp
->head
; current
!= NULL
; current
= current
->next
)
1534 switch (current
->type
)
1537 INDENT (list_level
);
1538 fputs ("GROUP \"", hotlist_file
);
1539 for (s
= current
->label
; *s
!= '\0'; s
++)
1541 if (*s
== '"' || *s
== '\\')
1542 putc ('\\', hotlist_file
);
1543 putc (*s
, hotlist_file
);
1545 fputs ("\"\n", hotlist_file
);
1547 hot_save_group (current
);
1549 INDENT (list_level
);
1550 fputs ("ENDGROUP\n", hotlist_file
);
1553 INDENT (list_level
);
1554 fputs ("ENTRY \"", hotlist_file
);
1555 for (s
= current
->label
; *s
!= '\0'; s
++)
1557 if (*s
== '"' || *s
== '\\')
1558 putc ('\\', hotlist_file
);
1559 putc (*s
, hotlist_file
);
1561 fputs ("\" URL \"", hotlist_file
);
1562 for (s
= current
->directory
; *s
!= '\0'; s
++)
1564 if (*s
== '"' || *s
== '\\')
1565 putc ('\\', hotlist_file
);
1566 putc (*s
, hotlist_file
);
1568 fputs ("\"\n", hotlist_file
);
1570 case HL_TYPE_COMMENT
:
1571 fprintf (hotlist_file
, "#%s\n", current
->label
);
1573 case HL_TYPE_DOTDOT
:
1581 /* --------------------------------------------------------------------------------------------- */
1584 add_dotdot_to_list (void)
1586 if (current_group
!= hotlist
&& hotlist_has_dot_dot
)
1587 add2hotlist (g_strdup (".."), g_strdup (".."), HL_TYPE_DOTDOT
, LISTBOX_APPEND_AT_END
);
1590 /* --------------------------------------------------------------------------------------------- */
1591 /*** public functions ****************************************************************************/
1592 /* --------------------------------------------------------------------------------------------- */
1595 add2hotlist_cmd (WPanel
*panel
)
1598 const char *cp
= N_("Label for \"%s\":");
1600 char *label_string
, *label
;
1606 /* extra variable to use it in the button callback */
1609 l
= str_term_width1 (cp
);
1610 label_string
= vfs_path_to_str_flags (panel
->cwd_vpath
, 0, VPF_STRIP_PASSWORD
);
1611 lc_prompt
= g_strdup_printf (cp
, str_trunc (label_string
, COLS
- 2 * UX
- (l
+ 8)));
1613 input_dialog (_("Add to hotlist"), lc_prompt
, MC_HISTORY_HOTLIST_ADD
, label_string
,
1614 INPUT_COMPLETE_NONE
);
1617 if (label
== NULL
|| *label
== '\0')
1619 g_free (label_string
);
1624 add2hotlist (label
, label_string
, HL_TYPE_ENTRY
, LISTBOX_APPEND_AT_END
);
1625 hotlist_state
.modified
= TRUE
;
1629 /* --------------------------------------------------------------------------------------------- */
1632 hotlist_show (hotlist_t list_type
, WPanel
*panel
)
1634 char *target
= NULL
;
1637 /* extra variable to use it in the button callback */
1640 hotlist_state
.type
= list_type
;
1643 init_hotlist (list_type
);
1645 /* display file info */
1646 tty_setcolor (SELECTED_COLOR
);
1648 hotlist_state
.running
= TRUE
;
1649 res
= dlg_run (hotlist_dlg
);
1650 hotlist_state
.running
= FALSE
;
1656 struct hotlist
*hlp
= NULL
;
1658 listbox_get_current (l_hotlist
, &text
, (void **) &hlp
);
1659 target
= g_strdup (hlp
!= NULL
? hlp
->directory
: text
);
1666 /* --------------------------------------------------------------------------------------------- */
1671 gboolean saved
= FALSE
;
1672 struct stat stat_buf
;
1674 if (!hotlist_state
.readonly
&& hotlist_state
.modified
&& hotlist_file_name
!= NULL
)
1676 mc_util_make_backup_if_possible (hotlist_file_name
, ".bak");
1678 hotlist_file
= fopen (hotlist_file_name
, "w");
1679 if (hotlist_file
== NULL
)
1680 mc_util_restore_from_backup_if_possible (hotlist_file_name
, ".bak");
1683 hot_save_group (hotlist
);
1684 fclose (hotlist_file
);
1685 stat (hotlist_file_name
, &stat_buf
);
1686 hotlist_file_mtime
= stat_buf
.st_mtime
;
1687 hotlist_state
.modified
= FALSE
;
1695 /* --------------------------------------------------------------------------------------------- */
1697 * Unload list from memory.
1698 * Don't confuse with hotlist_done() for GUI.
1704 if (hotlist
!= NULL
)
1706 remove_group (hotlist
);
1707 g_free (hotlist
->label
);
1708 g_free (hotlist
->directory
);
1709 MC_PTR_FREE (hotlist
);
1712 hotlist_state
.loaded
= FALSE
;
1714 MC_PTR_FREE (hotlist_file_name
);
1716 current_group
= NULL
;
1718 if (tkn_buf
!= NULL
)
1720 g_string_free (tkn_buf
, TRUE
);
1725 /* --------------------------------------------------------------------------------------------- */