1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __python_hh
#define __python_hh
/*! @file python.hh
@brief wee
*/
#include "otk/point.hh"
#include "otk/rect.hh"
extern "C" {
#include <X11/Xlib.h>
#include <Python.h>
}
#include <string>
#include <vector>
namespace ob {
enum MouseContext {
MC_Frame,
MC_Titlebar,
MC_Handle,
MC_Window,
MC_MaximizeButton,
MC_CloseButton,
MC_IconifyButton,
MC_StickyButton,
MC_Grip,
MC_Root,
MC_MenuItem,
NUM_MOUSE_CONTEXT
};
enum MouseAction {
MousePress,
MouseClick,
MouseDoubleClick,
MouseMotion,
NUM_MOUSE_ACTION
};
enum KeyContext {
KC_Menu,
KC_All,
NUM_KEY_CONTEXT
};
#ifndef SWIG
// *** MotionData can be (and is) cast ButtonData!! (in actions.cc) *** //
typedef struct {
PyObject_HEAD;
Window window;
Time time;
unsigned int state;
unsigned int button;
MouseContext context;
MouseAction action;
int xroot;
int yroot;
int pressx;
int pressy;
int press_clientx;
int press_clienty;
int press_clientwidth;
int press_clientheight;
} MotionData;
// *** MotionData can be (and is) cast ButtonData!! (in actions.cc) *** //
typedef struct {
PyObject_HEAD;
Window window;
Time time;
unsigned int state;
unsigned int button;
MouseContext context;
MouseAction action;
} ButtonData;
typedef struct {
PyObject_HEAD;
Window window;
Time time;
unsigned int state;
unsigned int key;
} KeyData;
void python_init(char *argv0);
void python_destroy();
bool python_exec(const std::string &path);
MotionData *new_motion_data(Window window, Time time, unsigned int state,
unsigned int button, MouseContext context,
MouseAction action, int xroot, int yroot,
const otk::Point &initpos,
const otk::Rect &initarea);
ButtonData *new_button_data(Window window, Time time, unsigned int state,
unsigned int button, MouseContext context,
MouseAction action);
KeyData *new_key_data(Window window, Time time, unsigned int state,
unsigned int key);
void python_callback(PyObject *func, PyObject *data);
bool python_get_string(const char *name, std::string *value);
bool python_get_stringlist(const char *name, std::vector<std::string> *value);
#endif
PyObject * mbind(const std::string &button, ob::MouseContext context,
ob::MouseAction action, PyObject *func);
PyObject * kbind(PyObject *keylist, ob::KeyContext context, PyObject *func);
PyObject * kunbind(PyObject *keylist);
void kunbind_all();
void set_reset_key(const std::string &key);
}
#endif // __python_hh
|