Ticket #2384: allow rebind Fx keys in the file manager.
[midnight-commander.git] / src / filemanager / usermenu.c
blob36957f598ef9500207e2cd45832dc6cb4256bb79
1 /*
2 User Menu implementation
4 Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 2006, 2007, 2011
6 The Free Software Foundation, Inc.
8 This file is part of the Midnight Commander.
10 The Midnight Commander is free software: you can redistribute it
11 and/or modify it under the terms of the GNU General Public License as
12 published by the Free Software Foundation, either version 3 of the License,
13 or (at your option) any later version.
15 The Midnight Commander is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /** \file usermenu.c
25 * \brief Source: user menu implementation
28 #include <config.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <string.h>
36 #include "lib/global.h"
37 #include "lib/tty/tty.h"
38 #include "lib/skin.h"
39 #include "lib/search.h"
40 #include "lib/vfs/vfs.h"
41 #include "lib/strutil.h"
42 #include "lib/util.h"
43 #include "lib/widget.h"
45 #include "src/editor/edit.h" /* WEdit, BLOCK_FILE */
46 #include "src/viewer/mcviewer.h" /* for default_* externs */
48 #include "src/execute.h"
49 #include "src/setup.h"
50 #include "src/history.h"
52 #include "dir.h"
53 #include "midnight.h"
54 #include "layout.h"
56 #include "usermenu.h"
58 /*** global variables ****************************************************************************/
60 /*** file scope macro definitions ****************************************************************/
62 #define MAX_ENTRIES 16
63 #define MAX_ENTRY_LEN 60
65 /*** file scope type declarations ****************************************************************/
67 /*** file scope variables ************************************************************************/
69 static int debug_flag = 0;
70 static int debug_error = 0;
71 static char *menu = NULL;
73 /*** file scope functions ************************************************************************/
74 /* --------------------------------------------------------------------------------------------- */
76 /** strip file's extension */
77 static char *
78 strip_ext (char *ss)
80 register char *s = ss;
81 char *e = NULL;
82 while (*s)
84 if (*s == '.')
85 e = s;
86 if (*s == PATH_SEP && e)
87 e = NULL; /* '.' in *directory* name */
88 s++;
90 if (e)
91 *e = 0;
92 return ss;
95 /* --------------------------------------------------------------------------------------------- */
96 /**
97 * Check for the "shell_patterns" directive. If it's found and valid,
98 * interpret it and move the pointer past the directive. Return the
99 * current pointer.
102 static char *
103 check_patterns (char *p)
105 static const char def_name[] = "shell_patterns=";
106 char *p0 = p;
108 if (strncmp (p, def_name, sizeof (def_name) - 1) != 0)
109 return p0;
111 p += sizeof (def_name) - 1;
112 if (*p == '1')
113 easy_patterns = 1;
114 else if (*p == '0')
115 easy_patterns = 0;
116 else
117 return p0;
119 /* Skip spaces */
120 p++;
121 while (*p == '\n' || *p == '\t' || *p == ' ')
122 p++;
123 return p;
126 /* --------------------------------------------------------------------------------------------- */
127 /** Copies a whitespace separated argument from p to arg. Returns the
128 point after argument. */
130 static char *
131 extract_arg (char *p, char *arg, int size)
133 char *np;
135 while (*p && (*p == ' ' || *p == '\t' || *p == '\n'))
136 p++;
137 /* support quote space .mnu */
138 while (*p && (*p != ' ' || *(p - 1) == '\\') && *p != '\t' && *p != '\n')
140 np = str_get_next_char (p);
141 if (np - p >= size)
142 break;
143 memcpy (arg, p, np - p);
144 arg += np - p;
145 size -= np - p;
146 p = np;
148 *arg = 0;
149 if (!*p || *p == '\n')
150 str_prev_char (&p);
151 return p;
154 /* --------------------------------------------------------------------------------------------- */
155 /* Tests whether the selected file in the panel is of any of the types
156 specified in argument. */
158 static int
159 test_type (WPanel * panel, char *arg)
161 int result = 0; /* False by default */
162 int st_mode = panel->dir.list[panel->selected].st.st_mode;
164 for (; *arg != 0; arg++)
166 switch (*arg)
168 case 'n': /* Not a directory */
169 result |= !S_ISDIR (st_mode);
170 break;
171 case 'r': /* Regular file */
172 result |= S_ISREG (st_mode);
173 break;
174 case 'd': /* Directory */
175 result |= S_ISDIR (st_mode);
176 break;
177 case 'l': /* Link */
178 result |= S_ISLNK (st_mode);
179 break;
180 case 'c': /* Character special */
181 result |= S_ISCHR (st_mode);
182 break;
183 case 'b': /* Block special */
184 result |= S_ISBLK (st_mode);
185 break;
186 case 'f': /* Fifo (named pipe) */
187 result |= S_ISFIFO (st_mode);
188 break;
189 case 's': /* Socket */
190 result |= S_ISSOCK (st_mode);
191 break;
192 case 'x': /* Executable */
193 result |= (st_mode & 0111) ? 1 : 0;
194 break;
195 case 't':
196 result |= panel->marked ? 1 : 0;
197 break;
198 default:
199 debug_error = 1;
200 break;
203 return result;
206 /* --------------------------------------------------------------------------------------------- */
207 /** Calculates the truth value of the next condition starting from
208 p. Returns the point after condition. */
210 static char *
211 test_condition (WEdit * edit_widget, char *p, int *condition)
213 char arg[256];
214 const mc_search_type_t search_type = easy_patterns ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
216 /* Handle one condition */
217 for (; *p != '\n' && *p != '&' && *p != '|'; p++)
219 WPanel *panel = NULL;
221 /* support quote space .mnu */
222 if ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
223 continue;
224 if (*p >= 'a')
225 panel = current_panel;
226 else if (get_other_type () == view_listing)
227 panel = other_panel;
229 *p |= 0x20;
231 switch (*p++)
233 case '!':
234 p = test_condition (edit_widget, p, condition);
235 *condition = !*condition;
236 str_prev_char (&p);
237 break;
238 case 'f': /* file name pattern */
239 p = extract_arg (p, arg, sizeof (arg));
240 #ifdef USE_INTERNAL_EDIT
241 if (edit_widget != NULL)
243 char *edit_filename;
245 edit_filename = edit_get_file_name (edit_widget);
246 *condition = mc_search (arg, edit_filename, search_type) ? 1 : 0;
247 g_free (edit_filename);
249 else
250 #endif
251 *condition = panel != NULL &&
252 mc_search (arg, panel->dir.list[panel->selected].fname, search_type) ? 1 : 0;
253 break;
254 case 'y': /* syntax pattern */
255 #ifdef USE_INTERNAL_EDIT
256 if (edit_widget != NULL)
258 const char *syntax_type = edit_get_syntax_type (edit_widget);
259 if (syntax_type != NULL)
261 p = extract_arg (p, arg, sizeof (arg));
262 *condition = mc_search (arg, syntax_type, MC_SEARCH_T_NORMAL) ? 1 : 0;
265 #endif
266 break;
267 case 'd':
268 p = extract_arg (p, arg, sizeof (arg));
270 char *cwd_str;
272 cwd_str = vfs_path_to_str (panel->cwd_vpath);
273 *condition = panel != NULL && mc_search (arg, cwd_str, search_type) ? 1 : 0;
274 g_free (cwd_str);
276 break;
277 case 't':
278 p = extract_arg (p, arg, sizeof (arg));
279 *condition = panel != NULL && test_type (panel, arg) ? 1 : 0;
280 break;
281 case 'x': /* executable */
283 struct stat status;
285 p = extract_arg (p, arg, sizeof (arg));
286 if (stat (arg, &status) == 0)
287 *condition = is_exe (status.st_mode) ? 1 : 0;
288 else
289 *condition = 0;
290 break;
292 default:
293 debug_error = 1;
294 break;
295 } /* switch */
297 } /* while */
298 return p;
301 /* --------------------------------------------------------------------------------------------- */
302 /** General purpose condition debug output handler */
304 static void
305 debug_out (char *start, char *end, int cond)
307 static char *msg;
308 int len;
310 if (start == NULL && end == NULL)
312 /* Show output */
313 if (debug_flag && msg)
315 len = strlen (msg);
316 if (len)
317 msg[len - 1] = 0;
318 message (D_NORMAL, _("Debug"), "%s", msg);
321 debug_flag = 0;
322 g_free (msg);
323 msg = NULL;
325 else
327 const char *type;
328 char *p;
330 /* Save debug info for later output */
331 if (!debug_flag)
332 return;
333 /* Save the result of the condition */
334 if (debug_error)
336 type = _("ERROR:");
337 debug_error = 0;
339 else if (cond)
340 type = _("True:");
341 else
342 type = _("False:");
343 /* This is for debugging, don't need to be super efficient. */
344 if (end == NULL)
345 p = g_strdup_printf ("%s %s %c \n", msg ? msg : "", type, *start);
346 else
347 p = g_strdup_printf ("%s %s %.*s \n", msg ? msg : "", type, (int) (end - start), start);
348 g_free (msg);
349 msg = p;
353 /* --------------------------------------------------------------------------------------------- */
354 /** Calculates the truth value of one lineful of conditions. Returns
355 the point just before the end of line. */
357 static char *
358 test_line (WEdit * edit_widget, char *p, int *result)
360 int condition;
361 char operator;
362 char *debug_start, *debug_end;
364 /* Repeat till end of line */
365 while (*p && *p != '\n')
367 /* support quote space .mnu */
368 while ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
369 p++;
370 if (!*p || *p == '\n')
371 break;
372 operator = *p++;
373 if (*p == '?')
375 debug_flag = 1;
376 p++;
378 /* support quote space .mnu */
379 while ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
380 p++;
381 if (!*p || *p == '\n')
382 break;
383 condition = 1; /* True by default */
385 debug_start = p;
386 p = test_condition (edit_widget, p, &condition);
387 debug_end = p;
388 /* Add one debug statement */
389 debug_out (debug_start, debug_end, condition);
391 switch (operator)
393 case '+':
394 case '=':
395 /* Assignment */
396 *result = condition;
397 break;
398 case '&': /* Logical and */
399 *result &= condition;
400 break;
401 case '|': /* Logical or */
402 *result |= condition;
403 break;
404 default:
405 debug_error = 1;
406 break;
407 } /* switch */
408 /* Add one debug statement */
409 debug_out (&operator, NULL, *result);
411 } /* while (*p != '\n') */
412 /* Report debug message */
413 debug_out (NULL, NULL, 1);
415 if (!*p || *p == '\n')
416 str_prev_char (&p);
417 return p;
420 /* --------------------------------------------------------------------------------------------- */
421 /** FIXME: recode this routine on version 3.0, it could be cleaner */
423 static void
424 execute_menu_command (WEdit * edit_widget, const char *commands, gboolean show_prompt)
426 FILE *cmd_file;
427 int cmd_file_fd;
428 int expand_prefix_found = 0;
429 char *parameter = 0;
430 gboolean do_quote = FALSE;
431 char lc_prompt[80];
432 int col;
433 vfs_path_t *file_name_vpath;
434 int run_view = 0;
436 /* Skip menu entry title line */
437 commands = strchr (commands, '\n');
438 if (!commands)
440 return;
443 cmd_file_fd = mc_mkstemps (&file_name_vpath, "mcusr", SCRIPT_SUFFIX);
445 if (cmd_file_fd == -1)
447 message (D_ERROR, MSG_ERROR, _("Cannot create temporary command file\n%s"),
448 unix_error_string (errno));
449 vfs_path_free (file_name_vpath);
450 return;
452 cmd_file = fdopen (cmd_file_fd, "w");
453 fputs ("#! /bin/sh\n", cmd_file);
454 commands++;
456 for (col = 0; *commands; commands++)
458 if (col == 0)
460 if (*commands != ' ' && *commands != '\t')
461 break;
462 while (*commands == ' ' || *commands == '\t')
463 commands++;
464 if (*commands == 0)
465 break;
467 col++;
468 if (*commands == '\n')
469 col = 0;
470 if (parameter)
472 if (*commands == '}')
474 char *tmp;
475 *parameter = 0;
476 parameter =
477 input_dialog (_("Parameter"), lc_prompt, MC_HISTORY_FM_MENU_EXEC_PARAM, "");
478 if (!parameter || !*parameter)
480 /* User canceled */
481 fclose (cmd_file);
482 mc_unlink (file_name_vpath);
483 vfs_path_free (file_name_vpath);
484 return;
486 if (do_quote)
488 tmp = name_quote (parameter, 0);
489 fputs (tmp, cmd_file);
490 g_free (tmp);
492 else
493 fputs (parameter, cmd_file);
494 g_free (parameter);
495 parameter = 0;
497 else
499 if (parameter < &lc_prompt[sizeof (lc_prompt) - 1])
501 *parameter++ = *commands;
505 else if (expand_prefix_found)
507 expand_prefix_found = 0;
508 if (g_ascii_isdigit ((gchar) * commands))
510 do_quote = (atoi (commands) != 0);
511 while (g_ascii_isdigit ((gchar) * commands))
512 commands++;
514 if (*commands == '{')
515 parameter = lc_prompt;
516 else
518 char *text = expand_format (edit_widget, *commands, do_quote);
519 fputs (text, cmd_file);
520 g_free (text);
523 else
525 if (*commands == '%')
527 int i = check_format_view (commands + 1);
528 if (i)
530 commands += i;
531 run_view = 1;
533 else
535 do_quote = TRUE; /* Default: Quote expanded macro */
536 expand_prefix_found = 1;
539 else
540 fputc (*commands, cmd_file);
543 fclose (cmd_file);
544 mc_chmod (file_name_vpath, S_IRWXU);
545 if (run_view)
547 char *file_name;
549 file_name = vfs_path_to_str (file_name_vpath);
550 mcview_viewer (file_name, NULL, 0);
551 g_free (file_name);
552 dialog_switch_process_pending ();
554 else
556 /* execute the command indirectly to allow execution even
557 * on no-exec filesystems. */
558 char *file_name, *cmd;
560 file_name = vfs_path_to_str (file_name_vpath);
561 cmd = g_strconcat ("/bin/sh ", file_name, (char *) NULL);
562 g_free (file_name);
563 if (!show_prompt)
565 if (system (cmd) == -1)
566 message (D_ERROR, MSG_ERROR, "%s", _("Error calling program"));
568 else
570 shell_execute (cmd, EXECUTE_HIDE);
572 g_free (cmd);
574 mc_unlink (file_name_vpath);
575 vfs_path_free (file_name_vpath);
578 /* --------------------------------------------------------------------------------------------- */
580 ** Check owner of the menu file. Using menu file is allowed, if
581 ** owner of the menu is root or the actual user. In either case
582 ** file should not be group and word-writable.
584 ** Q. Should we apply this routine to system and home menu (and .ext files)?
587 static int
588 menu_file_own (char *path)
590 struct stat st;
592 if (stat (path, &st) == 0
593 && (!st.st_uid || (st.st_uid == geteuid ())) && ((st.st_mode & (S_IWGRP | S_IWOTH)) == 0))
595 return 1;
597 if (verbose)
599 message (D_NORMAL, _("Warning -- ignoring file"),
600 _("File %s is not owned by root or you or is world writable.\n"
601 "Using it may compromise your security"), path);
603 return 0;
606 /* --------------------------------------------------------------------------------------------- */
607 /*** public functions ****************************************************************************/
608 /* --------------------------------------------------------------------------------------------- */
610 /* Formats defined:
611 %% The % character
612 %f The current file (if non-local vfs, file will be copied locally and
613 %f will be full path to it).
614 %p The current file
615 %d The current working directory
616 %s "Selected files"; the tagged files if any, otherwise the current file
617 %t Tagged files
618 %u Tagged files (and they are untagged on return from expand_format)
619 %view Runs the commands and pipes standard output to the view command.
620 If %view is immediately followed by '{', recognize keywords
621 ascii, hex, nroff and unform
623 If the format letter is in uppercase, it refers to the other panel.
625 With a number followed the % character you can turn quoting on (default)
626 and off. For example:
627 %f quote expanded macro
628 %1f ditto
629 %0f don't quote expanded macro
631 expand_format returns a memory block that must be free()d.
634 /* Returns how many characters we should advance if %view was found */
636 check_format_view (const char *p)
638 const char *q = p;
639 if (!strncmp (p, "view", 4))
641 q += 4;
642 if (*q == '{')
644 for (q++; *q && *q != '}'; q++)
646 if (!strncmp (q, "ascii", 5))
648 mcview_default_hex_mode = 0;
649 q += 4;
651 else if (!strncmp (q, "hex", 3))
653 mcview_default_hex_mode = 1;
654 q += 2;
656 else if (!strncmp (q, "nroff", 5))
658 mcview_default_nroff_flag = 1;
659 q += 4;
661 else if (!strncmp (q, "unform", 6))
663 mcview_default_nroff_flag = 0;
664 q += 5;
667 if (*q == '}')
668 q++;
670 return q - p;
672 return 0;
675 /* --------------------------------------------------------------------------------------------- */
678 check_format_cd (const char *p)
680 return (strncmp (p, "cd", 2)) ? 0 : 3;
683 /* --------------------------------------------------------------------------------------------- */
684 /* Check if p has a "^var\{var-name\}" */
685 /* Returns the number of skipped characters (zero on not found) */
686 /* V will be set to the expanded variable name */
689 check_format_var (const char *p, char **v)
691 const char *q = p;
692 char *var_name;
693 const char *value;
694 const char *dots = 0;
696 *v = 0;
697 if (!strncmp (p, "var{", 4))
699 for (q += 4; *q && *q != '}'; q++)
701 if (*q == ':')
702 dots = q + 1;
704 if (!*q)
705 return 0;
707 if (!dots || dots == q + 5)
709 message (D_ERROR,
710 _("Format error on file Extensions File"),
711 !dots ? _("The %%var macro has no default")
712 : _("The %%var macro has no variable"));
713 return 0;
716 /* Copy the variable name */
717 var_name = g_strndup (p + 4, dots - 2 - (p + 3));
719 value = getenv (var_name);
720 g_free (var_name);
721 if (value)
723 *v = g_strdup (value);
724 return q - p;
726 var_name = g_strndup (dots, q - dots);
727 *v = var_name;
728 return q - p;
730 return 0;
733 /* --------------------------------------------------------------------------------------------- */
735 char *
736 expand_format (struct WEdit *edit_widget, char c, gboolean do_quote)
738 WPanel *panel = NULL;
739 char *(*quote_func) (const char *, int);
740 char *fname = NULL;
741 char *result;
742 char c_lc;
744 #ifndef USE_INTERNAL_EDIT
745 (void) edit_widget;
746 #endif
748 if (c == '%')
749 return g_strdup ("%");
751 if (mc_global.mc_run_mode == MC_RUN_FULL)
753 if (g_ascii_islower ((gchar) c))
754 panel = current_panel;
755 else
757 if (get_other_type () != view_listing)
758 return g_strdup ("");
759 panel = other_panel;
761 fname = g_strdup (panel->dir.list[panel->selected].fname);
763 #ifdef USE_INTERNAL_EDIT
764 else if (mc_global.mc_run_mode == MC_RUN_EDITOR)
765 fname = edit_get_file_name (edit_widget);
766 #endif
768 if (do_quote)
769 quote_func = name_quote;
770 else
771 quote_func = fake_name_quote;
773 c_lc = g_ascii_tolower ((gchar) c);
775 switch (c_lc)
777 case 'f':
778 case 'p':
779 result = (*quote_func) (fname, 0);
780 goto ret;
781 case 'x':
782 result = (*quote_func) (extension (fname), 0);
783 goto ret;
784 case 'd':
786 char *cwd;
787 char *qstr;
789 if (panel)
790 cwd = vfs_path_to_str (panel->cwd_vpath);
791 else
792 cwd = vfs_get_current_dir ();
794 qstr = (*quote_func) (cwd, 0);
796 g_free (cwd);
798 result = qstr;
799 goto ret;
801 case 'i': /* indent equal number cursor position in line */
802 #ifdef USE_INTERNAL_EDIT
803 if (edit_widget)
805 result = g_strnfill (edit_get_curs_col (edit_widget), ' ');
806 goto ret;
808 #endif
809 break;
810 case 'y': /* syntax type */
811 #ifdef USE_INTERNAL_EDIT
812 if (edit_widget)
814 const char *syntax_type = edit_get_syntax_type (edit_widget);
815 if (syntax_type != NULL)
817 result = g_strdup (syntax_type);
818 goto ret;
821 #endif
822 break;
823 case 'k': /* block file name */
824 case 'b': /* block file name / strip extension */
826 #ifdef USE_INTERNAL_EDIT
827 if (edit_widget)
829 char *file;
831 file = mc_config_get_full_path (EDIT_BLOCK_FILE);
832 result = (*quote_func) (file, 0);
833 g_free (file);
834 goto ret;
836 #endif
837 if (c_lc == 'b')
839 result = strip_ext ((*quote_func) (fname, 0));
840 goto ret;
842 break;
844 case 'n': /* strip extension in editor */
845 #ifdef USE_INTERNAL_EDIT
846 if (edit_widget)
848 result = strip_ext ((*quote_func) (fname, 0));
849 goto ret;
851 #endif
852 break;
853 case 'm': /* menu file name */
854 if (menu)
856 result = (*quote_func) (menu, 0);
857 goto ret;
859 break;
860 case 's':
861 if (!panel || !panel->marked)
863 result = (*quote_func) (fname, 0);
864 goto ret;
867 /* Fall through */
869 case 't':
870 case 'u':
872 GString *block;
873 int i;
875 if (panel == NULL)
877 result = g_strdup ("");
878 goto ret;
881 block = g_string_sized_new (16);
883 for (i = 0; i < panel->count; i++)
884 if (panel->dir.list[i].f.marked)
886 char *tmp;
888 tmp = (*quote_func) (panel->dir.list[i].fname, 0);
889 g_string_append (block, tmp);
890 g_string_append_c (block, ' ');
891 g_free (tmp);
893 if (c_lc == 'u')
894 do_file_mark (panel, i, 0);
896 result = g_string_free (block, FALSE);
897 goto ret;
898 } /* sub case block */
899 } /* switch */
900 result = g_strdup ("% ");
901 result[1] = c;
902 ret:
903 g_free (fname);
904 return result;
907 /* --------------------------------------------------------------------------------------------- */
909 * If edit_widget is NULL then we are called from the mc menu,
910 * otherwise we are called from the mcedit menu.
913 gboolean
914 user_menu_cmd (struct WEdit * edit_widget, const char *menu_file, int selected_entry)
916 char *p;
917 char *data, **entries;
918 int max_cols, menu_lines, menu_limit;
919 int col, i, accept_entry = 1;
920 int selected, old_patterns;
921 Listbox *listbox;
922 gboolean res = FALSE;
923 gboolean interactive = TRUE;
925 if (!vfs_current_is_local ())
927 message (D_ERROR, MSG_ERROR, "%s", _("Cannot execute commands on non-local filesystems"));
928 return FALSE;
930 if (menu_file != NULL)
931 menu = g_strdup (menu_file);
932 else
933 menu = g_strdup (edit_widget ? EDIT_LOCAL_MENU : MC_LOCAL_MENU);
934 if (!exist_file (menu) || !menu_file_own (menu))
936 if (menu_file != NULL)
938 message (D_ERROR, MSG_ERROR, _("Cannot open file %s\n%s"), menu,
939 unix_error_string (errno));
940 g_free (menu);
941 menu = NULL;
942 return FALSE;
945 g_free (menu);
946 if (edit_widget)
947 menu = mc_config_get_full_path (EDIT_HOME_MENU);
948 else
949 menu = mc_config_get_full_path (MC_USERMENU_FILE);
952 if (!exist_file (menu))
954 g_free (menu);
955 menu =
956 mc_build_filename (mc_config_get_home_dir (),
957 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
958 if (!exist_file (menu))
960 g_free (menu);
961 menu =
962 mc_build_filename (mc_global.sysconfig_dir,
963 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
964 if (!exist_file (menu))
966 g_free (menu);
967 menu = mc_build_filename
968 (mc_global.share_data_dir, edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU,
969 NULL);
975 if (!g_file_get_contents (menu, &data, NULL, NULL))
977 message (D_ERROR, MSG_ERROR, _("Cannot open file%s\n%s"), menu, unix_error_string (errno));
978 g_free (menu);
979 menu = NULL;
980 return FALSE;
983 max_cols = 0;
984 selected = 0;
985 menu_limit = 0;
986 entries = 0;
988 /* Parse the menu file */
989 old_patterns = easy_patterns;
990 p = check_patterns (data);
991 for (menu_lines = col = 0; *p; str_next_char (&p))
993 if (menu_lines >= menu_limit)
995 char **new_entries;
997 menu_limit += MAX_ENTRIES;
998 new_entries = g_try_realloc (entries, sizeof (new_entries[0]) * menu_limit);
1000 if (new_entries == NULL)
1001 break;
1003 entries = new_entries;
1004 new_entries += menu_limit;
1005 while (--new_entries >= &entries[menu_lines])
1006 *new_entries = NULL;
1008 if (col == 0 && !entries[menu_lines])
1010 if (*p == '#')
1012 /* show prompt if first line of external script is #interactive */
1013 if (selected_entry >= 0 && strncmp (p, "#silent", 7) == 0)
1014 interactive = FALSE;
1015 /* A commented menu entry */
1016 accept_entry = 1;
1018 else if (*p == '+')
1020 if (*(p + 1) == '=')
1022 /* Combined adding and default */
1023 p = test_line (edit_widget, p + 1, &accept_entry);
1024 if (selected == 0 && accept_entry)
1025 selected = menu_lines;
1027 else
1029 /* A condition for adding the entry */
1030 p = test_line (edit_widget, p, &accept_entry);
1033 else if (*p == '=')
1035 if (*(p + 1) == '+')
1037 /* Combined adding and default */
1038 p = test_line (edit_widget, p + 1, &accept_entry);
1039 if (selected == 0 && accept_entry)
1040 selected = menu_lines;
1042 else
1044 /* A condition for making the entry default */
1045 i = 1;
1046 p = test_line (edit_widget, p, &i);
1047 if (selected == 0 && i)
1048 selected = menu_lines;
1051 else if (*p != ' ' && *p != '\t' && str_isprint (p))
1053 /* A menu entry title line */
1054 if (accept_entry)
1055 entries[menu_lines] = p;
1056 else
1057 accept_entry = 1;
1060 if (*p == '\n')
1062 if (entries[menu_lines])
1064 menu_lines++;
1065 accept_entry = 1;
1067 max_cols = max (max_cols, col);
1068 col = 0;
1070 else
1072 if (*p == '\t')
1073 *p = ' ';
1074 col++;
1078 if (menu_lines == 0)
1080 message (D_ERROR, MSG_ERROR, _("No suitable entries found in %s"), menu);
1081 res = FALSE;
1083 else
1085 if (selected_entry >= 0)
1086 selected = selected_entry;
1087 else
1089 max_cols = min (max (max_cols, col), MAX_ENTRY_LEN);
1091 /* Create listbox */
1092 listbox = create_listbox_window (menu_lines, max_cols + 2, _("User menu"),
1093 "[Menu File Edit]");
1094 /* insert all the items found */
1095 for (i = 0; i < menu_lines; i++)
1097 p = entries[i];
1098 LISTBOX_APPEND_TEXT (listbox, (unsigned char) p[0],
1099 extract_line (p, p + MAX_ENTRY_LEN), p);
1101 /* Select the default entry */
1102 listbox_select_entry (listbox->list, selected);
1104 selected = run_listbox (listbox);
1106 if (selected >= 0)
1108 execute_menu_command (edit_widget, entries[selected], interactive);
1109 res = TRUE;
1112 do_refresh ();
1115 easy_patterns = old_patterns;
1116 g_free (menu);
1117 menu = NULL;
1118 g_free (entries);
1119 g_free (data);
1120 return res;
1123 /* --------------------------------------------------------------------------------------------- */