-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathxtest.py
More file actions
122 lines (106 loc) · 4.46 KB
/
xtest.py
File metadata and controls
122 lines (106 loc) · 4.46 KB
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
# Xlib.ext.xtest -- XTEST extension module
#
# Copyright (C) 2000 Peter Liljenberg <petli@ctrl-c.liu.se>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation; either version 2.1
# of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc.,
# 59 Temple Place,
# Suite 330,
# Boston, MA 02111-1307 USA
from Xlib import X
from Xlib.protocol import rq
extname = 'XTEST'
CurrentCursor = 1
class GetVersion(rq.ReplyRequest):
_request = rq.Struct(rq.Card8('opcode'),
rq.Opcode(0),
rq.RequestLength(),
rq.Card8('major_version'),
rq.Pad(1),
rq.Card16('minor_version')
)
_reply = rq.Struct(rq.Pad(1),
rq.Card8('major_version'),
rq.Card16('sequence_number'),
rq.Pad(4),
rq.Card16('minor_version'),
rq.Pad(22)
)
def get_version(self, major, minor):
return GetVersion(display = self.display,
opcode = self.display.get_extension_major(extname),
major_version = major,
minor_version = minor)
class CompareCursor(rq.ReplyRequest):
_request = rq.Struct(rq.Card8('opcode'),
rq.Opcode(1),
rq.RequestLength(),
rq.Window('window'),
rq.Cursor('cursor', (X.NONE, CurrentCursor)),
)
_reply = rq.Struct(rq.Pad(1),
rq.Card8('same'),
rq.Card16('sequence_number'),
rq.Pad(28),
)
def compare_cursor(self, cursor):
r = CompareCursor(display = self.display,
opcode = self.display.get_extension_major(extname),
window = self.id,
cursor = cursor)
return r.same
class FakeInput(rq.Request):
_request = rq.Struct(rq.Card8('opcode'),
rq.Opcode(2),
rq.RequestLength(),
rq.Set('event_type', 1, (X.KeyPress,
X.KeyRelease,
5A3A
X.ButtonPress,
X.ButtonRelease,
X.MotionNotify)),
rq.Card8('detail'),
rq.Pad(2),
rq.Card32('time'),
rq.Window('root', (X.NONE, )),
rq.Pad(8),
rq.Int16('x'),
rq.Int16('y'),
rq.Pad(8)
)
def fake_input(self, event_type, detail = 0, time = X.CurrentTime,
root = X.NONE, x = 0, y = 0):
FakeInput(display = self.display,
opcode = self.display.get_extension_major(extname),
event_type = event_type,
detail = detail,
time = time,
root = root,
x = x,
y = y)
class GrabControl(rq.Request):
_request = rq.Struct(rq.Card8('opcode'),
rq.Opcode(3),
rq.RequestLength(),
rq.Bool('impervious'),
rq.Pad(3)
)
def grab_control(self, impervious):
GrabControl(display = self.display,
opcode = self.display.get_extension_major(extname),
impervious = impervious)
def init(disp, info):
disp.extension_add_method('display', 'xtest_get_version', get_version)
disp.extension_add_method('window', 'xtest_compare_cursor', compare_cursor)
disp.extension_add_method('display', 'xtest_fake_input', fake_input)
disp.extension_add_method('display', 'xtest_grab_control', grab_control)