]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: _app.i | |
3 | // Purpose: SWIG interface for wxApp | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 9-Aug-2003 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2003 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // Not a %module | |
14 | ||
15 | ||
16 | //--------------------------------------------------------------------------- | |
17 | // TODOs: | |
18 | // | |
19 | // 1. Provide another app object that allows FilterEvent to be overloaded. | |
20 | // 2. Wrap wxAppTraits and allow wxApp::CreateTraits to be overloaded. | |
21 | // | |
22 | //--------------------------------------------------------------------------- | |
23 | %newgroup; | |
24 | ||
25 | %{ | |
26 | %} | |
27 | ||
28 | enum { | |
29 | wxPYAPP_ASSERT_SUPPRESS = 1, | |
30 | wxPYAPP_ASSERT_EXCEPTION = 2, | |
31 | wxPYAPP_ASSERT_DIALOG = 4, | |
32 | wxPYAPP_ASSERT_LOG = 8 | |
33 | }; | |
34 | ||
35 | enum | |
36 | { | |
37 | wxPRINT_WINDOWS = 1, | |
38 | wxPRINT_POSTSCRIPT = 2 | |
39 | }; | |
40 | ||
41 | ||
42 | ||
dce2bd22 RD |
43 | DocStr(wxPyApp, |
44 | "The ``wx.PyApp`` class is an *implementation detail*, please use the | |
d07d2bc9 | 45 | `wx.App` class (or some other derived class) instead.", ""); |
d14a1e28 RD |
46 | |
47 | class wxPyApp : public wxEvtHandler { | |
48 | public: | |
49 | ||
c25f90f6 | 50 | %pythonAppend wxPyApp "self._setOORInfo(self, False);" setCallbackInfo(PyApp) |
b39c3fa0 | 51 | %typemap(out) wxPyApp*; // turn off this typemap |
d14a1e28 | 52 | |
856bf319 | 53 | DocStr(wxPyApp, |
d07d2bc9 | 54 | "Create a new application object, starting the bootstrap process.", ""); |
d14a1e28 RD |
55 | %extend { |
56 | wxPyApp() { | |
57 | wxPythonApp = new wxPyApp(); | |
58 | return wxPythonApp; | |
59 | } | |
60 | } | |
61 | ||
62 | ~wxPyApp(); | |
63 | ||
b39c3fa0 RD |
64 | // Turn it back on again |
65 | %typemap(out) wxPyApp* { $result = wxPyMake_wxObject($1, $owner); } | |
66 | ||
67 | ||
c25f90f6 | 68 | void _setCallbackInfo(PyObject* self, PyObject* _class, bool incref=false); |
d14a1e28 | 69 | |
d14a1e28 | 70 | |
6c3b4aae RD |
71 | DocDeclStr( |
72 | wxString, GetAppName() const, | |
d07d2bc9 | 73 | "Get the application name.", ""); |
6c3b4aae RD |
74 | DocDeclStr( |
75 | void, SetAppName(const wxString& name), | |
dce2bd22 | 76 | "Set the application name. This value may be used automatically by |
d07d2bc9 | 77 | `wx.Config` and such.", ""); |
6c3b4aae RD |
78 | |
79 | DocDeclStr( | |
80 | wxString, GetClassName() const, | |
d07d2bc9 | 81 | "Get the application's class name.", ""); |
6c3b4aae RD |
82 | DocDeclStr( |
83 | void, SetClassName(const wxString& name), | |
dce2bd22 | 84 | "Set the application's class name. This value may be used for |
d07d2bc9 | 85 | X-resources if applicable for the platform", ""); |
6c3b4aae RD |
86 | |
87 | DocDeclStr( | |
88 | const wxString&, GetVendorName() const, | |
d07d2bc9 | 89 | "Get the application's vendor name.", ""); |
6c3b4aae RD |
90 | DocDeclStr( |
91 | void, SetVendorName(const wxString& name), | |
dce2bd22 | 92 | "Set the application's vendor name. This value may be used |
d07d2bc9 | 93 | automatically by `wx.Config` and such.", ""); |
6c3b4aae RD |
94 | |
95 | ||
96 | DocDeclStr( | |
97 | wxAppTraits*, GetTraits(), | |
dce2bd22 RD |
98 | "Return (and create if necessary) the app traits object to which we |
99 | delegate for everything which either should be configurable by the | |
100 | user (then he can change the default behaviour simply by overriding | |
101 | CreateTraits() and returning his own traits object) or which is | |
102 | GUI/console dependent as then wx.AppTraits allows us to abstract the | |
103 | differences behind the common facade. | |
104 | ||
d07d2bc9 | 105 | :todo: Add support for overriding CreateAppTraits in wxPython.", ""); |
6c3b4aae RD |
106 | |
107 | ||
108 | DocDeclStr( | |
109 | virtual void, ProcessPendingEvents(), | |
dce2bd22 RD |
110 | "Process all events in the Pending Events list -- it is necessary to |
111 | call this function to process posted events. This normally happens | |
d07d2bc9 | 112 | during each event loop iteration.", ""); |
6c3b4aae RD |
113 | |
114 | ||
115 | DocDeclStr( | |
a72f4631 | 116 | virtual bool, Yield(bool onlyIfNeeded = false), |
dce2bd22 RD |
117 | "Process all currently pending events right now, instead of waiting |
118 | until return to the event loop. It is an error to call ``Yield`` | |
119 | recursively unless the value of ``onlyIfNeeded`` is True. | |
120 | ||
121 | :warning: This function is dangerous as it can lead to unexpected | |
d07d2bc9 RD |
122 | reentrancies (i.e. when called from an event handler it may |
123 | result in calling the same event handler again), use with | |
124 | extreme care or, better, don't use at all! | |
dce2bd22 | 125 | |
d07d2bc9 RD |
126 | :see: `wx.Yield`, `wx.YieldIfNeeded`, `wx.SafeYield` |
127 | ", ""); | |
d14a1e28 | 128 | |
6c3b4aae RD |
129 | |
130 | DocDeclStr( | |
131 | virtual void, WakeUpIdle(), | |
dce2bd22 | 132 | "Make sure that idle events are sent again. |
d07d2bc9 | 133 | :see: `wx.WakeUpIdle`", ""); |
d14a1e28 | 134 | |
45c82204 RD |
135 | |
136 | DocDeclStr( | |
137 | static bool , IsMainLoopRunning() const, | |
138 | "Returns True if we're running the main loop, i.e. if the events can | |
139 | currently be dispatched.", ""); | |
140 | ||
d14a1e28 | 141 | |
6c3b4aae RD |
142 | DocDeclStr( |
143 | virtual int, MainLoop(), | |
dce2bd22 | 144 | "Execute the main GUI loop, the function doesn't normally return until |
d07d2bc9 | 145 | all top level windows have been closed and destroyed.", ""); |
d14a1e28 | 146 | |
6c3b4aae RD |
147 | |
148 | DocDeclStr( | |
149 | virtual void, Exit(), | |
dce2bd22 | 150 | "Exit the main loop thus terminating the application. |
d07d2bc9 | 151 | :see: `wx.Exit`", ""); |
d14a1e28 | 152 | |
6c3b4aae | 153 | |
e81b607b RD |
154 | DocDeclStr( |
155 | virtual wxLayoutDirection , GetLayoutDirection() const, | |
156 | "Return the layout direction for the current locale.", ""); | |
157 | ||
158 | ||
6c3b4aae RD |
159 | DocDeclStr( |
160 | virtual void, ExitMainLoop(), | |
dce2bd22 | 161 | "Exit the main GUI loop during the next iteration of the main |
d07d2bc9 | 162 | loop, (i.e. it does not stop the program immediately!)", ""); |
d14a1e28 | 163 | |
6c3b4aae RD |
164 | |
165 | DocDeclStr( | |
166 | virtual bool, Pending(), | |
d07d2bc9 | 167 | "Returns True if there are unprocessed events in the event queue.", ""); |
d14a1e28 | 168 | |
6c3b4aae RD |
169 | |
170 | DocDeclStr( | |
171 | virtual bool, Dispatch(), | |
dce2bd22 | 172 | "Process the first event in the event queue (blocks until an event |
d07d2bc9 | 173 | appears if there are none currently)", ""); |
d14a1e28 | 174 | |
d14a1e28 | 175 | |
6c3b4aae RD |
176 | DocDeclStr( |
177 | virtual bool, ProcessIdle(), | |
dce2bd22 RD |
178 | "Called from the MainLoop when the application becomes idle (there are |
179 | no pending events) and sends a `wx.IdleEvent` to all interested | |
d07d2bc9 | 180 | parties. Returns True if more idle events are needed, False if not.", ""); |
6c3b4aae RD |
181 | |
182 | ||
183 | DocDeclStr( | |
184 | virtual bool, SendIdleEvents(wxWindow* win, wxIdleEvent& event), | |
dce2bd22 | 185 | "Send idle event to window and all subwindows. Returns True if more |
d07d2bc9 | 186 | idle time is requested.", ""); |
d14a1e28 | 187 | |
d14a1e28 | 188 | |
6c3b4aae RD |
189 | DocDeclStr( |
190 | virtual bool, IsActive() const, | |
d07d2bc9 | 191 | "Return True if our app has focus.", ""); |
d14a1e28 | 192 | |
6c3b4aae RD |
193 | |
194 | DocDeclStr( | |
195 | void, SetTopWindow(wxWindow *win), | |
d07d2bc9 | 196 | "Set the *main* top level window", ""); |
d14a1e28 | 197 | |
6c3b4aae RD |
198 | DocDeclStr( |
199 | virtual wxWindow*, GetTopWindow() const, | |
dce2bd22 RD |
200 | "Return the *main* top level window (if it hadn't been set previously |
201 | with SetTopWindow(), will return just some top level window and, if | |
d07d2bc9 | 202 | there not any, will return None)", ""); |
d14a1e28 | 203 | |
d14a1e28 | 204 | |
6c3b4aae RD |
205 | DocDeclStr( |
206 | void, SetExitOnFrameDelete(bool flag), | |
dce2bd22 RD |
207 | "Control the exit behaviour: by default, the program will exit the main |
208 | loop (and so, usually, terminate) when the last top-level program | |
209 | window is deleted. Beware that if you disable this behaviour (with | |
210 | SetExitOnFrameDelete(False)), you'll have to call ExitMainLoop() | |
d07d2bc9 | 211 | explicitly from somewhere.", ""); |
6c3b4aae RD |
212 | |
213 | ||
214 | DocDeclStr( | |
215 | bool, GetExitOnFrameDelete() const, | |
d07d2bc9 | 216 | "Get the current exit behaviour setting.", ""); |
d14a1e28 RD |
217 | |
218 | #if 0 | |
856bf319 | 219 | // Get display mode that is in use. This is only used in framebuffer |
d14a1e28 RD |
220 | // wxWin ports (such as wxMGL). |
221 | virtual wxVideoMode GetDisplayMode() const; | |
222 | ||
223 | // Set display mode to use. This is only used in framebuffer wxWin | |
224 | // ports (such as wxMGL). This method should be called from | |
225 | // wxApp::OnInitGui | |
226 | virtual bool SetDisplayMode(const wxVideoMode& info); | |
227 | #endif | |
228 | ||
6c3b4aae RD |
229 | |
230 | DocDeclStr( | |
f31ed3f1 | 231 | void, SetUseBestVisual( bool flag, bool forceTrueColour = false ), |
dce2bd22 | 232 | "Set whether the app should try to use the best available visual on |
d07d2bc9 | 233 | systems where more than one is available, (Sun, SGI, XFree86 4, etc.)", ""); |
6c3b4aae RD |
234 | |
235 | DocDeclStr( | |
236 | bool, GetUseBestVisual() const, | |
d07d2bc9 | 237 | "Get current UseBestVisual setting.", ""); |
6c3b4aae | 238 | |
d14a1e28 RD |
239 | |
240 | // set/get printing mode: see wxPRINT_XXX constants. | |
241 | // | |
242 | // default behaviour is the normal one for Unix: always use PostScript | |
243 | // printing. | |
244 | virtual void SetPrintMode(int mode); | |
245 | int GetPrintMode() const; | |
246 | ||
6c3b4aae RD |
247 | |
248 | DocDeclStr( | |
249 | void, SetAssertMode(int mode), | |
d07d2bc9 RD |
250 | "Set the OnAssert behaviour for debug and hybrid builds.", |
251 | "The following flags may be or'd together: | |
dce2bd22 RD |
252 | |
253 | ========================= ======================================= | |
254 | wx.PYAPP_ASSERT_SUPPRESS Don't do anything | |
255 | wx.PYAPP_ASSERT_EXCEPTION Turn it into a Python exception if possible | |
256 | (default) | |
257 | wx.PYAPP_ASSERT_DIALOG Display a message dialog | |
258 | wx.PYAPP_ASSERT_LOG Write the assertion info to the wx.Log | |
259 | ========================= ======================================= | |
260 | ||
261 | "); | |
6c3b4aae RD |
262 | |
263 | DocDeclStr( | |
264 | int, GetAssertMode(), | |
d07d2bc9 | 265 | "Get the current OnAssert behaviour setting.", ""); |
d14a1e28 RD |
266 | |
267 | ||
e12096a9 | 268 | static bool GetMacSupportPCMenuShortcuts(); // TODO, deprecate this |
d14a1e28 RD |
269 | static long GetMacAboutMenuItemId(); |
270 | static long GetMacPreferencesMenuItemId(); | |
271 | static long GetMacExitMenuItemId(); | |
272 | static wxString GetMacHelpMenuTitleName(); | |
273 | ||
e12096a9 | 274 | static void SetMacSupportPCMenuShortcuts(bool val); // TODO, deprecate this |
d14a1e28 RD |
275 | static void SetMacAboutMenuItemId(long val); |
276 | static void SetMacPreferencesMenuItemId(long val); | |
277 | static void SetMacExitMenuItemId(long val); | |
278 | static void SetMacHelpMenuTitleName(const wxString& val); | |
279 | ||
d14a1e28 | 280 | |
6c3b4aae RD |
281 | DocDeclStr( |
282 | void, _BootstrapApp(), | |
d07d2bc9 | 283 | "For internal use only", ""); |
6c3b4aae RD |
284 | |
285 | DocStr(GetComCtl32Version, | |
dce2bd22 | 286 | "Returns 400, 470, 471, etc. for comctl32.dll 4.00, 4.70, 4.71 or 0 if |
d07d2bc9 | 287 | it wasn't found at all. Raises an exception on non-Windows platforms.", ""); |
d14a1e28 | 288 | #ifdef __WXMSW__ |
d14a1e28 RD |
289 | static int GetComCtl32Version(); |
290 | #else | |
291 | %extend { | |
292 | static int GetComCtl32Version() | |
81cfe5e1 | 293 | { wxPyRaiseNotImplemented(); return 0; } |
d14a1e28 RD |
294 | } |
295 | #endif | |
4d9de110 RD |
296 | |
297 | %extend { | |
7012bb9f | 298 | DocStr(IsDisplayAvailable, |
4d9de110 RD |
299 | "Tests if it is possible to create a GUI in the current environment. |
300 | This will mean different things on the different platforms. | |
301 | ||
302 | * On X Windows systems this function will return ``False`` if it is | |
303 | not able to open a connection to the X display, which can happen | |
304 | if $DISPLAY is not set, or is not set correctly. | |
305 | ||
306 | * On Mac OS X a ``False`` return value will mean that wx is not | |
307 | able to access the window manager, which can happen if logged in | |
308 | remotely or if running from the normal version of python instead | |
309 | of the framework version, (i.e., pythonw.) | |
310 | ||
311 | * On MS Windows... | |
312 | ", ""); | |
7012bb9f | 313 | static bool IsDisplayAvailable() { |
4d9de110 RD |
314 | return wxPyTestDisplayAvailable(); |
315 | } | |
316 | } | |
7012bb9f RD |
317 | |
318 | ||
319 | %property(AppName, GetAppName, SetAppName, doc="See `GetAppName` and `SetAppName`"); | |
320 | %property(AssertMode, GetAssertMode, SetAssertMode, doc="See `GetAssertMode` and `SetAssertMode`"); | |
321 | %property(ClassName, GetClassName, SetClassName, doc="See `GetClassName` and `SetClassName`"); | |
322 | %property(ExitOnFrameDelete, GetExitOnFrameDelete, SetExitOnFrameDelete, doc="See `GetExitOnFrameDelete` and `SetExitOnFrameDelete`"); | |
323 | %property(LayoutDirection, GetLayoutDirection, doc="See `GetLayoutDirection`"); | |
324 | %property(PrintMode, GetPrintMode, SetPrintMode, doc="See `GetPrintMode` and `SetPrintMode`"); | |
325 | %property(TopWindow, GetTopWindow, SetTopWindow, doc="See `GetTopWindow` and `SetTopWindow`"); | |
326 | %property(Traits, GetTraits, doc="See `GetTraits`"); | |
327 | %property(UseBestVisual, GetUseBestVisual, SetUseBestVisual, doc="See `GetUseBestVisual` and `SetUseBestVisual`"); | |
328 | %property(VendorName, GetVendorName, SetVendorName, doc="See `GetVendorName` and `SetVendorName`"); | |
329 | ||
330 | %property(Active, IsActive); | |
d14a1e28 RD |
331 | }; |
332 | ||
333 | ||
334 | ||
335 | //--------------------------------------------------------------------------- | |
336 | %newgroup; | |
337 | ||
d14a1e28 | 338 | |
6c3b4aae RD |
339 | DocDeclStr( |
340 | void, wxExit(), | |
d07d2bc9 | 341 | "Force an exit of the application. Convenience for wx.GetApp().Exit()", ""); |
6c3b4aae RD |
342 | |
343 | ||
344 | DocDeclStr( | |
345 | bool, wxYield(), | |
d07d2bc9 | 346 | "Yield to other apps/messages. Convenience for wx.GetApp().Yield()", ""); |
d14a1e28 | 347 | |
6c3b4aae RD |
348 | DocDeclStr( |
349 | bool, wxYieldIfNeeded(), | |
d07d2bc9 | 350 | "Yield to other apps/messages. Convenience for wx.GetApp().Yield(True)", ""); |
d14a1e28 | 351 | |
d14a1e28 | 352 | |
6c3b4aae | 353 | DocDeclStr( |
a72f4631 | 354 | bool, wxSafeYield(wxWindow* win=NULL, bool onlyIfNeeded=false), |
dce2bd22 RD |
355 | "This function is similar to `wx.Yield`, except that it disables the |
356 | user input to all program windows before calling `wx.Yield` and | |
357 | re-enables it again afterwards. If ``win`` is not None, this window | |
358 | will remain enabled, allowing the implementation of some limited user | |
359 | interaction. | |
360 | ||
d07d2bc9 | 361 | :Returns: the result of the call to `wx.Yield`.", ""); |
6c3b4aae RD |
362 | |
363 | ||
364 | DocDeclStr( | |
365 | void, wxWakeUpIdle(), | |
dce2bd22 | 366 | "Cause the message queue to become empty again, so idle events will be |
d07d2bc9 | 367 | sent.", ""); |
6c3b4aae RD |
368 | |
369 | ||
370 | DocDeclStr( | |
371 | void, wxPostEvent(wxEvtHandler *dest, wxEvent& event), | |
dce2bd22 | 372 | "Send an event to a window or other wx.EvtHandler to be processed |
d07d2bc9 | 373 | later.", ""); |
6c3b4aae RD |
374 | |
375 | ||
376 | DocStr(wxApp_CleanUp, | |
d07d2bc9 RD |
377 | "For internal use only, it is used to cleanup after wxWidgets when |
378 | Python shuts down.", ""); | |
d14a1e28 RD |
379 | %inline %{ |
380 | void wxApp_CleanUp() { | |
381 | __wxPyCleanup(); | |
382 | } | |
383 | %} | |
384 | ||
6c3b4aae | 385 | |
c92d9283 RD |
386 | DocDeclStrName( |
387 | wxPyApp* , wxPyGetApp(), | |
388 | "Return a reference to the current wx.App object.", "", | |
389 | GetApp); | |
390 | %{ | |
391 | wxPyApp* wxPyGetApp() { return (wxPyApp*)wxTheApp; } | |
d14a1e28 RD |
392 | %} |
393 | ||
394 | ||
c92d9283 | 395 | |
27c9e43c RD |
396 | |
397 | ||
398 | DocDeclAStr( | |
399 | void , wxSetDefaultPyEncoding(const char* encoding), | |
400 | "SetDefaultPyEncoding(string encoding)", | |
401 | "Sets the encoding that wxPython will use when it needs to convert a | |
669e06d7 RD |
402 | Python string or unicode object to or from a wxString. |
403 | ||
404 | The default encoding is the value of ``locale.getdefaultlocale()[1]`` | |
405 | but please be aware that the default encoding within the same locale | |
406 | may be slightly different on different platforms. For example, please | |
407 | see http://www.alanwood.net/demos/charsetdiffs.html for differences | |
408 | between the common latin/roman encodings.", ""); | |
27c9e43c RD |
409 | |
410 | DocDeclAStr( | |
411 | const char* , wxGetDefaultPyEncoding(), | |
412 | "GetDefaultPyEncoding() -> string", | |
413 | "Gets the current encoding that wxPython will use when it needs to | |
414 | convert a Python string or unicode object to or from a wxString.", ""); | |
415 | ||
416 | ||
d14a1e28 RD |
417 | //--------------------------------------------------------------------------- |
418 | // Include some extra wxApp related python code here | |
419 | ||
420 | %pythoncode "_app_ex.py" | |
421 | ||
422 | //--------------------------------------------------------------------------- | |
423 |