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