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