]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/app.tex
made wxADJUST_MINSIZE default
[wxWidgets.git] / docs / latex / wx / app.tex
... / ...
CommitLineData
1\section{\class{wxApp}}\label{wxapp}
2
3The {\bf wxApp} class represents the application itself. It is used
4to:
5
6\begin{itemize}\itemsep=0pt
7\item set and get application-wide properties;
8\item implement the windowing system message or event loop;
9\item initiate application processing via \helpref{wxApp::OnInit}{wxapponinit};
10\item allow default processing of events not handled by other
11objects in the application.
12\end{itemize}
13
14You should use the macro IMPLEMENT\_APP(appClass) in your application implementation
15file to tell wxWindows how to create an instance of your application class.
16
17Use DECLARE\_APP(appClass) in a header file if you want the wxGetApp function (which returns
18a reference to your application object) to be visible to other files.
19
20\wxheading{Derived from}
21
22\helpref{wxEvtHandler}{wxevthandler}\\
23\helpref{wxObject}{wxobject}
24
25\wxheading{Include files}
26
27<wx/app.h>
28
29\wxheading{See also}
30
31\helpref{wxApp overview}{wxappoverview}
32
33\latexignore{\rtfignore{\wxheading{Members}}}
34
35
36\membersection{wxApp::wxApp}
37
38\func{void}{wxApp}{\void}
39
40Constructor. Called implicitly with a definition of a wxApp object.
41
42
43\membersection{wxApp::\destruct{wxApp}}
44
45\func{void}{\destruct{wxApp}}{\void}
46
47Destructor. Will be called implicitly on program exit if the wxApp
48object is created on the stack.
49
50
51\membersection{wxApp::argc}\label{wxappargc}
52
53\member{int}{argc}
54
55Number of command line arguments (after environment-specific processing).
56
57
58\membersection{wxApp::argv}\label{wxappargv}
59
60\member{char **}{argv}
61
62Command line arguments (after environment-specific processing).
63
64
65\membersection{wxApp::CreateLogTarget}\label{wxappcreatelogtarget}
66
67\func{virtual wxLog*}{CreateLogTarget}{\void}
68
69Creates a wxLog class for the application to use for logging errors. The default
70implementation returns a new wxLogGui class.
71
72\wxheading{See also}
73
74\helpref{wxLog}{wxlog}
75
76
77\membersection{wxApp::Dispatch}\label{wxappdispatch}
78
79\func{void}{Dispatch}{\void}
80
81Dispatches the next event in the windowing system event queue.
82
83This can be used for programming event loops, e.g.
84
85\begin{verbatim}
86 while (app.Pending())
87 Dispatch();
88\end{verbatim}
89
90\wxheading{See also}
91
92\helpref{wxApp::Pending}{wxapppending}
93
94
95\membersection{wxApp::FilterEvent}\label{wxappfilterevent}
96
97\func{int}{FilterEvent}{\param{wxEvent\& }{event}}
98
99This function is called before processing any event and allows the application
100to preempt the processing of some events. If this method returns $-1$ the event
101is processed normally, otherwise either {\tt true} or {\tt false} should be
102returned and the event processing stops immediately considering that the event
103had been already processed (for the former return value) or that it is not
104going to be processed at all (for the latter one).
105
106
107\membersection{wxApp::GetAppName}\label{wxappgetappname}
108
109\constfunc{wxString}{GetAppName}{\void}
110
111Returns the application name.
112
113\wxheading{Remarks}
114
115wxWindows sets this to a reasonable default before
116calling \helpref{wxApp::OnInit}{wxapponinit}, but the application can reset it at will.
117
118
119\membersection{wxApp::GetAuto3D}\label{wxappgetauto3d}
120
121\constfunc{bool}{GetAuto3D}{\void}
122
123Returns true if 3D control mode is on, false otherwise.
124
125\wxheading{See also}
126
127\helpref{wxApp::SetAuto3D}{wxappsetauto3d}
128
129
130\membersection{wxApp::GetClassName}\label{wxappgetclassname}
131
132\constfunc{wxString}{GetClassName}{\void}
133
134Gets the class name of the application. The class name may be used in a platform specific
135manner to refer to the application.
136
137\wxheading{See also}
138
139\helpref{wxApp::SetClassName}{wxappsetclassname}
140
141
142\membersection{wxApp::GetExitOnFrameDelete}\label{wxappgetexitonframedelete}
143
144\constfunc{bool}{GetExitOnFrameDelete}{\void}
145
146Returns true if the application will exit when the top-level window is deleted, false
147otherwise.
148
149\wxheading{See also}
150
151\helpref{wxApp::SetExitOnFrameDelete}{wxappsetexitonframedelete},\\
152\helpref{wxApp shutdown overview}{wxappshutdownoverview}
153
154
155\membersection{wxApp::GetTopWindow}\label{wxappgettopwindow}
156
157\constfunc{virtual wxWindow *}{GetTopWindow}{\void}
158
159Returns a pointer to the top window.
160
161\wxheading{Remarks}
162
163If the top window hasn't been set using \helpref{wxApp::SetTopWindow}{wxappsettopwindow}, this
164function will find the first top-level window (frame or dialog) and return that.
165
166\wxheading{See also}
167
168\helpref{SetTopWindow}{wxappsettopwindow}
169
170
171\membersection{wxApp::GetUseBestVisual}\label{wxappgetusebestvisual}
172
173\constfunc{bool}{GetUseBestVisual}{\void}
174
175Returns true if the application will use the best visual on systems that support
176different visuals, false otherwise.
177
178\wxheading{See also}
179
180\helpref{SetUseBestVisual}{wxappsetusebestvisual}
181
182
183\membersection{wxApp::GetVendorName}\label{wxappgetvendorname}
184
185\constfunc{wxString}{GetVendorName}{\void}
186
187Returns the application's vendor name.
188
189
190\membersection{wxApp::ExitMainLoop}\label{wxappexitmainloop}
191
192\func{void}{ExitMainLoop}{\void}
193
194Call this to explicitly exit the main message (event) loop.
195You should normally exit the main loop (and the application) by deleting
196the top window.
197
198
199\membersection{wxApp::MainLoop}\label{wxappmainloop}
200
201\func{int}{MainLoop}{\void}
202
203Called by wxWindows on creation of the application. Override this if you wish
204to provide your own (environment-dependent) main loop.
205
206\wxheading{Return value}
207
208Returns 0 under X, and the wParam of the WM\_QUIT message under Windows.
209
210%% VZ: OnXXX() functions should *not* be documented
211%%
212%%\membersection{wxApp::OnActivate}\label{wxapponactivate}
213%%
214%%\func{void}{OnActivate}{\param{wxActivateEvent\& }{event}}
215%%
216%%Provide this member function to know whether the application is being
217%%activated or deactivated (Windows only).
218%%
219%%\wxheading{See also}
220%%
221%%\helpref{wxWindow::OnActivate}{wxwindowonactivate}, \helpref{wxActivateEvent}{wxactivateevent}
222%%
223%%\membersection{wxApp::OnCharHook}\label{wxapponcharhook}
224%%
225%%\func{void}{OnCharHook}{\param{wxKeyEvent\&}{ event}}
226%%
227%%This event handler function is called (under Windows only) to allow the window to intercept keyboard events
228%%before they are processed by child windows.
229%%
230%%\wxheading{Parameters}
231%%
232%%\docparam{event}{The keypress event.}
233%%
234%%\wxheading{Remarks}
235%%
236%%Use the wxEVT\_CHAR\_HOOK macro in your event table.
237%%
238%%If you use this member, you can selectively consume keypress events by calling\rtfsp
239%%\helpref{wxEvent::Skip}{wxeventskip} for characters the application is not interested in.
240%%
241%%\wxheading{See also}
242%%
243%%\helpref{wxKeyEvent}{wxkeyevent}, \helpref{wxWindow::OnChar}{wxwindowonchar},\rtfsp
244%%\helpref{wxWindow::OnCharHook}{wxwindowoncharhook}, \helpref{wxDialog::OnCharHook}{wxdialogoncharhook}
245
246
247\membersection{wxApp::OnAssert}\label{wxapponassert}
248
249\func{void}{OnAssert}{\param{const wxChar }{*file}, \param{int }{line}, \param{const wxChar }{*cond}, \param{const wxChar }{*msg}}
250
251This function is called when an assert failure occurs, i.e. the condition
252specified in \helpref{wxASSERT}{wxassert} macro evaluated to {\tt false}.
253It is only called in debug mode (when {\tt \_\_WXDEBUG\_\_} is defined) as
254asserts are not left in the release code at all.
255
256The base class version show the default assert failure dialog box proposing to
257the user to stop the program, continue or ignore all subsequent asserts.
258
259\wxheading{Parameters}
260
261\docparam{file}{the name of the source file where the assert occured}
262
263\docparam{line}{the line number in this file where the assert occured}
264
265\docparam{cond}{the condition of the failed assert in string form}
266
267\docparam{msg}{the message specified as argument to
268\helpref{wxASSERT\_MSG}{wxassertmsg} or \helpref{wxFAIL\_MSG}{wxfailmsg}, will
269be {\tt NULL} if just \helpref{wxASSERT}{wxassert} or \helpref{wxFAIL}{wxfail}
270was used}
271
272
273\membersection{wxApp::OnCmdLineError}\label{wxapponcmdlineerror}
274
275\func{bool}{OnCmdLineError}{\param{wxCmdLineParser\& }{parser}}
276
277Called when command line parsing fails (i.e. an incorrect command line option
278was specified by the user). The default behaviour is to show the program usage
279text and abort the program.
280
281Return {\tt true} to continue normal execution or {\tt false} to return
282{\tt false} from \helpref{OnInit}{wxapponinit} thus terminating the program.
283
284\wxheading{See also}
285
286\helpref{OnInitCmdLine}{wxapponinitcmdline}
287
288
289\membersection{wxApp::OnCmdLineHelp}\label{wxapponcmdlinehelp}
290
291\func{bool}{OnCmdLineHelp}{\param{wxCmdLineParser\& }{parser}}
292
293Called when the help option ({\tt --help}) was specified on the command line.
294The default behaviour is to show the program usage text and abort the program.
295
296Return {\tt true} to continue normal execution or {\tt false} to return
297{\tt false} from \helpref{OnInit}{wxapponinit} thus terminating the program.
298
299\wxheading{See also}
300
301\helpref{OnInitCmdLine}{wxapponinitcmdline}
302
303
304\membersection{wxApp::OnCmdLineParsed}\label{wxapponcmdlineparsed}
305
306\func{bool}{OnCmdLineParsed}{\param{wxCmdLineParser\& }{parser}}
307
308Called after the command line had been successfully parsed. You may override
309this method to test for the values of the various parameters which could be
310set from the command line.
311
312Don't forget to call the base class version unless you want to suppress
313processing of the standard command line options.
314
315Return {\tt true} to continue normal execution or {\tt false} to return
316{\tt false} from \helpref{OnInit}{wxapponinit} thus terminating the program.
317
318\wxheading{See also}
319
320\helpref{OnInitCmdLine}{wxapponinitcmdline}
321
322
323\membersection{wxApp::OnExit}\label{wxapponexit}
324
325\func{virtual int}{OnExit}{\void}
326
327Override this member function for any processing which needs to be
328done as the application is about to exit. OnExit is called after
329destroying all application windows and controls, but before
330wxWindows cleanup. Note that it is not called at all if
331\helpref{OnInit}{wxapponinit} failed.
332
333The return value of this function is currently ignored, return the same value
334as returned by the base class method if you override it.
335
336
337\membersection{wxApp::OnFatalException}\label{wxapponfatalexception}
338
339\func{void}{OnFatalException}{\void}
340
341This function may be called if something fatal happens: an unhandled
342exception under Win32 or a a fatal signal under Unix, for example. However,
343this will not happen by default: you have to explicitly call
344\helpref{wxHandleFatalExceptions}{wxhandlefatalexceptions} to enable this.
345
346Generally speaking, this function should only show a message to the user and
347return. You may attempt to save unsaved data but this is not guaranteed to
348work and, in fact, probably won't.
349
350\wxheading{See also}
351
352\helpref{wxHandleFatalExceptions}{wxhandlefatalexceptions}
353
354%% VZ: the wxApp event handler are private and should not be documented here!
355%%
356%%\membersection{wxApp::OnIdle}\label{wxapponidle}
357%%
358%%\func{void}{OnIdle}{\param{wxIdleEvent\& }{event}}
359%%
360%%Override this member function for any processing which needs to be done
361%%when the application is idle. You should call wxApp::OnIdle from your own function,
362%%since this forwards OnIdle events to windows and also performs garbage collection for
363%%windows whose destruction has been delayed.
364%%
365%%wxWindows' strategy for OnIdle processing is as follows. After pending user interface events for an
366%%application have all been processed, wxWindows sends an OnIdle event to the application object. wxApp::OnIdle itself
367%%sends an OnIdle event to each application window, allowing windows to do idle processing such as updating
368%%their appearance. If either wxApp::OnIdle or a window OnIdle function requested more time, by
369%%calling \helpref{wxIdleEvent::RequestMore}{wxidleeventrequestmore}, wxWindows will send another OnIdle
370%%event to the application object. This will occur in a loop until either a user event is found to be
371%%pending, or OnIdle requests no more time. Then all pending user events are processed until the system
372%%goes idle again, when OnIdle is called, and so on.
373%%
374%%\wxheading{See also}
375%%
376%%\helpref{wxWindow::OnIdle}{wxwindowonidle}, \helpref{wxIdleEvent}{wxidleevent},\rtfsp
377%%\helpref{wxWindow::SendIdleEvents}{wxappsendidleevents}
378%%
379%%\membersection{wxApp::OnEndSession}\label{wxapponendsession}
380%%
381%%\func{void}{OnEndSession}{\param{wxCloseEvent\& }{event}}
382%%
383%%This is an event handler function called when the operating system or GUI session is
384%%about to close down. The application has a chance to silently save information,
385%%and can optionally close itself.
386%%
387%%Use the EVT\_END\_SESSION event table macro to handle query end session events.
388%%
389%%The default handler calls \helpref{wxWindow::Close}{wxwindowclose} with a true argument
390%%(forcing the application to close itself silently).
391%%
392%%\wxheading{Remarks}
393%%
394%%Under X, OnEndSession is called in response to the `die' event.
395%%
396%%Under Windows, OnEndSession is called in response to the WM\_ENDSESSION message.
397%%
398%%\wxheading{See also}
399%%
400%%\helpref{wxWindow::Close}{wxwindowclose},\rtfsp
401%%\helpref{wxWindow::OnCloseWindow}{wxwindowonclosewindow},\rtfsp
402%%\helpref{wxCloseEvent}{wxcloseevent},\rtfsp
403%%\helpref{wxApp::OnQueryEndSession}{wxapponqueryendsession}
404
405
406\membersection{wxApp::OnInit}\label{wxapponinit}
407
408\func{bool}{OnInit}{\void}
409
410This must be provided by the application, and will usually create the
411application's main window, optionally calling
412\helpref{wxApp::SetTopWindow}{wxappsettopwindow}. You may use
413\helpref{OnExit}{wxapponexit} to clean up anything initialized here, provided
414that the function returns \true.
415
416Notice that if you want to to use the command line processing provided by
417wxWindows you have to call the base class version in the derived class
418OnInit().
419
420Return \true to continue processing, \false to exit the application
421immediately.
422
423
424\membersection{wxApp::OnInitCmdLine}\label{wxapponinitcmdline}
425
426\func{void}{OnInitCmdLine}{\param{wxCmdLineParser\& }{parser}}
427
428Called from \helpref{OnInit}{wxapponinit} and may be used to initialize the
429parser with the command line options for this application. The base class
430versions adds support for a few standard options only.
431
432
433\membersection{wxApp::OnQueryEndSession}\label{wxapponqueryendsession}
434
435\func{void}{OnQueryEndSession}{\param{wxCloseEvent\& }{event}}
436
437This is an event handler function called when the operating system or GUI session is
438about to close down. Typically, an application will try to save unsaved documents
439at this point.
440
441If \helpref{wxCloseEvent::CanVeto}{wxcloseeventcanveto} returns true, the application
442is allowed to veto the shutdown by calling \helpref{wxCloseEvent::Veto}{wxcloseeventveto}.
443The application might veto the shutdown after prompting for documents to be saved, and the
444user has cancelled the save.
445
446Use the EVT\_QUERY\_END\_SESSION event table macro to handle query end session events.
447
448You should check whether the application is forcing the deletion of the window
449using \helpref{wxCloseEvent::GetForce}{wxcloseeventgetforce}. If this is true,
450destroy the window using \helpref{wxWindow::Destroy}{wxwindowdestroy}.
451If not, it is up to you whether you respond by destroying the window.
452
453The default handler calls \helpref{wxWindow::Close}{wxwindowclose} on the top-level window,
454and vetoes the shutdown if Close returns false. This will be sufficient for many applications.
455
456\wxheading{Remarks}
457
458Under X, OnQueryEndSession is called in response to the `save session' event.
459
460Under Windows, OnQueryEndSession is called in response to the WM\_QUERYENDSESSION message.
461
462\wxheading{See also}
463
464\helpref{wxWindow::Close}{wxwindowclose},\rtfsp
465\helpref{wxCloseEvent}{wxcloseevent}\rtfsp
466
467
468\membersection{wxApp::OnRun}\label{wxapponrun}
469
470\func{virtual int}{OnRun}{\void}
471
472This virtual function is where the execution of a program written in wxWindows
473starts. The default implementation just enters the main loop and starts
474handling the events until it terminates, either because
475\helpref{ExitMainLoop}{wxappexitmainloop} has been explicitly called or because
476the last frame has been deleted and
477\helpref{GetExitOnFrameDelete}{wxappgetexitonframedelete} flag is \true (this
478is the default).
479
480The return value of this function becomes the exit code of the program, so it
481should return $0$ in case of successful termination.
482
483
484\membersection{wxApp::OnUnhandledException}\label{wxapponunhandledexception}
485
486\func{virtual void}{OnUnhandledException}{\void}
487
488This function is called when an unhandled C++ exception occurs inside
489\helpref{OnRun()}{wxapponrun} (the exceptions which occur during the program
490startup and shutdown might not be caught at all).
491Note that the exception type is lost by now, so if you want to really handle
492the exception you should override \helpref{OnRun()}{wxapponrun} and put a
493try/catch clause around the call to the base class version there.
494
495
496\membersection{wxApp::ProcessMessage}\label{wxappprocessmessage}
497
498\func{bool}{ProcessMessage}{\param{WXMSG *}{msg}}
499
500Windows-only function for processing a message. This function
501is called from the main message loop, checking for windows that
502may wish to process it. The function returns true if the message
503was processed, false otherwise. If you use wxWindows with another class
504library with its own message loop, you should make sure that this
505function is called to allow wxWindows to receive messages. For example,
506to allow co-existence with the Microsoft Foundation Classes, override
507the PreTranslateMessage function:
508
509\begin{verbatim}
510// Provide wxWindows message loop compatibility
511BOOL CTheApp::PreTranslateMessage(MSG *msg)
512{
513 if (wxTheApp && wxTheApp->ProcessMessage((WXMSW *)msg))
514 return true;
515 else
516 return CWinApp::PreTranslateMessage(msg);
517}
518\end{verbatim}
519
520
521\membersection{wxApp::Pending}\label{wxapppending}
522
523\func{bool}{Pending}{\void}
524
525Returns true if unprocessed events are in the window system event queue.
526
527\wxheading{See also}
528
529\helpref{wxApp::Dispatch}{wxappdispatch}
530
531
532\membersection{wxApp::SendIdleEvents}\label{wxappsendidleevents}
533
534\func{bool}{SendIdleEvents}{\param{wxWindow*}{ win}, \param{wxIdleEvent\& }{event}}
535
536Sends idle events to a window and its children.
537
538Please note that this function is internal to wxWindows and shouldn't be used
539by user code.
540
541\wxheading{Remarks}
542
543These functions poll the top-level windows, and their children, for idle event processing.
544If true is returned, more OnIdle processing is requested by one or more window.
545
546\wxheading{See also}
547
548\helpref{wxIdleEvent}{wxidleevent}
549
550
551\membersection{wxApp::SetAppName}\label{wxappsetappname}
552
553\func{void}{SetAppName}{\param{const wxString\& }{name}}
554
555Sets the name of the application. The name may be used in dialogs
556(for example by the document/view framework). A default name is set by
557wxWindows.
558
559\wxheading{See also}
560
561\helpref{wxApp::GetAppName}{wxappgetappname}
562
563
564\membersection{wxApp::SetAuto3D}\label{wxappsetauto3d}
565
566\func{void}{SetAuto3D}{\param{const bool}{ auto3D}}
567
568Switches automatic 3D controls on or off.
569
570\wxheading{Parameters}
571
572\docparam{auto3D}{If true, all controls will be created with 3D appearances unless
573overridden for a control or dialog. The default is true}
574
575\wxheading{Remarks}
576
577This has an effect on Windows only.
578
579\wxheading{See also}
580
581\helpref{wxApp::GetAuto3D}{wxappgetauto3d}
582
583
584\membersection{wxApp::SetClassName}\label{wxappsetclassname}
585
586\func{void}{SetClassName}{\param{const wxString\& }{name}}
587
588Sets the class name of the application. This may be used in a platform specific
589manner to refer to the application.
590
591\wxheading{See also}
592
593\helpref{wxApp::GetClassName}{wxappgetclassname}
594
595
596\membersection{wxApp::SetExitOnFrameDelete}\label{wxappsetexitonframedelete}
597
598\func{void}{SetExitOnFrameDelete}{\param{bool}{ flag}}
599
600Allows the programmer to specify whether the application will exit when the
601top-level frame is deleted.
602
603\wxheading{Parameters}
604
605\docparam{flag}{If true (the default), the application will exit when the top-level frame is
606deleted. If false, the application will continue to run.}
607
608\wxheading{See also}
609
610\helpref{wxApp::GetExitOnFrameDelete}{wxappgetexitonframedelete},\\
611\helpref{wxApp shutdown overview}{wxappshutdownoverview}
612
613
614\membersection{wxApp::SetTopWindow}\label{wxappsettopwindow}
615
616\func{void}{SetTopWindow}{\param{wxWindow* }{window}}
617
618Sets the `top' window. You can call this from within \helpref{wxApp::OnInit}{wxapponinit} to
619let wxWindows know which is the main window. You don't have to set the top window;
620it is only a convenience so that (for example) certain dialogs without parents can use a
621specific window as the top window. If no top window is specified by the application,
622wxWindows just uses the first frame or dialog in its top-level window list, when it
623needs to use the top window.
624
625\wxheading{Parameters}
626
627\docparam{window}{The new top window.}
628
629\wxheading{See also}
630
631\helpref{wxApp::GetTopWindow}{wxappgettopwindow}, \helpref{wxApp::OnInit}{wxapponinit}
632
633
634
635\membersection{wxApp::SetVendorName}\label{wxappsetvendorname}
636
637\func{void}{SetVendorName}{\param{const wxString\& }{name}}
638
639Sets the name of application's vendor. The name will be used
640in registry access. A default name is set by
641wxWindows.
642
643\wxheading{See also}
644
645\helpref{wxApp::GetVendorName}{wxappgetvendorname}
646
647
648\membersection{wxApp::SetUseBestVisual}\label{wxappsetusebestvisual}
649
650\func{void}{SetUseBestVisual}{\param{bool}{ flag}}
651
652Allows the programmer to specify whether the application will use the best visual
653on systems that support several visual on the same display. This is typically the
654case under Solaris and IRIX, where the default visual is only 8-bit whereas certain
655applications are supposed to run in TrueColour mode.
656
657Note that this function has to be called in the constructor of the {\tt wxApp}
658instance and won't have any effect when called later on.
659
660This function currently only has effect under GTK.
661
662\wxheading{Parameters}
663
664\docparam{flag}{If true, the app will use the best visual.}
665
666
667\membersection{wxApp::HandleEvent}\label{wxapphandleevent}
668
669\constfunc{virtual void}{HandleEvent}{\param{wxEvtHandler}{ *handler}, \param{wxEventFunction}{ func}, \param{wxEvent\& }{event}}
670
671This function simply invokes the given method \arg{func} of the specified
672event handler \arg{handler} with the \arg{event} as parameter. It exists solely
673to allow to catch the C++ exceptions which could be thrown by all event
674handlers in the application in one place: if you want to do this, override this
675function in your wxApp-derived class and add try/catch clause(s) to it.
676
677
678\membersection{wxApp::Yield}\label{wxappyield}
679
680\func{bool}{Yield}{\param{bool}{ onlyIfNeeded = false}}
681
682Yields control to pending messages in the windowing system. This can be useful, for example, when a
683time-consuming process writes to a text window. Without an occasional
684yield, the text window will not be updated properly, and on systems with
685cooperative multitasking, such as Windows 3.1 other processes will not respond.
686
687Caution should be exercised, however, since yielding may allow the
688user to perform actions which are not compatible with the current task.
689Disabling menu items or whole menus during processing can avoid unwanted
690reentrance of code: see \helpref{::wxSafeYield}{wxsafeyield} for a better
691function.
692
693Note that Yield() will not flush the message logs. This is intentional as
694calling Yield() is usually done to quickly update the screen and popping up a
695message box dialog may be undesirable. If you do wish to flush the log
696messages immediately (otherwise it will be done during the next idle loop
697iteration), call \helpref{wxLog::FlushActive}{wxlogflushactive}.
698
699Calling Yield() recursively is normally an error and an assert failure is
700raised in debug build if such situation is detected. However if the the
701{\it onlyIfNeeded} parameter is {\tt true}, the method will just silently
702return {\tt false} instead.
703