mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
0f6d4310ad
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this by grafting.
26 lines
688 B
C
26 lines
688 B
C
/* $Id: action.h,v 1.13 2005/06/14 16:44:52 jonas Exp $ */
|
|
|
|
#ifndef EL__VIEWER_ACTION_H
|
|
#define EL__VIEWER_ACTION_H
|
|
|
|
#include "config/kbdbind.h"
|
|
#include "viewer/text/view.h"
|
|
|
|
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,
|
|
enum main_action action_id, int verbose);
|
|
|
|
#endif
|