root/src/history.h

/* [previous][next][first][last][top][bottom][index][help]  */

INCLUDED FROM


   1 /** \file src/history.h
   2  *  \brief Header: defines history section names
   3  */
   4 
   5 #ifndef MC__HISTORY_H
   6 #define MC__HISTORY_H
   7 
   8 /*** typedefs(not structures) and defined constants **********************************************/
   9 
  10 /* history section names */
  11 
  12 #define MC_HISTORY_EDIT_SAVE_AS       "mc.edit.save-as"
  13 #define MC_HISTORY_EDIT_LOAD          "mc.edit.load"
  14 #define MC_HISTORY_EDIT_SAVE_BLOCK    "mc.edit.save-block"
  15 #define MC_HISTORY_EDIT_INSERT_FILE   "mc.edit.insert-file"
  16 #define MC_HISTORY_EDIT_GOTO_LINE     "mc.edit.goto-line"
  17 #define MC_HISTORY_EDIT_SORT          "mc.edit.sort"
  18 #define MC_HISTORY_EDIT_PASTE_EXTCMD  "mc.edit.paste-extcmd"
  19 #define MC_HISTORY_EDIT_REPEAT        "mc.edit.repeat-action"
  20 
  21 #define MC_HISTORY_FM_VIEW_FILE       "mc.fm.view-file"
  22 #define MC_HISTORY_FM_MKDIR           "mc.fm.mkdir"
  23 #define MC_HISTORY_FM_LINK            "mc.fm.link"
  24 #define MC_HISTORY_FM_EDIT_LINK       "mc.fm.edit-link"
  25 #define MC_HISTORY_FM_TREE_COPY       "mc.fm.tree-copy"
  26 #define MC_HISTORY_FM_TREE_MOVE       "mc.fm.tree-move"
  27 #define MC_HISTORY_FM_PANELIZE_ADD    "mc.fm.panelize.add"
  28 #define MC_HISTORY_FM_FILTERED_VIEW   "mc.fm.filtered-view"
  29 #define MC_HISTORY_FM_PANEL_SELECT    ":select_cmd: Select "
  30 #define MC_HISTORY_FM_PANEL_UNSELECT  ":select_cmd: Unselect "
  31 #define MC_HISTORY_FM_PANEL_FILTER    "mc.fm.panel-filter"
  32 #define MC_HISTORY_FM_MENU_EXEC_PARAM "mc.fm.menu.exec.parameter"
  33 
  34 #define MC_HISTORY_ESC_TIMEOUT        "mc.esc.timeout"
  35 
  36 #define MC_HISTORY_VIEW_GOTO          "mc.view.goto"
  37 #define MC_HISTORY_VIEW_GOTO_LINE     "mc.view.goto-line"
  38 #define MC_HISTORY_VIEW_GOTO_ADDR     "mc.view.goto-addr"
  39 #define MC_HISTORY_VIEW_SEARCH_REGEX  "mc.view.search.regex"
  40 
  41 #define MC_HISTORY_FTPFS_ACCOUNT      "mc.vfs.ftp.account"
  42 
  43 #define MC_HISTORY_EXT_PARAMETER      "mc.ext.parameter"
  44 
  45 #define MC_HISTORY_HOTLIST_ADD        "mc.hotlist.add"
  46 
  47 #define MC_HISTORY_SHARED_SEARCH      "mc.shared.search"
  48 
  49 #define MC_HISTORY_YDIFF_GOTO_LINE    "mc.ydiff.goto-line"
  50 
  51 /*** enums ***************************************************************************************/
  52 
  53 /*** structures declarations (and typedefs of structures)*****************************************/
  54 
  55 /*** global variables defined in .c file *********************************************************/
  56 
  57 /*** declarations of public functions ************************************************************/
  58 
  59 /*** inline functions ****************************************************************************/
  60 
  61 #endif /* MC__HISTORY_H */

/* [previous][next][first][last][top][bottom][index][help]  */