1 // -*- mode: C++; indent-tabs-mode: nil; -*-
6 @brief The action interface for user-available actions
9 #include "otk/display.hh"
10 #include "otk/point.hh"
11 #include "otk/rect.hh"
12 #include "otk/eventhandler.hh"
16 //! The action interface for user-available actions
18 When these actions are fired, hooks to the guile engine are fired so that
21 class OBActions
: public otk::OtkEventHandler
{
23 struct MouseButtonAction
{
27 MouseButtonAction() { win
= 0; button
= 0; time
= 0; }
31 // milliseconds XXX: config option
32 static const unsigned int DOUBLECLICKDELAY
;
34 //! The last 2 button release processed for CLICKs
35 MouseButtonAction _release
;
36 //! The mouse button currently being watched from a press for a CLICK
38 //! The window the last enter action occured on (where the mouse is located)
41 void insertPress(Window win
, unsigned int button
, Time time
);
47 virtual void buttonPressHandler(const XButtonEvent
&e
);
48 virtual void buttonReleaseHandler(const XButtonEvent
&e
);
53 //! Notify that a mouse enter action has occured on a window.
55 @param win The window on which the action was performed.
56 @param modifiers The modifier state for the action.
58 void enter(Window win
, unsigned int modifiers
);
60 //! Notify that a mouse leave action has occured on a window.
62 @param modifiers The modifier state for the action.
64 void leave(unsigned int modifiers
);
66 //! Notify that a mouse drag is taking place.
68 @param win The window the drag is on
69 @param delta The change in position of the mouse pointer
70 @param modifiers The modifier state during the drag.
72 void drag(Window win
, otk::Point delta
, unsigned int modifiers
,
73 unsigned int button
, Time time
);
75 //! Notify that a key press has occured on a window.
77 @param win The window the key press was on
78 @param modifiers The modifier state for the action.
79 @param keycode The keycode of the key pressed.
81 void key(Window win
, unsigned int modifiers
, unsigned int keycode
);
86 #endif // __actions_hh