~ubuntu-branches/ubuntu/karmic/parti-all/karmic

« back to all changes in this revision

Viewing changes to wimpiggy/lowlevel/constants.pxi

  • Committer: Bazaar Package Importer
  • Author(s): Evan Dandrea
  • Date: 2009-06-02 12:44:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090602124400-xbkgh9vxjciey732
Tags: upstream-0.0.6
ImportĀ upstreamĀ versionĀ 0.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
cdef extern from *:
 
2
    unsigned int XNone "None"
 
3
    unsigned int PointerWindow
 
4
    unsigned int InputFocus
 
5
    unsigned int PointerRoot
 
6
    unsigned int CurrentTime
 
7
    unsigned int IsUnmapped
 
8
    unsigned int IsUnviewable
 
9
    unsigned int IsViewable
 
10
    unsigned int NoEventMask
 
11
    unsigned int KeyPressMask
 
12
    unsigned int KeyReleaseMask
 
13
    unsigned int ButtonPressMask
 
14
    unsigned int ButtonReleaseMask
 
15
    unsigned int EnterWindowMask
 
16
    unsigned int LeaveWindowMask
 
17
    unsigned int PointerMotionMask
 
18
    unsigned int PointerMotionHintMask
 
19
    unsigned int Button1MotionMask
 
20
    unsigned int Button2MotionMask
 
21
    unsigned int Button3MotionMask
 
22
    unsigned int Button4MotionMask
 
23
    unsigned int Button5MotionMask
 
24
    unsigned int ButtonMotionMask
 
25
    unsigned int KeymapStateMask
 
26
    unsigned int ExposureMask
 
27
    unsigned int VisibilityChangeMask
 
28
    unsigned int StructureNotifyMask
 
29
    unsigned int ResizeRedirectMask
 
30
    unsigned int SubstructureNotifyMask
 
31
    unsigned int SubstructureRedirectMask
 
32
    unsigned int FocusChangeMask
 
33
    unsigned int PropertyChangeMask
 
34
    unsigned int ColormapChangeMask
 
35
    unsigned int OwnerGrabButtonMask
 
36
    unsigned int KeyPress
 
37
    unsigned int KeyRelease
 
38
    unsigned int ButtonPress
 
39
    unsigned int ButtonRelease
 
40
    unsigned int MotionNotify
 
41
    unsigned int EnterNotify
 
42
    unsigned int LeaveNotify
 
43
    unsigned int FocusIn
 
44
    unsigned int FocusOut
 
45
    unsigned int KeymapNotify
 
46
    unsigned int Expose
 
47
    unsigned int GraphicsExpose
 
48
    unsigned int NoExpose
 
49
    unsigned int VisibilityNotify
 
50
    unsigned int CreateNotify
 
51
    unsigned int DestroyNotify
 
52
    unsigned int UnmapNotify
 
53
    unsigned int MapNotify
 
54
    unsigned int MapRequest
 
55
    unsigned int ReparentNotify
 
56
    unsigned int ConfigureNotify
 
57
    unsigned int ConfigureRequest
 
58
    unsigned int GravityNotify
 
59
    unsigned int ResizeRequest
 
60
    unsigned int CirculateNotify
 
61
    unsigned int CirculateRequest
 
62
    unsigned int PropertyNotify
 
63
    unsigned int SelectionClear
 
64
    unsigned int SelectionRequest
 
65
    unsigned int SelectionNotify
 
66
    unsigned int ColormapNotify
 
67
    unsigned int ClientMessage
 
68
    unsigned int MappingNotify
 
69
    unsigned int LASTEvent
 
70
    unsigned int PropModeReplace
 
71
    unsigned int PropModePrepend
 
72
    unsigned int PropModeAppend
 
73
    unsigned int CWX
 
74
    unsigned int CWY
 
75
    unsigned int CWWidth
 
76
    unsigned int CWHeight
 
77
    unsigned int CWBorderWidth
 
78
    unsigned int CWSibling
 
79
    unsigned int CWStackMode
 
80
    unsigned int Above
 
81
    unsigned int Below
 
82
    unsigned int BottomIf
 
83
    unsigned int TopIf
 
84
    unsigned int Opposite
 
85
    unsigned int Success
 
86
    unsigned int BadRequest
 
87
    unsigned int BadValue
 
88
    unsigned int BadWindow
 
89
    unsigned int BadPixmap
 
90
    unsigned int BadAtom
 
91
    unsigned int BadCursor
 
92
    unsigned int BadFont
 
93
    unsigned int BadMatch
 
94
    unsigned int BadDrawable
 
95
    unsigned int BadAccess
 
96
    unsigned int BadAlloc
 
97
    unsigned int BadColor
 
98
    unsigned int BadGC
 
99
    unsigned int BadIDChoice
 
100
    unsigned int BadName
 
101
    unsigned int BadLength
 
