]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_extras.py
c8da773691f203f42174936a6308e3397d0537f9
[wxWidgets.git] / wxPython / src / _extras.py
1 #----------------------------------------------------------------------------
2 # Name: _extra.py
3 # Purpose: This file is appended to the shadow class file generated
4 # by SWIG. We add some unSWIGable things here.
5 #
6 # Author: Robin Dunn
7 #
8 # Created: 6/30/97
9 # Copyright: (c) 1998 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------------
12
13 import sys
14
15 #----------------------------------------------------------------------
16 # This gives this module's dictionary to the C++ extension code...
17
18 _wxSetDictionary(vars())
19
20
21 #----------------------------------------------------------------------
22 #----------------------------------------------------------------------
23 # Helper function to link python methods to wxWindows virtual
24 # functions by name.
25
26 def _checkForCallback(obj, name, event, theID=-1):
27 try: cb = getattr(obj, name)
28 except: pass
29 else: obj.Connect(theID, -1, event, cb)
30
31
32 #----------------------------------------------------------------------
33 #----------------------------------------------------------------------
34 # functions that look and act like the C++ Macros of the same name
35
36
37 # Miscellaneous
38 def EVT_SIZE(win, func):
39 win.Connect(-1, -1, wxEVT_SIZE, func)
40
41 def EVT_MOVE(win, func):
42 win.Connect(-1, -1, wxEVT_MOVE, func)
43
44 def EVT_CLOSE(win, func):
45 win.Connect(-1, -1, wxEVT_CLOSE_WINDOW, func)
46
47 def EVT_PAINT(win, func):
48 win.Connect(-1, -1, wxEVT_PAINT, func)
49
50 def EVT_ERASE_BACKGROUND(win, func):
51 win.Connect(-1, -1, wxEVT_ERASE_BACKGROUND, func)
52
53 def EVT_CHAR(win, func):
54 win.Connect(-1, -1, wxEVT_CHAR, func)
55
56 def EVT_CHAR_HOOK(win, func):
57 win.Connect(-1, -1, wxEVT_CHAR_HOOK, func)
58
59 def EVT_KEY_DOWN(win, func):
60 win.Connect(-1, -1, wxEVT_KEY_DOWN, func)
61
62 def EVT_KEY_UP(win, func):
63 win.Connect(-1, -1, wxEVT_KEY_UP, func)
64
65 def EVT_MENU_HIGHLIGHT(win, id, func):
66 win.Connect(id, -1, wxEVT_MENU_HIGHLIGHT, func)
67
68 def EVT_MENU_HIGHLIGHT_ALL(win, func):
69 win.Connect(-1, -1, wxEVT_MENU_HIGHLIGHT, func)
70
71 def EVT_SET_FOCUS(win, func):
72 win.Connect(-1, -1, wxEVT_SET_FOCUS, func)
73
74 def EVT_KILL_FOCUS(win, func):
75 win.Connect(-1, -1, wxEVT_KILL_FOCUS, func)
76
77 def EVT_CHILD_FOCUS(win, func):
78 win.Connect(-1, -1, wxEVT_CHILD_FOCUS, func)
79
80 def EVT_ACTIVATE(win, func):
81 win.Connect(-1, -1, wxEVT_ACTIVATE, func)
82
83 def EVT_ACTIVATE_APP(win, func):
84 win.Connect(-1, -1, wxEVT_ACTIVATE_APP, func)
85
86 def EVT_END_SESSION(win, func):
87 win.Connect(-1, -1, wxEVT_END_SESSION, func)
88
89 def EVT_QUERY_END_SESSION(win, func):
90 win.Connect(-1, -1, wxEVT_QUERY_END_SESSION, func)
91
92 def EVT_DROP_FILES(win, func):
93 win.Connect(-1, -1, wxEVT_DROP_FILES, func)
94
95 def EVT_INIT_DIALOG(win, func):
96 win.Connect(-1, -1, wxEVT_INIT_DIALOG, func)
97
98 def EVT_SYS_COLOUR_CHANGED(win, func):
99 win.Connect(-1, -1, wxEVT_SYS_COLOUR_CHANGED, func)
100
101 def EVT_SHOW(win, func):
102 win.Connect(-1, -1, wxEVT_SHOW, func)
103
104 def EVT_MAXIMIZE(win, func):
105 win.Connect(-1, -1, wxEVT_MAXIMIZE, func)
106
107 def EVT_ICONIZE(win, func):
108 win.Connect(-1, -1, wxEVT_ICONIZE, func)
109
110 def EVT_NAVIGATION_KEY(win, func):
111 win.Connect(-1, -1, wxEVT_NAVIGATION_KEY, func)
112
113 def EVT_PALETTE_CHANGED(win, func):
114 win.Connect(-1, -1, wxEVT_PALETTE_CHANGED, func)
115
116 def EVT_QUERY_NEW_PALETTE(win, func):
117 win.Connect(-1, -1, wxEVT_QUERY_NEW_PALETTE, func)
118
119 def EVT_WINDOW_CREATE(win, func):
120 win.Connect(-1, -1, wxEVT_CREATE, func)
121
122 def EVT_WINDOW_DESTROY(win, func):
123 win.Connect(-1, -1, wxEVT_DESTROY, func)
124
125
126
127 def EVT_IDLE(win, func):
128 win.Connect(-1, -1, wxEVT_IDLE, func)
129
130 def EVT_UPDATE_UI(win, id, func):
131 win.Connect(id, -1, wxEVT_UPDATE_UI, func)
132
133 def EVT_UPDATE_UI_RANGE(win, id, id2, func):
134 win.Connect(id, id2, wxEVT_UPDATE_UI, func)
135
136
137 # Mouse Events
138 def EVT_LEFT_DOWN(win, func):
139 win.Connect(-1, -1, wxEVT_LEFT_DOWN, func)
140
141 def EVT_LEFT_UP(win, func):
142 win.Connect(-1, -1, wxEVT_LEFT_UP, func)
143
144 def EVT_MIDDLE_DOWN(win, func):
145 win.Connect(-1, -1, wxEVT_MIDDLE_DOWN, func)
146
147 def EVT_MIDDLE_UP(win, func):
148 win.Connect(-1, -1, wxEVT_MIDDLE_UP, func)
149
150 def EVT_RIGHT_DOWN(win, func):
151 win.Connect(-1, -1, wxEVT_RIGHT_DOWN, func)
152
153 def EVT_RIGHT_UP(win, func):
154 win.Connect(-1, -1, wxEVT_RIGHT_UP, func)
155
156 def EVT_MOTION(win, func):
157 win.Connect(-1, -1, wxEVT_MOTION, func)
158
159 def EVT_LEFT_DCLICK(win, func):
160 win.Connect(-1, -1, wxEVT_LEFT_DCLICK, func)
161
162 def EVT_MIDDLE_DCLICK(win, func):
163 win.Connect(-1, -1, wxEVT_MIDDLE_DCLICK, func)
164
165 def EVT_RIGHT_DCLICK(win, func):
166 win.Connect(-1, -1, wxEVT_RIGHT_DCLICK, func)
167
168 def EVT_LEAVE_WINDOW(win, func):
169 win.Connect(-1, -1, wxEVT_LEAVE_WINDOW, func)
170
171 def EVT_ENTER_WINDOW(win, func):
172 win.Connect(-1, -1, wxEVT_ENTER_WINDOW, func)
173
174 def EVT_MOUSEWHEEL(win, func):
175 win.Connect(-1, -1, wxEVT_MOUSEWHEEL, func)
176
177 # all mouse events
178 def EVT_MOUSE_EVENTS(win, func):
179 win.Connect(-1, -1, wxEVT_LEFT_DOWN, func)
180 win.Connect(-1, -1, wxEVT_LEFT_UP, func)
181 win.Connect(-1, -1, wxEVT_MIDDLE_DOWN, func)
182 win.Connect(-1, -1, wxEVT_MIDDLE_UP, func)
183 win.Connect(-1, -1, wxEVT_RIGHT_DOWN, func)
184 win.Connect(-1, -1, wxEVT_RIGHT_UP, func)
185 win.Connect(-1, -1, wxEVT_MOTION, func)
186 win.Connect(-1, -1, wxEVT_LEFT_DCLICK, func)
187 win.Connect(-1, -1, wxEVT_MIDDLE_DCLICK, func)
188 win.Connect(-1, -1, wxEVT_RIGHT_DCLICK, func)
189 win.Connect(-1, -1, wxEVT_LEAVE_WINDOW, func)
190 win.Connect(-1, -1, wxEVT_ENTER_WINDOW, func)
191
192 # EVT_COMMAND
193 def EVT_COMMAND(win, id, cmd, func):
194 win.Connect(id, -1, cmd, func)
195
196 def EVT_COMMAND_RANGE(win, id1, id2, cmd, func):
197 win.Connect(id1, id2, cmd, func)
198
199
200 # Scrolling
201 def EVT_SCROLL(win, func):
202 win.Connect(-1, -1, wxEVT_SCROLL_TOP, func)
203 win.Connect(-1, -1, wxEVT_SCROLL_BOTTOM, func)
204 win.Connect(-1, -1, wxEVT_SCROLL_LINEUP, func)
205 win.Connect(-1, -1, wxEVT_SCROLL_LINEDOWN, func)
206 win.Connect(-1, -1, wxEVT_SCROLL_PAGEUP, func)
207 win.Connect(-1, -1, wxEVT_SCROLL_PAGEDOWN, func)
208 win.Connect(-1, -1, wxEVT_SCROLL_THUMBTRACK,func)
209 win.Connect(-1, -1, wxEVT_SCROLL_THUMBRELEASE,func)
210
211 def EVT_SCROLL_TOP(win, func):
212 win.Connect(-1, -1, wxEVT_SCROLL_TOP, func)
213
214 def EVT_SCROLL_BOTTOM(win, func):
215 win.Connect(-1, -1, wxEVT_SCROLL_BOTTOM, func)
216
217 def EVT_SCROLL_LINEUP(win, func):
218 win.Connect(-1, -1, wxEVT_SCROLL_LINEUP, func)
219
220 def EVT_SCROLL_LINEDOWN(win, func):
221 win.Connect(-1, -1, wxEVT_SCROLL_LINEDOWN, func)
222
223 def EVT_SCROLL_PAGEUP(win, func):
224 win.Connect(-1, -1, wxEVT_SCROLL_PAGEUP, func)
225
226 def EVT_SCROLL_PAGEDOWN(win, func):
227 win.Connect(-1, -1, wxEVT_SCROLL_PAGEDOWN, func)
228
229 def EVT_SCROLL_THUMBTRACK(win, func):
230 win.Connect(-1, -1, wxEVT_SCROLL_THUMBTRACK, func)
231
232 def EVT_SCROLL_THUMBRELEASE(win, func):
233 win.Connect(-1, -1, wxEVT_SCROLL_THUMBRELEASE, func)
234
235
236
237 # Scrolling, with an id
238 def EVT_COMMAND_SCROLL(win, id, func):
239 win.Connect(id, -1, wxEVT_SCROLL_TOP, func)
240 win.Connect(id, -1, wxEVT_SCROLL_BOTTOM, func)
241 win.Connect(id, -1, wxEVT_SCROLL_LINEUP, func)
242 win.Connect(id, -1, wxEVT_SCROLL_LINEDOWN, func)
243 win.Connect(id, -1, wxEVT_SCROLL_PAGEUP, func)
244 win.Connect(id, -1, wxEVT_SCROLL_PAGEDOWN, func)
245 win.Connect(id, -1, wxEVT_SCROLL_THUMBTRACK,func)
246 win.Connect(id, -1, wxEVT_SCROLL_THUMBRELEASE,func)
247
248 def EVT_COMMAND_SCROLL_TOP(win, id, func):
249 win.Connect(id, -1, wxEVT_SCROLL_TOP, func)
250
251 def EVT_COMMAND_SCROLL_BOTTOM(win, id, func):
252 win.Connect(id, -1, wxEVT_SCROLL_BOTTOM, func)
253
254 def EVT_COMMAND_SCROLL_LINEUP(win, id, func):
255 win.Connect(id, -1, wxEVT_SCROLL_LINEUP, func)
256
257 def EVT_COMMAND_SCROLL_LINEDOWN(win, id, func):
258 win.Connect(id, -1, wxEVT_SCROLL_LINEDOWN, func)
259
260 def EVT_COMMAND_SCROLL_PAGEUP(win, id, func):
261 win.Connect(id, -1, wxEVT_SCROLL_PAGEUP, func)
262
263 def EVT_COMMAND_SCROLL_PAGEDOWN(win, id, func):
264 win.Connect(id, -1, wxEVT_SCROLL_PAGEDOWN, func)
265
266 def EVT_COMMAND_SCROLL_THUMBTRACK(win, id, func):
267 win.Connect(id, -1, wxEVT_SCROLL_THUMBTRACK, func)
268
269 def EVT_COMMAND_SCROLL_THUMBRELEASE(win, id, func):
270 win.Connect(id, -1, wxEVT_SCROLL_THUMBRELEASE, func)
271
272 #---
273 def EVT_SCROLLWIN(win, func):
274 win.Connect(-1, -1, wxEVT_SCROLLWIN_TOP, func)
275 win.Connect(-1, -1, wxEVT_SCROLLWIN_BOTTOM, func)
276 win.Connect(-1, -1, wxEVT_SCROLLWIN_LINEUP, func)
277 win.Connect(-1, -1, wxEVT_SCROLLWIN_LINEDOWN, func)
278 win.Connect(-1, -1, wxEVT_SCROLLWIN_PAGEUP, func)
279 win.Connect(-1, -1, wxEVT_SCROLLWIN_PAGEDOWN, func)
280 win.Connect(-1, -1, wxEVT_SCROLLWIN_THUMBTRACK, func)
281 win.Connect(-1, -1, wxEVT_SCROLLWIN_THUMBRELEASE,func)
282
283 def EVT_SCROLLWIN_TOP(win, func):
284 win.Connect(-1, -1, wxEVT_SCROLLWIN_TOP, func)
285
286 def EVT_SCROLLWIN_BOTTOM(win, func):
287 win.Connect(-1, -1, wxEVT_SCROLLWIN_BOTTOM, func)
288
289 def EVT_SCROLLWIN_LINEUP(win, func):
290 win.Connect(-1, -1, wxEVT_SCROLLWIN_LINEUP, func)
291
292 def EVT_SCROLLWIN_LINEDOWN(win, func):
293 win.Connect(-1, -1, wxEVT_SCROLLWIN_LINEDOWN, func)
294
295 def EVT_SCROLLWIN_PAGEUP(win, func):
296 win.Connect(-1, -1, wxEVT_SCROLLWIN_PAGEUP, func)
297
298 def EVT_SCROLLWIN_PAGEDOWN(win, func):
299 win.Connect(-1, -1, wxEVT_SCROLLWIN_PAGEDOWN, func)
300
301 def EVT_SCROLLWIN_THUMBTRACK(win, func):
302 win.Connect(-1, -1, wxEVT_SCROLLWIN_THUMBTRACK, func)
303
304 def EVT_SCROLLWIN_THUMBRELEASE(win, func):
305 win.Connect(-1, -1, wxEVT_SCROLLWIN_THUMBRELEASE, func)
306
307
308
309 # Scrolling, with an id
310 def EVT_COMMAND_SCROLLWIN(win, id, func):
311 win.Connect(id, -1, wxEVT_SCROLLWIN_TOP, func)
312 win.Connect(id, -1, wxEVT_SCROLLWIN_BOTTOM, func)
313 win.Connect(id, -1, wxEVT_SCROLLWIN_LINEUP, func)
314 win.Connect(id, -1, wxEVT_SCROLLWIN_LINEDOWN, func)
315 win.Connect(id, -1, wxEVT_SCROLLWIN_PAGEUP, func)
316 win.Connect(id, -1, wxEVT_SCROLLWIN_PAGEDOWN, func)
317 win.Connect(id, -1, wxEVT_SCROLLWIN_THUMBTRACK, func)
318 win.Connect(id, -1, wxEVT_SCROLLWIN_THUMBRELEASE,func)
319
320 def EVT_COMMAND_SCROLLWIN_TOP(win, id, func):
321 win.Connect(id, -1, wxEVT_SCROLLWIN_TOP, func)
322
323 def EVT_COMMAND_SCROLLWIN_BOTTOM(win, id, func):
324 win.Connect(id, -1, wxEVT_SCROLLWIN_BOTTOM, func)
325
326 def EVT_COMMAND_SCROLLWIN_LINEUP(win, id, func):
327 win.Connect(id, -1, wxEVT_SCROLLWIN_LINEUP, func)
328
329 def EVT_COMMAND_SCROLLWIN_LINEDOWN(win, id, func):
330 win.Connect(id, -1, wxEVT_SCROLLWIN_LINEDOWN, func)
331
332 def EVT_COMMAND_SCROLLWIN_PAGEUP(win, id, func):
333 win.Connect(id, -1, wxEVT_SCROLLWIN_PAGEUP, func)
334
335 def EVT_COMMAND_SCROLLWIN_PAGEDOWN(win, id, func):
336 win.Connect(id, -1, wxEVT_SCROLLWIN_PAGEDOWN, func)
337
338 def EVT_COMMAND_SCROLLWIN_THUMBTRACK(win, id, func):
339 win.Connect(id, -1, wxEVT_SCROLLWIN_THUMBTRACK, func)
340
341 def EVT_COMMAND_SCROLLWIN_THUMBRELEASE(win, id, func):
342 win.Connect(id, -1, wxEVT_SCROLLWIN_THUMBRELEASE, func)
343
344
345 # Convenience commands
346 def EVT_BUTTON(win, id, func):
347 win.Connect(id, -1, wxEVT_COMMAND_BUTTON_CLICKED, func)
348
349 def EVT_CHECKBOX(win, id, func):
350 win.Connect(id, -1, wxEVT_COMMAND_CHECKBOX_CLICKED, func)
351
352 def EVT_CHOICE(win, id, func):
353 win.Connect(id, -1, wxEVT_COMMAND_CHOICE_SELECTED, func)
354
355 def EVT_LISTBOX(win, id, func):
356 win.Connect(id, -1, wxEVT_COMMAND_LISTBOX_SELECTED, func)
357
358 def EVT_LISTBOX_DCLICK(win, id, func):
359 win.Connect(id, -1, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, func)
360
361 def EVT_TEXT(win, id, func):
362 win.Connect(id, -1, wxEVT_COMMAND_TEXT_UPDATED, func)
363
364 def EVT_TEXT_ENTER(win, id, func):
365 win.Connect(id, -1, wxEVT_COMMAND_TEXT_ENTER, func)
366
367 def EVT_TEXT_URL(win, id, func):
368 win.Connect(id, -1, wxEVT_COMMAND_TEXT_URL, func)
369
370 def EVT_TEXT_MAXLEN(win, id, func):
371 win.Connect(id, -1, wxEVT_COMMAND_TEXT_MAXLEN, func)
372
373 def EVT_MENU(win, id, func):
374 win.Connect(id, -1, wxEVT_COMMAND_MENU_SELECTED, func)
375
376 def EVT_MENU_RANGE(win, id1, id2, func):
377 win.Connect(id1, id2, wxEVT_COMMAND_MENU_SELECTED, func)
378
379 def EVT_SLIDER(win, id, func):
380 win.Connect(id, -1, wxEVT_COMMAND_SLIDER_UPDATED, func)
381
382 def EVT_RADIOBOX(win, id, func):
383 win.Connect(id, -1, wxEVT_COMMAND_RADIOBOX_SELECTED, func)
384
385 def EVT_RADIOBUTTON(win, id, func):
386 win.Connect(id, -1, wxEVT_COMMAND_RADIOBUTTON_SELECTED, func)
387
388 def EVT_VLBOX(win, id, func):
389 win.Connect(id, -1, wxEVT_COMMAND_VLBOX_SELECTED, func)
390
391 def EVT_COMBOBOX(win, id, func):
392 win.Connect(id, -1, wxEVT_COMMAND_COMBOBOX_SELECTED, func)
393
394 def EVT_TOOL(win, id, func):
395 win.Connect(id, -1, wxEVT_COMMAND_TOOL_CLICKED, func)
396
397 def EVT_TOOL_RANGE(win, id, id2, func):
398 win.Connect(id, id2, wxEVT_COMMAND_TOOL_CLICKED, func)
399
400 def EVT_TOOL_RCLICKED(win, id, func):
401 win.Connect(id, -1, wxEVT_COMMAND_TOOL_RCLICKED, func)
402
403 def EVT_TOOL_RCLICKED_RANGE(win, id, id2, func):
404 win.Connect(id, id2, wxEVT_COMMAND_TOOL_RCLICKED, func)
405
406 def EVT_TOOL_ENTER(win, id, func):
407 win.Connect(id, -1, wxEVT_COMMAND_TOOL_ENTER, func)
408
409 def EVT_CHECKLISTBOX(win, id, func):
410 win.Connect(id, -1, wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, func)
411
412 def EVT_SPINCTRL(win, id, func):
413 win.Connect(id, -1, wxEVT_COMMAND_SPINCTRL_UPDATED, func)
414
415
416
417 # Generic command events
418
419 def EVT_COMMAND_LEFT_CLICK(win, id, func):
420 win.Connect(id, -1, wxEVT_COMMAND_LEFT_CLICK, func)
421
422 def EVT_COMMAND_LEFT_DCLICK(win, id, func):
423 win.Connect(id, -1, wxEVT_COMMAND_LEFT_DCLICK, func)
424
425 def EVT_COMMAND_RIGHT_CLICK(win, id, func):
426 win.Connect(id, -1, wxEVT_COMMAND_RIGHT_CLICK, func)
427
428 def EVT_COMMAND_RIGHT_DCLICK(win, id, func):
429 win.Connect(id, -1, wxEVT_COMMAND_RIGHT_DCLICK, func)
430
431 def EVT_COMMAND_SET_FOCUS(win, id, func):
432 win.Connect(id, -1, wxEVT_COMMAND_SET_FOCUS, func)
433
434 def EVT_COMMAND_KILL_FOCUS(win, id, func):
435 win.Connect(id, -1, wxEVT_COMMAND_KILL_FOCUS, func)
436
437 def EVT_COMMAND_ENTER(win, id, func):
438 win.Connect(id, -1, wxEVT_COMMAND_ENTER, func)
439
440
441 # wxNotebook events
442 def EVT_NOTEBOOK_PAGE_CHANGED(win, id, func):
443 win.Connect(id, -1, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, func)
444
445 def EVT_NOTEBOOK_PAGE_CHANGING(win, id, func):
446 win.Connect(id, -1, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, func)
447
448
449 # wxSpinButton
450 def EVT_SPIN_UP(win, id, func):
451 win.Connect(id, -1, wxEVT_SCROLL_LINEUP, func)
452
453 def EVT_SPIN_DOWN(win, id, func):
454 win.Connect(id, -1, wxEVT_SCROLL_LINEDOWN, func)
455
456 def EVT_SPIN(win, id, func):
457 win.Connect(id, -1, wxEVT_SCROLL_THUMBTRACK,func)
458
459
460 # wxTaskBarIcon
461 def EVT_TASKBAR_MOVE(win, func):
462 win.Connect(-1, -1, wxEVT_TASKBAR_MOVE, func)
463
464 def EVT_TASKBAR_LEFT_DOWN(win, func):
465 win.Connect(-1, -1, wxEVT_TASKBAR_LEFT_DOWN, func)
466
467 def EVT_TASKBAR_LEFT_UP(win, func):
468 win.Connect(-1, -1, wxEVT_TASKBAR_LEFT_UP, func)
469
470 def EVT_TASKBAR_RIGHT_DOWN(win, func):
471 win.Connect(-1, -1, wxEVT_TASKBAR_RIGHT_DOWN, func)
472
473 def EVT_TASKBAR_RIGHT_UP(win, func):
474 win.Connect(-1, -1, wxEVT_TASKBAR_RIGHT_UP, func)
475
476 def EVT_TASKBAR_LEFT_DCLICK(win, func):
477 win.Connect(-1, -1, wxEVT_TASKBAR_LEFT_DCLICK, func)
478
479 def EVT_TASKBAR_RIGHT_DCLICK(win, func):
480 win.Connect(-1, -1, wxEVT_TASKBAR_RIGHT_DCLICK, func)
481
482
483 # wxSashWindow
484 def EVT_SASH_DRAGGED(win, id, func):
485 win.Connect(id, -1, wxEVT_SASH_DRAGGED, func)
486
487 def EVT_SASH_DRAGGED_RANGE(win, id1, id2, func):
488 win.Connect(id1, id2, wxEVT_SASH_DRAGGED, func)
489
490 def EVT_QUERY_LAYOUT_INFO(win, func):
491 win.Connect(-1, -1, wxEVT_EVT_QUERY_LAYOUT_INFO, func)
492
493 def EVT_CALCULATE_LAYOUT(win, func):
494 win.Connect(-1, -1, wxEVT_EVT_CALCULATE_LAYOUT, func)
495
496
497 #wxSplitterWindow
498 def EVT_SPLITTER_SASH_POS_CHANGING(win, id, func):
499 win.Connect(id, -1, wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, func)
500
501 def EVT_SPLITTER_SASH_POS_CHANGED(win, id, func):
502 win.Connect(id, -1, wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, func)
503
504 def EVT_SPLITTER_UNSPLIT(win, id, func):
505 win.Connect(id, -1, wxEVT_COMMAND_SPLITTER_UNSPLIT, func)
506
507 def EVT_SPLITTER_DOUBLECLICKED(win, id, func):
508 win.Connect(id, -1, wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, func)
509
510
511 # wxTimer
512 def EVT_TIMER(win, id, func):
513 win.Connect(id, -1, wxEVT_TIMER, func)
514
515 # wxProcess
516 def EVT_END_PROCESS(eh, id, func):
517 eh.Connect(id, -1, wxEVT_END_PROCESS, func)
518
519
520 # wxJoyStick
521 def EVT_JOY_DOWN(win, func):
522 win.Connect(-1, -1, wxEVT_JOY_BUTTON_DOWN, func)
523
524 def EVT_JOY_UP(win, func):
525 win.Connect(-1, -1, wxEVT_JOY_BUTTON_UP, func)
526
527 def EVT_JOY_MOVE(win, func):
528 win.Connect(-1, -1, wxEVT_JOY_MOVE, func)
529
530 def EVT_JOY_ZMOVE(win, func):
531 win.Connect(-1, -1, wxEVT_JOY_ZMOVE, func)
532
533 def EVT_JOYSTICK_EVENTS(win, func):
534 win.Connect(-1, -1, wxEVT_JOY_BUTTON_DOWN, func)
535 win.Connect(-1, -1, wxEVT_JOY_BUTTON_UP, func)
536 win.Connect(-1, -1, wxEVT_JOY_MOVE, func)
537 win.Connect(-1, -1, wxEVT_JOY_ZMOVE, func)
538
539
540 def EVT_TOGGLEBUTTON(win, id, func):
541 win.Connect(id, -1, wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, func)
542
543
544
545 # Help events
546 def EVT_HELP(win, id, func):
547 win.Connect(id, -1, wxEVT_HELP, func)
548
549 def EVT_HELP_RANGE(win, id, id2, func):
550 win.Connect(id, id2, wxEVT_HELP, func)
551
552 def EVT_DETAILED_HELP(win, id, func):
553 win.Connect(id, -1, wxEVT_DETAILED_HELP, func)
554
555 def EVT_DETAILED_HELP_RANGE(win, id, id2, func):
556 win.Connect(id, id2, wxEVT_DETAILED_HELP, func)
557
558 def EVT_CONTEXT_MENU(win, func):
559 win.Connect(-1, -1, wxEVT_CONTEXT_MENU, func)
560
561
562 #----------------------------------------------------------------------
563
564 class wxTimer(wxPyTimer):
565 def __init__(self, evtHandler = None, id = -1):
566 if evtHandler is None:
567 wxPyTimer.__init__(self, self.Notify) # derived class must provide
568 # Notify(self) method.
569 else:
570 wxPyTimer.__init__(self, None)
571 self.SetOwner(evtHandler, id)
572
573 #----------------------------------------------------------------------
574 # aliases
575
576 wxColor = wxColour
577 wxNamedColor = wxNamedColour
578 wxPen = wxPyPen
579
580 # backwards compatibility
581 wxNoRefBitmap = wxBitmap
582 wxPyDefaultPosition = wxDefaultPosition
583 wxPyDefaultSize = wxDefaultSize
584 NULL = None
585 wxSystemSettings_GetSystemColour = wxSystemSettings_GetColour
586 wxSystemSettings_GetSystemFont = wxSystemSettings_GetFont
587 wxSystemSettings_GetSystemMetric = wxSystemSettings_GetMetric
588
589 #----------------------------------------------------------------------
590 # wxGTK sets the locale when initialized. Doing this at the Python
591 # level should set it up to match what GTK is doing at the C level.
592 try:
593 import locale
594 locale.setlocale(locale.LC_ALL, "")
595 except:
596 pass
597
598
599
600 #----------------------------------------------------------------------
601 # wxWindows version numbers. wxPython version is in __version__.
602
603 wxMAJOR_VERSION = wxc.wxMAJOR_VERSION
604 wxMINOR_VERSION = wxc.wxMINOR_VERSION
605 wxRELEASE_NUMBER = wxc.wxRELEASE_NUMBER
606 wxVERSION_STRING = wxc.wxVERSION_STRING
607 wxVERSION_NUMBER = wxc.wxVERSION_NUMBER
608
609 wxVERSION = (wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER)
610
611
612 #----------------------------------------------------------------------
613 # This helper function will take a wxPython object and convert it to
614 # another wxPython object type. This will not be able to create objects
615 # that are derived from wxPython classes by the user, only those that are
616 # actually part of wxPython and directly corespond to C++ objects.
617 #
618 # This is useful in situations where some method returns a generic
619 # type such as wxWindow, but you know that it is actually some
620 # derived type such as a wxTextCtrl. You can't call wxTextCtrl specific
621 # methods on a wxWindow object, but you can use this function to
622 # create a wxTextCtrl object that will pass the same pointer to
623 # the C++ code. You use it like this:
624 #
625 # textCtrl = wxPyTypeCast(window, "wxTextCtrl")
626 #
627 #
628 # WARNING: Using this function to type cast objects into types that
629 # they are not is not recommended and is likely to cause your
630 # program to crash... Hard.
631 #
632
633 def wxPyTypeCast(obj, typeStr):
634 if obj is None:
635 return None
636 theClass = globals()[typeStr+"Ptr"]
637 typeStr = __wxPyPtrTypeMap.get(typeStr, typeStr)
638 if hasattr(obj, "this"):
639 # if already the right type then just return it
640 if isinstance(obj, theClass) or obj.__class__ is theClass:
641 return obj
642 newPtr = ptrcast(obj.this, typeStr+"_p")
643 else:
644 newPtr = ptrcast(obj, typeStr+"_p")
645 theObj = theClass(newPtr)
646 if hasattr(obj, "this"):
647 theObj.thisown = obj.thisown
648 return theObj
649
650
651 #----------------------------------------------------------------------
652 #----------------------------------------------------------------------
653
654 class wxPyOnDemandOutputWindow:
655 def __init__(self, title = "wxPython: stdout/stderr"):
656 self.frame = None
657 self.title = title
658 self.parent = None
659
660 def SetParent(self, parent):
661 self.parent = parent
662
663 def OnCloseWindow(self, event):
664 if self.frame != None:
665 self.frame.Destroy()
666 self.frame = None
667 self.text = None
668
669 # These methods provide the file-like output behaviour.
670 def write(self, str):
671 if not wxThread_IsMain():
672 # Aquire the GUI mutex before making GUI calls. Mutex is released
673 # when locker is deleted at the end of this function.
674 locker = wxMutexGuiLocker()
675
676 if not self.frame:
677 self.frame = wxFrame(self.parent, -1, self.title,
678 style=wxDEFAULT_FRAME_STYLE|wxNO_FULL_REPAINT_ON_RESIZE)
679 self.text = wxTextCtrl(self.frame, -1, "",
680 style = wxTE_MULTILINE|wxTE_READONLY)
681 self.frame.SetSize(wxSize(450, 300))
682 self.frame.Show(true)
683 EVT_CLOSE(self.frame, self.OnCloseWindow)
684 self.text.AppendText(str)
685
686 def close(self):
687 if self.frame != None:
688 if not wxThread_IsMain():
689 locker = wxMutexGuiLocker()
690 self.frame.Close()
691
692
693 _defRedirect = (wxPlatform == '__WXMSW__')
694
695 #----------------------------------------------------------------------
696 # The main application class. Derive from this and implement an OnInit
697 # method that creates a frame and then calls self.SetTopWindow(frame)
698
699 class wxApp(wxPyApp):
700 error = 'wxApp.error'
701 outputWindowClass = wxPyOnDemandOutputWindow
702
703 def __init__(self, redirect=_defRedirect, filename=None):
704 wxPyApp.__init__(self)
705 self.stdioWin = None
706 self.saveStdio = (sys.stdout, sys.stderr)
707 if redirect:
708 self.RedirectStdio(filename)
709 # this initializes wxWindows and then calls our OnInit
710 _wxStart(self.OnInit)
711
712
713 def __del__(self):
714 try:
715 self.RestoreStdio()
716 except:
717 pass
718
719
720 def SetTopWindow(self, frame):
721 if self.stdioWin:
722 self.stdioWin.SetParent(frame)
723 wxPyApp.SetTopWindow(self, frame)
724
725
726 def MainLoop(self):
727 wxPyApp.MainLoop(self)
728 self.RestoreStdio()
729
730
731 def RedirectStdio(self, filename):
732 if filename:
733 sys.stdout = sys.stderr = open(filename, 'a')
734 else:
735 self.stdioWin = self.outputWindowClass() # wxPyOnDemandOutputWindow
736 sys.stdout = sys.stderr = self.stdioWin
737
738
739 def RestoreStdio(self):
740 sys.stdout, sys.stderr = self.saveStdio
741
742
743 #----------------------------------------------------------------------------
744
745 class wxPySimpleApp(wxApp):
746 def __init__(self, flag=0):
747 wxApp.__init__(self, flag)
748 def OnInit(self):
749 return true
750
751
752 class wxPyWidgetTester(wxApp):
753 def __init__(self, size = (250, 100)):
754 self.size = size
755 wxApp.__init__(self, 0)
756
757 def OnInit(self):
758 self.frame = wxFrame(None, -1, "Widget Tester", pos=(0,0), size=self.size)
759 self.SetTopWindow(self.frame)
760 return true
761
762 def SetWidget(self, widgetClass, *args):
763 w = apply(widgetClass, (self.frame,) + args)
764 self.frame.Show(true)
765
766 #----------------------------------------------------------------------------
767 # DO NOT hold any other references to this object. This is how we know when
768 # to cleanup system resources that wxWin is holding. When this module is
769 # unloaded, the refcount on __cleanMeUp goes to zero and it calls the
770 # wxApp_CleanUp function.
771
772 class __wxPyCleanup:
773 def __init__(self):
774 self.cleanup = wxc.wxApp_CleanUp
775 def __del__(self):
776 self.cleanup()
777
778 __cleanMeUp = __wxPyCleanup()
779
780 #----------------------------------------------------------------------------
781 #----------------------------------------------------------------------------