diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-31 09:17:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-31 09:17:16 +0000 |
| commit | 1161a90a70b21d3064a9dee62c72dd4be3025ada (patch) | |
| tree | 211019053542140ae18e5411a254d535b35a5806 /src/actions.hh | |
| parent | 098fa0ce20f440da3140adad2cfe8ae9a6854d46 (diff) | |
add click_raise global var
Diffstat (limited to 'src/actions.hh')
| -rw-r--r-- | src/actions.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/actions.hh b/src/actions.hh index f210f6ce..8b6633be 100644 --- a/src/actions.hh +++ b/src/actions.hh @@ -33,6 +33,8 @@ public: Action_LeaveWindow, Action_KeyPress, Action_MouseMotion, + Action_NewWindow, + Action_CloseWindow, NUM_ACTIONS }; @@ -67,6 +69,10 @@ public: virtual void keyPressHandler(const XKeyEvent &e); virtual void motionHandler(const XMotionEvent &e); + + virtual void mapRequestHandler(const XMapRequestEvent &e); + virtual void unmapHandler(const XUnmapEvent &e); + virtual void destroyHandler(const XDestroyWindowEvent &e); }; } |