102
    unsigned int BadImplementation
 
103
    unsigned int FirstExtensionError
 
104
    unsigned int LastExtensionError
 
105
    unsigned int USPosition
 
106
    unsigned int USSize
 
107
    unsigned int PPosition
 
108
    unsigned int PSize
 
109
    unsigned int PMinSize
 
110
    unsigned int PMaxSize
 
111
    unsigned int PResizeInc
 
112
    unsigned int PAspect
 
113
    unsigned int PBaseSize
 
114
    unsigned int PWinGravity
 
115
    unsigned int InputHint
 
116
    unsigned int StateHint
 
117
    unsigned int IconPixmapHint
 
118
    unsigned int IconWindowHint
 
119
    unsigned int IconPositionHint
 
120
    unsigned int IconMaskHint
 
121
    unsigned int WindowGroupHint
 
122
    unsigned int XUrgencyHint
 
123
    unsigned int WithdrawnState
 
124
    unsigned int NormalState
 
125
    unsigned int IconicState
 
126
    unsigned int RevertToParent
 
127
    unsigned int RevertToPointerRoot
 
128
    unsigned int RevertToNone
 
129
    unsigned int NotifyNormal
 
130
    unsigned int NotifyGrab
 
131
    unsigned int NotifyUngrab
 
132
    unsigned int NotifyAncestor
 
133
    unsigned int NotifyVirtual
 
134
    unsigned int NotifyInferior
 
135
    unsigned int NotifyNonlinear
 
136
    unsigned int NotifyNonlinearVirtual
 
137
    unsigned int NotifyPointer
 
138
    unsigned int NotifyPointerRoot
 
139
    unsigned int NotifyDetailNone
 
140
    unsigned int GrabModeSync
 
141
    unsigned int GrabModeAsync
 
142
    unsigned int AnyKey
 
143
    unsigned int AnyModifier
 
