#include <python.hh>
Collaboration diagram for ob::KeyData:
Public Methods | |
KeyData (int screen, Client *client, Time time, unsigned int state, unsigned int key, KeyAction::KA action) | |
Public Attributes | |
int | screen |
Client * | client |
Time | time |
unsigned int | state |
char * | key |
KeyAction::KA | action |
|
Definition at line 213 of file python.hh.
00214 { 00215 this->screen = screen; 00216 this->client = client; 00217 this->time = time; 00218 this->state = state; 00219 this->key = XKeysymToString(XKeycodeToKeysym(**otk::display, 00220 key, 0)); 00221 this->action = action; 00222 } |
|
|
|
|
|
|
|
|
|
|
|
|