diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-25 02:19:49 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-25 02:19:49 +0000 |
| commit | 3827c1a76e27865a9e2cc9da43c42399ea354e18 (patch) | |
| tree | 8c895cedf52120fb2783c5070fcb00f3bbdfc5af /src/actions.hh | |
| parent | f9107b5c5a4cc03bf544854e8d6d1ba83f6cd979 (diff) | |
python with callbacks!
Diffstat (limited to 'src/actions.hh')
| -rw-r--r-- | src/actions.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions.hh b/src/actions.hh index 7168fce4..1a8d02c4 100644 --- a/src/actions.hh +++ b/src/actions.hh @@ -23,6 +23,16 @@ namespace ob { */ class OBActions : public otk::OtkEventHandler { public: + enum ActionType { + Action_ButtonPress, + Action_ButtonRelease, + Action_EnterWindow, + Action_LeaveWindow, + Action_KeyPress, + Action_MouseMotion, + NUM_ACTIONS + }; + struct ButtonReleaseAction { Window win; unsigned int button; |
