]> Dogcows Code - chaz/openbox/blob - src/actions.hh
provide access to the desktop names
[chaz/openbox] / src / actions.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __actions_hh
3 #define __actions_hh
4
5 /*! @file actions.hh
6 @brief The action interface for user-available actions
7 */
8
9 #include "otk/point.hh"
10 #include "otk/rect.hh"
11 #include "otk/eventhandler.hh"
12
13 extern "C" {
14 #include <X11/Xlib.h>
15 #include <Python.h>
16 }
17
18 #include <map>
19
20 namespace ob {
21
22 //! The action interface for user-available actions
23 /*!
24 When these actions are fired, hooks to the guile engine are fired so that
25 guile code is run.
26 */
27 class Actions : public otk::EventHandler {
28 public:
29 #ifndef SWIG // get rid of a swig warning
30 struct ButtonReleaseAction {
31 Window win;
32 unsigned int button;
33 Time time;
34 ButtonReleaseAction() { win = 0; button = 0; time = 0; }
35 };
36
37 struct ButtonPressAction {
38 Window win;
39 unsigned int button;
40 otk::Point pos;
41 otk::Rect clientarea;
42 ButtonPressAction() { button = 0; }
43 };
44 #endif // SWIG
45 private:
46 // milliseconds XXX: config option
47 static const int BUTTONS = 5;
48
49 //! The mouse button currently being watched from a press for a CLICK
50 unsigned int _button;
51 //! The last button release processed for CLICKs
52 ButtonReleaseAction _release;
53 //! The point where the mouse was when each mouse button was pressed
54 /*!
55 Used for motion events as the starting position.
56 */
57 ButtonPressAction *_posqueue[BUTTONS];
58 //! This is set to true once a drag has started and false when done to make
59 //! sure the threshold isnt checked anymore once a drag is underway
60 bool _dragging;
61
62
63 void insertPress(const XButtonEvent &e);
64 void removePress(const XButtonEvent &e);
65
66 public:
67 //! Constructs an Actions object
68 Actions();
69 //! Destroys the Actions object
70 virtual ~Actions();
71
72 virtual void buttonPressHandler(const XButtonEvent &e);
73 virtual void buttonReleaseHandler(const XButtonEvent &e);
74
75 virtual void enterHandler(const XCrossingEvent &e);
76 virtual void leaveHandler(const XCrossingEvent &e);
77
78 virtual void keyPressHandler(const XKeyEvent &e);
79 virtual void keyReleaseHandler(const XKeyEvent &e);
80
81 virtual void motionHandler(const XMotionEvent &e);
82
83 #ifdef XKB
84 virtual void xkbHandler(const XkbEvent &e);
85 #endif // XKB
86
87 };
88
89 }
90
91 #endif // __actions_hh
This page took 0.039856 seconds and 4 git commands to generate.