mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
32 lines
820 B
C
32 lines
820 B
C
#ifndef EL__CONFIG_DIALOGS_H
|
|
#define EL__CONFIG_DIALOGS_H
|
|
|
|
#include "bfu/hierbox.h"
|
|
#include "config/kbdbind.h"
|
|
#include "session/session.h"
|
|
#include "terminal/terminal.h"
|
|
#include "util/memlist.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern struct hierbox_browser option_browser;
|
|
extern struct hierbox_browser keybinding_browser;
|
|
|
|
void write_config_dialog(struct terminal *term, char *config_file,
|
|
int secsave_error, int stdio_error);
|
|
void options_manager(struct session *);
|
|
void keybinding_manager(struct session *);
|
|
|
|
struct listbox_item *get_keybinding_action_box_item(keymap_id_T keymap_id, action_id_T action_id);
|
|
void init_keybinding_listboxes(struct keymap keymap_table[KEYMAP_MAX],
|
|
const struct action_list actions[]);
|
|
void done_keybinding_listboxes(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|