5 #include <sys/time.h> /* time_t */
7 #include "lib/global.h"
9 /*** typedefs(not structures) and defined constants **********************************************/
12 #define KEYMAP_SECTION_MAIN "main"
13 #define KEYMAP_SECTION_MAIN_EXT "main:xmap"
14 #define KEYMAP_SECTION_PANEL "panel"
15 #define KEYMAP_SECTION_DIALOG "dialog"
16 #define KEYMAP_SECTION_INPUT "input"
17 #define KEYMAP_SECTION_LISTBOX "listbox"
18 #define KEYMAP_SECTION_TREE "tree"
19 #define KEYMAP_SECTION_HELP "help"
20 #define KEYMAP_SECTION_EDITOR "editor"
21 #define KEYMAP_SECTION_EDITOR_EXT "editor:xmap"
22 #define KEYMAP_SECTION_VIEWER "viewer"
23 #define KEYMAP_SECTION_VIEWER_HEX "viewer:hex"
24 #define KEYMAP_SECTION_DIFFVIEWER "diffviewer"
26 #define KEYMAP_SHORTCUT_LENGTH 32 /* FIXME: is 32 bytes enough for shortcut? */
28 #define CK_PipeBlock(i) (10000+(i))
29 #define CK_Macro(i) (20000+(i))
30 #define CK_MacroLast CK_Macro(0x7FFF)
32 /*** enums ***************************************************************************************/
36 /* special commands */
107 CK_DeleteToWordBegin
,
132 CK_EditForceInternal
= 100L,
140 CK_PanelListingChange
,
146 CK_OptionsDisplayBits
,
147 CK_EditExtensionsFile
,
148 CK_EditFileHighlightFile
,
159 CK_OptionsAppearance
,
168 CK_PanelListingSwitch
,
179 CK_LinkSymbolicRelative
,
182 CK_PutCurrentSelected
,
183 CK_PutCurrentFullSelected
,
192 CK_PanelOtherCd
= 200L,
231 /* cursor movements */
268 CK_MarkParagraphDown
,
269 /* column mark commands */
271 CK_MarkColumnPageDown
,
276 CK_MarkColumnScrollUp
,
277 CK_MarkColumnScrollDown
,
278 CK_MarkColumnParagraphUp
,
279 CK_MarkColumnParagraphDown
,
283 CK_MacroStartStopRecord
,
285 CK_RepeatStartRecord
,
287 CK_RepeatStartStopRecord
,
288 /* window commands */
297 CK_SpellCheckCurrentWord
,
298 CK_SpellCheckSelectLang
,
323 CK_SearchForwardContinue
,
324 CK_SearchBackwardContinue
,
327 CK_ShowSymbols
= 700L,
340 /*** structures declarations (and typedefs of structures)*****************************************/
342 typedef struct name_keymap_t
348 typedef struct key_config_t
350 time_t mtime
; /* mtime at the moment we read config file */
356 /* The global keymaps are of this type */
357 typedef struct global_keymap_t
361 char caption
[KEYMAP_SHORTCUT_LENGTH
];
364 /*** global variables defined in .c file *********************************************************/
366 /*** declarations of public functions ************************************************************/
368 void keybind_cmd_bind (GArray
* keymap
, const char *keybind
, long action
);
369 long keybind_lookup_action (const char *name
);
370 const char *keybind_lookup_actionname (long action
);
371 const char *keybind_lookup_keymap_shortcut (const global_keymap_t
* keymap
, long action
);
372 long keybind_lookup_keymap_command (const global_keymap_t
* keymap
, long key
);
374 /*** inline functions ****************************************************************************/
376 #endif /* MC__KEYBIND_H */