144
const = {
 
145
    "XNone": XNone,
 
146
    "PointerWindow": PointerWindow,
 
147
    "InputFocus": InputFocus,
 
148
    "PointerRoot": PointerRoot,
 
149
    "CurrentTime": CurrentTime,
 
150
    "IsUnmapped": IsUnmapped,
 
151
    "IsUnviewable": IsUnviewable,
 
152
    "IsViewable": IsViewable,
 
153
    "NoEventMask": NoEventMask,
 
154
    "KeyPressMask": KeyPressMask,
 
155
    "KeyReleaseMask": KeyReleaseMask,
 
156
    "ButtonPressMask": ButtonPressMask,
 
157
    "ButtonReleaseMask": ButtonReleaseMask,
 
158
    "EnterWindowMask": EnterWindowMask,
 
159
    "LeaveWindowMask": LeaveWindowMask,
 
160
    "PointerMotionMask": PointerMotionMask,
 
161
    "PointerMotionHintMask": PointerMotionHintMask,
 
162
    "Button1MotionMask": Button1MotionMask,
 
163
    "Button2MotionMask": Button2MotionMask,
 
164
    "Button3MotionMask": Button3MotionMask,
 
165
    "Button4MotionMask": Button4MotionMask,
 
166
    "Button5MotionMask": Button5MotionMask,
 
167
    "ButtonMotionMask": ButtonMotionMask,
 
168
    "KeymapStateMask": KeymapStateMask,
 
169
    "ExposureMask": ExposureMask,
 
170
    "VisibilityChangeMask": VisibilityChangeMask,
 
171
    "StructureNotifyMask": StructureNotifyMask,
 
172
    "ResizeRedirectMask": ResizeRedirectMask,
 
173
    "SubstructureNotifyMask": SubstructureNotifyMask,
 
174
    "SubstructureRedirectMask": SubstructureRedirectMask,
 
175
    "FocusChangeMask": FocusChangeMask,
 
176
    "PropertyChangeMask": PropertyChangeMask,
 
177
    "ColormapChangeMask": ColormapChangeMask,
 
178
    "OwnerGrabButtonMask": OwnerGrabButtonMask,
 
179
    "KeyPress": KeyPress,
 
180
    "KeyRelease": KeyRelease,
 
181
    "ButtonPress": ButtonPress,
 
182
    "ButtonRelease": ButtonRelease,
 
183
    "MotionNotify": MotionNotify,
 
184
    "EnterNotify": EnterNotify,
 
185
    "LeaveNotify": LeaveNotify,
 
186
    "FocusIn": FocusIn,
 
187
    "FocusOut": FocusOut,
 
188
    "KeymapNotify": KeymapNotify,
 
189
    "Expose": Expose,
 
190
    "GraphicsExpose": GraphicsExpose,
 
191
    "NoExpose": NoExpose,
 
192
    "VisibilityNotify": VisibilityNotify,
 
193
    "CreateNotify": CreateNotify,
 
194
    "DestroyNotify": DestroyNotify,
 
195
    "UnmapNotify": UnmapNotify,
 
196
    "MapNotify": MapNotify,
 
197
    "MapRequest": MapRequest,
 
198
    "ReparentNotify": ReparentNotify,
 
199
    "ConfigureNotify": ConfigureNotify,
 
200
    "ConfigureRequest": ConfigureRequest,
 
201
    "GravityNotify": GravityNotify,
 
202
    "ResizeRequest": ResizeRequest,
 
203
    "CirculateNotify": CirculateNotify,
 
204
    "CirculateRequest": CirculateRequest,
 
205
    "PropertyNotify": PropertyNotify,
 
206
    "SelectionClear": SelectionClear,
 
207
    "SelectionRequest": SelectionRequest,
 
208
    "SelectionNotify": SelectionNotify,
 
209
    "ColormapNotify": ColormapNotify,
 
210
    "ClientMessage": ClientMessage,
 
211
    "MappingNotify": MappingNotify,
 
212
    "LASTEvent": LASTEvent,
 
213
    "PropModeReplace": PropModeReplace,
 
214
    "PropModePrepend": PropModePrepend,
 
215
    "PropModeAppend": PropModeAppend,
 
216
    "CWX": CWX,
 
217
    "CWY": CWY,
 
218
    "CWWidth": CWWidth,
 
219
    "CWHeight": CWHeight,
 
220
    "CWBorderWidth": CWBorderWidth,
 
221
    "CWSibling": CWSibling,
 
222
    "CWStackMode": CWStackMode,
 
223
    "Above": Above,
 
224
    "Below": Below,
 
225
    "BottomIf": BottomIf,
 
226
    "TopIf": TopIf,
 
227
    "Opposite": Opposite,
 
228
    "Success": Success,
 
229
    "BadRequest": BadRequest,
 
230
    "BadValue": BadValue,
 
231
    "BadWindow": BadWindow,
 
232
    "BadPixmap": BadPixmap,
 
233
    "BadAtom": BadAtom,
 
234
    "BadCursor": BadCursor,
 
235
    "BadFont": BadFont,
 
236
    "BadMatch": BadMatch,
 
237
    "BadDrawable": BadDrawable,
 
238
    "BadAccess": BadAccess,
 
239
    "BadAlloc": BadAlloc,
 
240
    "BadColor": BadColor,
 
241
    "BadGC": BadGC,
 
242
    "BadIDChoice": BadIDChoice,
 
243
    "BadName": BadName,
 
244
    "BadLength": BadLength,
 
245
    "BadImplementation": BadImplementation,
 
246
    "FirstExtensionError": FirstExtensionError,
 
247
    "LastExtensionError": LastExtensionError,
 
248
    "USPosition": USPosition,
 
249
    "USSize": USSize,
 
250
    "PPosition": PPosition,
 
251
    "PSize": PSize,
 
252
    "PMinSize": PMinSize,
 
253
    "PMaxSize": PMaxSize,
 
254
    "PResizeInc": PResizeInc,
 
255
    "PAspect": PAspect,
 
256
    "PBaseSize": PBaseSize,
 
257
    "PWinGravity": PWinGravity,
 
258
    "InputHint": InputHint,
 
259
    "StateHint": StateHint,
 
260
    "IconPixmapHint": IconPixmapHint,
 
261
    "IconWindowHint": IconWindowHint,
 
262
    "IconPositionHint": IconPositionHint,
 
263
    "IconMaskHint": IconMaskHint,
 
264
    "WindowGroupHint": WindowGroupHint,
 
265
    "XUrgencyHint": XUrgencyHint,
 
266
    "WithdrawnState": WithdrawnState,
 
267
    "NormalState": NormalState,
 
268
    "IconicState": IconicState,
 
269
    "RevertToParent": RevertToParent,
 
270
    "RevertToPointerRoot": RevertToPointerRoot,
 
271
    "RevertToNone": RevertToNone,
 
272
    "NotifyNormal": NotifyNormal,
 
273
    "NotifyGrab": NotifyGrab,
 
274
    "NotifyUngrab": NotifyUngrab,
 
275
    "NotifyAncestor": NotifyAncestor,
 
276
    "NotifyVirtual": NotifyVirtual,
 
277
    "NotifyInferior": NotifyInferior,
 
278
    "NotifyNonlinear": NotifyNonlinear,
 
279
    "NotifyNonlinearVirtual": NotifyNonlinearVirtual,
 
280
    "NotifyPointer": NotifyPointer,
 
281
    "NotifyPointerRoot": NotifyPointerRoot,
 
282
    "NotifyDetailNone": NotifyDetailNone,
 
283
    "GrabModeSync": GrabModeSync,
 
284
    "GrabModeAsync": GrabModeAsync,
 
285
    "AnyKey": AnyKey,
 
286
    "AnyModifier": AnyModifier,
 
287
}