2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__VIEWER_ACTION_H
|
|
|
|
#define EL__VIEWER_ACTION_H
|
|
|
|
|
|
|
|
#include "config/kbdbind.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
struct session;
|
|
|
|
|
|
|
|
enum frame_event_status {
|
|
|
|
/* The event was not handled */
|
|
|
|
FRAME_EVENT_IGNORED,
|
|
|
|
/* The event was handled, and the screen should be redrawn */
|
|
|
|
FRAME_EVENT_REFRESH,
|
|
|
|
/* The event was handled, and the screen should _not_ be redrawn */
|
|
|
|
FRAME_EVENT_OK,
|
|
|
|
/* The event was handled, and the current session was destroyed */
|
|
|
|
FRAME_EVENT_SESSION_DESTROYED,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum frame_event_status do_action(struct session *ses,
|
2022-01-28 09:26:43 -05:00
|
|
|
main_action_T action_id, int verbose);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|