Ticket #3493: user menu selector: make "User", not "Local", the focused button.
[midnight-commander.git] / src / filemanager / cmd.h
blob892f1ce3131bfa7851a6485647f7ea48b5b211ee
1 /** \file cmd.h
2 * \brief Header: routines invoked by a function key
4 * They normally operate on the current panel.
5 */
7 #ifndef MC__CMD_H
8 #define MC__CMD_H
10 #include "lib/global.h"
12 /*** typedefs(not structures) and defined constants **********************************************/
14 /*** enums ***************************************************************************************/
16 typedef enum
18 LINK_HARDLINK = 0,
19 LINK_SYMLINK_ABSOLUTE,
20 LINK_SYMLINK_RELATIVE
21 } link_type_t;
23 /*** structures declarations (and typedefs of structures)*****************************************/
25 /*** global variables defined in .c file *********************************************************/
27 /*** declarations of public functions ************************************************************/
29 #ifdef ENABLE_VFS_FTP
30 void ftplink_cmd (void);
31 #endif
32 #ifdef ENABLE_VFS_SFTP
33 void sftplink_cmd (void);
34 #endif
35 #ifdef ENABLE_VFS_FISH
36 void fishlink_cmd (void);
37 #endif
38 #ifdef ENABLE_VFS_SMB
39 void smblink_cmd (void);
40 #endif
41 void undelete_cmd (void);
42 void help_cmd (void);
43 void smart_dirsize_cmd (void);
44 void single_dirsize_cmd (void);
45 void dirsizes_cmd (void);
46 gboolean view_file_at_line (const vfs_path_t * filename_vpath, gboolean plain_view,
47 gboolean internal, long start_line);
48 gboolean view_file (const vfs_path_t * filename_vpath, gboolean normal, gboolean internal);
49 void view_cmd (void);
50 void view_file_cmd (void);
51 void view_raw_cmd (void);
52 void view_filtered_cmd (void);
53 void edit_file_at_line (const vfs_path_t * what_vpath, gboolean internal, long start_line);
54 void edit_cmd (void);
55 void edit_cmd_new (void);
56 #ifdef USE_INTERNAL_EDIT
57 void edit_cmd_force_internal (void);
58 #endif
59 void copy_cmd (void);
60 void copy_cmd_local (void);
61 void rename_cmd (void);
62 void rename_cmd_local (void);
63 void mkdir_cmd (void);
64 void delete_cmd (void);
65 void delete_cmd_local (void);
66 void find_cmd (void);
67 void filter_cmd (void);
68 void reread_cmd (void);
69 void vfs_list (void);
70 void ext_cmd (void);
71 void edit_mc_menu_cmd (void);
72 void edit_fhl_cmd (void);
73 void hotlist_cmd (void);
74 void compare_dirs_cmd (void);
75 void diff_view_cmd (void);
76 void panel_tree_cmd (void);
77 void link_cmd (link_type_t link_type);
78 void edit_symlink_cmd (void);
79 void swap_cmd (void);
80 void view_other_cmd (void);
81 void quick_cd_cmd (void);
82 void save_setup_cmd (void);
83 char *get_random_hint (int force);
84 void user_file_menu_cmd (void);
85 void info_cmd (void);
86 void listing_cmd (void);
87 void change_listing_cmd (void);
88 void quick_cmd_no_menu (void);
89 void info_cmd_no_menu (void);
90 void quick_view_cmd (void);
91 void toggle_listing_cmd (void);
92 #ifdef HAVE_CHARSET
93 void encoding_cmd (void);
94 #endif
96 /*** inline functions ****************************************************************************/
97 #endif /* MC__CMD_H */