From fef30983e643943df24a7090a7175cfa66f3ba15 Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 15 Jun 2013 15:31:22 +0000 Subject: (svn r25414) -Codechange: Move handling of global hotkeys to HotkeyList. --- src/window_type.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/window_type.h') diff --git a/src/window_type.h b/src/window_type.h index 29fe15dc0..9727cf9f1 100644 --- a/src/window_type.h +++ b/src/window_type.h @@ -691,4 +691,10 @@ struct Window; /** Number to differentiate different windows of the same class */ typedef int32 WindowNumber; +/** State of handling an event. */ +enum EventState { + ES_HANDLED, ///< The passed event is handled. + ES_NOT_HANDLED, ///< The passed event is not handled. +}; + #endif /* WINDOW_TYPE_H */ -- cgit v1.2.3-54-g00ecf