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