Changed internal editor to use vfs_path_t objects.
[midnight-commander.git] / src / filemanager / cmd.h
blobba5b338338574ab7619adb0c38e0aac4e5a816b6
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 /* selection flags */
24 typedef enum
26 SELECT_FILES_ONLY = 1 << 0,
27 SELECT_MATCH_CASE = 1 << 1,
28 SELECT_SHELL_PATTERNS = 1 << 2
29 } select_flags_t;
31 /*** structures declarations (and typedefs of structures)*****************************************/
33 /*** global variables defined in .c file *********************************************************/
35 /*** declarations of public functions ************************************************************/
38 #ifdef ENABLE_VFS_FTP
39 void ftplink_cmd (void);
40 #endif
41 #ifdef ENABLE_VFS_FISH
42 void fishlink_cmd (void);
43 #endif
44 #ifdef ENABLE_VFS_SMB
45 void smblink_cmd (void);
46 #endif
47 void undelete_cmd (void);
48 void help_cmd (void);
49 void smart_dirsize_cmd (void);
50 void single_dirsize_cmd (void);
51 void dirsizes_cmd (void);
52 int view_file_at_line (const char *filename, int plain_view, int internal, int start_line);
53 int view_file (const char *filename, int normal, int internal);
54 void view_cmd (void);
55 void view_file_cmd (void);
56 void view_raw_cmd (void);
57 void view_filtered_cmd (void);
58 void do_edit_at_line (const vfs_path_t * what_vpath, gboolean internal, int start_line);
59 void edit_cmd (void);
60 void edit_cmd_new (void);
61 #ifdef USE_INTERNAL_EDIT
62 void edit_cmd_force_internal (void);
63 #endif
64 void copy_cmd (void);
65 void copy_cmd_local (void);
66 void rename_cmd (void);
67 void rename_cmd_local (void);
68 void mkdir_cmd (void);
69 void delete_cmd (void);
70 void delete_cmd_local (void);
71 void find_cmd (void);
72 void filter_cmd (void);
73 void reread_cmd (void);
74 void vfs_list (void);
75 void ext_cmd (void);
76 void edit_mc_menu_cmd (void);
77 void edit_fhl_cmd (void);
78 void hotlist_cmd (void);
79 void compare_dirs_cmd (void);
80 void diff_view_cmd (void);
81 void panel_tree_cmd (void);
82 void link_cmd (link_type_t link_type);
83 void edit_symlink_cmd (void);
84 void select_invert_cmd (void);
85 void unselect_cmd (void);
86 void select_cmd (void);
87 void swap_cmd (void);
88 void view_other_cmd (void);
89 void quick_cd_cmd (void);
90 void save_setup_cmd (void);
91 char *get_random_hint (int force);
92 void user_file_menu_cmd (void);
93 void info_cmd (void);
94 void listing_cmd (void);
95 void change_listing_cmd (void);
96 void quick_cmd_no_menu (void);
97 void info_cmd_no_menu (void);
98 void quick_view_cmd (void);
99 void toggle_listing_cmd (void);
100 void encoding_cmd (void);
102 /*** inline functions ****************************************************************************/
103 #endif /* MC__CMD_H */