mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-25 13:57:00 +03:00
175f488cb8
* key.c, key.h (numeric_keypad_mode, application_keypad_mode): New functions which encapsulate two hardcoded escape sequences from main.c. * main.c (main): Use the two new functions from key.c * main.c, screen.c: Moved all file selection keys from the default keymap to the keymap for panels in listing mode. Changed *_selection_cmd to *_selection_cmd_panel in panel_keymap (functions in panel_keymap get a WPanel * as first parameter, i.e. the indirection with cpanel isn't necessary). * main.c (midnight_callback): Keys '*' and '-' were not treated when only_leading_plus_minus==0; Optimized the if-clauses a little bit (i.e. removed duplicate checks). More optimation is possible but it would make the whole stuff completly unreadable. * key.c (correct_key_code): KP_ADD, KP_SUBTRACT and KP_MULTIPLY will be translated to +, - and * only if the option alternate_plus_minus is turned off. * learn.c (learn_keys): Turn alternate_plus_minus temporarily on to avoid translation of KP_ADD, KP_SUBTRACT and KP_MULTIPLY in correct_key_code/make sure keypad is in application mode (makes it possible to learn this keys). * cmd.c (reverse_selection_cmd_panel): New function (renamed from reverse_selection_cmd, takes a WPanel * as parameter, references to cpanel changed to panel/the passed parameter). reverse_selection_cmd now simply calls this function with cpanel. This pair was missing among the *_selection_cmd* functions. * cmd.h: Added function prototypes.
72 lines
2.2 KiB
C
72 lines
2.2 KiB
C
#ifndef __CMD_H
|
|
#define __CMD_H
|
|
void netlink_cmd (void);
|
|
void ftplink_cmd (void);
|
|
void undelete_cmd (void);
|
|
void help_cmd (void);
|
|
void dirsizes_cmd (void);
|
|
int view_file_at_line (char *filename, int plain_view, int internal,
|
|
int start_line);
|
|
int view_file (char *filename, int normal, int internal);
|
|
void view_cmd (WPanel *panel);
|
|
void view_simple_cmd (WPanel *panel);
|
|
void filtered_view_cmd (WPanel *panel);
|
|
void filtered_view_cmd_cpanel (void);
|
|
void do_edit (const char *what);
|
|
void do_edit_at_line (const char *what, int start_line);
|
|
void edit_cmd (WPanel *panel);
|
|
void edit_cmd_new (WPanel *panel);
|
|
void copy_cmd (void);
|
|
void ren_cmd (void);
|
|
void reselect_vfs (void);
|
|
void copymove_cmd_with_default (int copy, char *thedefault);
|
|
void mkdir_cmd (WPanel *panel);
|
|
void delete_cmd (void);
|
|
void find_cmd (void);
|
|
void tree_mode_cmd (void);
|
|
void filter_cmd (void);
|
|
void set_panel_filter (WPanel *panel);
|
|
void set_panel_filter_to (WPanel *p, char *allocated_filter_string);
|
|
void reread_cmd (void);
|
|
void do_re_sort (WPanel *panel);
|
|
void quick_view_cmd (void);
|
|
void tree_view_cmd (void);
|
|
void ext_cmd (void);
|
|
void menu_edit_cmd (void);
|
|
void quick_chdir_cmd (void);
|
|
void compare_dirs_cmd (void);
|
|
void history_cmd (void);
|
|
void tree_cmd (void);
|
|
void link_cmd (void);
|
|
void symlink_cmd (void);
|
|
void edit_symlink_cmd (void);
|
|
void other_symlink_cmd (void);
|
|
void reverse_selection_cmd_panel (WPanel *);
|
|
void unselect_cmd_panel (WPanel *);
|
|
void select_cmd_panel (WPanel *);
|
|
void reverse_selection_cmd (void);
|
|
void unselect_cmd (void);
|
|
void select_cmd (void);
|
|
void swap_cmd (void);
|
|
void view_other_cmd (void);
|
|
void mkdir_panel_cmd (void);
|
|
void edit_panel_cmd (void);
|
|
void view_panel_cmd (void);
|
|
void quick_cd_cmd (void);
|
|
void save_setup_cmd (void);
|
|
char *get_random_hint (void);
|
|
void source_routing (void);
|
|
|
|
/* Display mode code */
|
|
void info_cmd (void);
|
|
void tree_cmd (void);
|
|
void listing_cmd (void);
|
|
void sort_cmd (void);
|
|
void switch_to_listing (int panel_index);
|
|
void quick_cmd_no_menu (void);
|
|
void info_cmd_no_menu (void);
|
|
void quick_view_cmd (void);
|
|
void toggle_listing_cmd (void);
|
|
void configure_panel_listing (WPanel *p, int view_type, int use_msformat, char *user, char *status);
|
|
#endif /* __CMD_H */
|