]> git.saurik.com Git - wxWidgets.git/blame - src/common/appcmn.cpp
Better text control non-selection solution
[wxWidgets.git] / src / common / appcmn.cpp
CommitLineData
72cdf4c9 1/////////////////////////////////////////////////////////////////////////////
127eab18 2// Name: src/common/appcmn.cpp
90e15296 3// Purpose: wxAppBase methods common to all platforms
72cdf4c9
VZ
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 18.10.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
72cdf4c9
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
72cdf4c9
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#if defined(__BORLANDC__)
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28 #include "wx/app.h"
5ff14574 29 #include "wx/window.h"
b2e972ec 30 #include "wx/bitmap.h"
46446cc2 31 #include "wx/log.h"
e2478fde 32 #include "wx/msgdlg.h"
b3dfbbc9 33 #include "wx/confbase.h"
de6185e2 34 #include "wx/utils.h"
193d0c93 35 #include "wx/wxcrtvararg.h"
72cdf4c9
VZ
36#endif
37
e2478fde 38#include "wx/apptrait.h"
b913d3ed 39#include "wx/cmdline.h"
e2478fde 40#include "wx/msgout.h"
72cdf4c9 41#include "wx/thread.h"
5ff14574 42#include "wx/vidmode.h"
dde19c21 43#include "wx/evtloop.h"
a5f1fd3e 44
1c193821
JS
45#if wxUSE_FONTMAP
46 #include "wx/fontmap.h"
47#endif // wxUSE_FONTMAP
48
34fdf762
VS
49// DLL options compatibility check:
50#include "wx/build.h"
51WX_CHECK_BUILD_OPTIONS("wxCore")
52
e2478fde
VZ
53// ============================================================================
54// wxAppBase implementation
55// ============================================================================
d54598dd 56
bf188f1a 57// ----------------------------------------------------------------------------
94826170 58// initialization
bf188f1a
VZ
59// ----------------------------------------------------------------------------
60
090a6d7a 61wxAppBase::wxAppBase()
697c5f51 62{
d3b9f782 63 m_topWindow = NULL;
b46b1d59 64
4629016d 65 m_useBestVisual = false;
515a31bf 66 m_forceTrueColour = false;
1cbee0b4 67
b46b1d59 68 m_isActive = true;
1bf77ee5 69
1cbee0b4
VZ
70 // We don't want to exit the app if the user code shows a dialog from its
71 // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete
72 // to Yes initially as this dialog would be the last top level window.
73 // OTOH, if we set it to No initially we'll have to overwrite it with Yes
74 // when we enter our OnRun() because we do want the default behaviour from
75 // then on. But this would be a problem if the user code calls
4629016d 76 // SetExitOnFrameDelete(false) from OnInit().
1cbee0b4
VZ
77 //
78 // So we use the special "Later" value which is such that
4629016d 79 // GetExitOnFrameDelete() returns false for it but which we know we can
1cbee0b4
VZ
80 // safely (i.e. without losing the effect of the users SetExitOnFrameDelete
81 // call) overwrite in OnRun()
82 m_exitOnFrameDelete = Later;
1e6feb95
VZ
83}
84
a54930e0 85bool wxAppBase::Initialize(int& argcOrig, wxChar **argvOrig)
94826170 86{
a54930e0 87 if ( !wxAppConsole::Initialize(argcOrig, argvOrig) )
94826170
VZ
88 return false;
89
94826170 90 wxInitializeStockLists();
94826170
VZ
91
92 wxBitmap::InitStandardHandlers();
93
1f2f7329
FM
94 // for compatibility call the old initialization function too
95 if ( !OnInitGui() )
96 return false;
97
94826170
VZ
98 return true;
99}
100
101// ----------------------------------------------------------------------------
102// cleanup
103// ----------------------------------------------------------------------------
104
799ea011
GD
105wxAppBase::~wxAppBase()
106{
107 // this destructor is required for Darwin
108}
109
94826170
VZ
110void wxAppBase::CleanUp()
111{
07460370 112 // clean up all the pending objects
94826170
VZ
113 DeletePendingObjects();
114
07460370
VZ
115 // and any remaining TLWs (they remove themselves from wxTopLevelWindows
116 // when destroyed, so iterate until none are left)
117 while ( !wxTopLevelWindows.empty() )
118 {
119 // do not use Destroy() here as it only puts the TLW in pending list
120 // but we want to delete them now
121 delete wxTopLevelWindows.GetFirst()->GetData();
122 }
4055ed82 123
07460370 124 // undo everything we did in Initialize() above
94826170
VZ
125 wxBitmap::CleanUpHandlers();
126
f516d986 127 wxStockGDI::DeleteAll();
94826170
VZ
128
129 wxDeleteStockLists();
130
5276b0a5 131 wxDELETE(wxTheColourDatabase);
94826170 132
68d2c3be 133 wxAppConsole::CleanUp();
94826170
VZ
134}
135
475a93b7
VZ
136// ----------------------------------------------------------------------------
137// various accessors
5ff14574
PC
138// ----------------------------------------------------------------------------
139
140wxWindow* wxAppBase::GetTopWindow() const
141{
142 wxWindow* window = m_topWindow;
143 if (window == NULL && wxTopLevelWindows.GetCount() > 0)
144 window = wxTopLevelWindows.GetFirst()->GetData();
145 return window;
146}
147
148wxVideoMode wxAppBase::GetDisplayMode() const
149{
150 return wxVideoMode();
151}
152
475a93b7
VZ
153wxLayoutDirection wxAppBase::GetLayoutDirection() const
154{
155#if wxUSE_INTL
156 const wxLocale *const locale = wxGetLocale();
157 if ( locale )
158 {
159 const wxLanguageInfo *const
160 info = wxLocale::GetLanguageInfo(locale->GetLanguage());
161
162 if ( info )
163 return info->LayoutDirection;
164 }
165#endif // wxUSE_INTL
166
167 // we don't know
168 return wxLayout_Default;
169}
170
b913d3ed
VZ
171#if wxUSE_CMDLINE_PARSER
172
173// ----------------------------------------------------------------------------
174// GUI-specific command line options handling
175// ----------------------------------------------------------------------------
176
c2e45372
VZ
177#define OPTION_THEME "theme"
178#define OPTION_MODE "mode"
b913d3ed
VZ
179
180void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser)
181{
9c13e5ef
VZ
182 // first add the standard non GUI options
183 wxAppConsole::OnInitCmdLine(parser);
184
b913d3ed
VZ
185 // the standard command line options
186 static const wxCmdLineEntryDesc cmdLineGUIDesc[] =
187 {
188#ifdef __WXUNIVERSAL__
189 {
190 wxCMD_LINE_OPTION,
0d5ab92f 191 NULL,
b913d3ed
VZ
192 OPTION_THEME,
193 gettext_noop("specify the theme to use"),
194 wxCMD_LINE_VAL_STRING,
195 0x0
196 },
197#endif // __WXUNIVERSAL__
198
199#if defined(__WXMGL__)
200 // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports
201 // should provide this option. That's why it is in common/appcmn.cpp
202 // and not mgl/app.cpp
203 {
204 wxCMD_LINE_OPTION,
0d5ab92f 205 NULL,
b913d3ed
VZ
206 OPTION_MODE,
207 gettext_noop("specify display mode to use (e.g. 640x480-16)"),
208 wxCMD_LINE_VAL_STRING,
209 0x0
210 },
211#endif // __WXMGL__
212
213 // terminator
0d5ab92f 214 wxCMD_LINE_DESC_END
b913d3ed
VZ
215 };
216
217 parser.SetDesc(cmdLineGUIDesc);
218}
219
220bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser)
221{
222#ifdef __WXUNIVERSAL__
223 wxString themeName;
224 if ( parser.Found(OPTION_THEME, &themeName) )
225 {
226 wxTheme *theme = wxTheme::Create(themeName);
227 if ( !theme )
228 {
229 wxLogError(_("Unsupported theme '%s'."), themeName.c_str());
4629016d 230 return false;
b913d3ed
VZ
231 }
232
233 // Delete the defaultly created theme and set the new theme.
234 delete wxTheme::Get();
235 wxTheme::Set(theme);
236 }
237#endif // __WXUNIVERSAL__
238
239#if defined(__WXMGL__)
240 wxString modeDesc;
241 if ( parser.Found(OPTION_MODE, &modeDesc) )
242 {
243 unsigned w, h, bpp;
9a83f860 244 if ( wxSscanf(modeDesc.c_str(), wxT("%ux%u-%u"), &w, &h, &bpp) != 3 )
b913d3ed
VZ
245 {
246 wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str());
4629016d 247 return false;
b913d3ed
VZ
248 }
249
1c53456f 250 if ( !SetDisplayMode(wxVideoMode(w, h, bpp)) )
4629016d 251 return false;
b913d3ed
VZ
252 }
253#endif // __WXMGL__
254
255 return wxAppConsole::OnCmdLineParsed(parser);
256}
257
258#endif // wxUSE_CMDLINE_PARSER
259
94826170
VZ
260// ----------------------------------------------------------------------------
261// OnXXX() hooks
262// ----------------------------------------------------------------------------
263
1e6feb95
VZ
264bool wxAppBase::OnInitGui()
265{
266#ifdef __WXUNIVERSAL__
bf188f1a 267 if ( !wxTheme::Get() && !wxTheme::CreateDefault() )
4629016d 268 return false;
1e6feb95
VZ
269#endif // __WXUNIVERSAL__
270
4629016d 271 return true;
1e6feb95 272}
1e6feb95 273
1cbee0b4
VZ
274int wxAppBase::OnRun()
275{
276 // see the comment in ctor: if the initial value hasn't been changed, use
277 // the default Yes from now on
278 if ( m_exitOnFrameDelete == Later )
279 {
280 m_exitOnFrameDelete = Yes;
281 }
282 //else: it has been changed, assume the user knows what he is doing
283
b46b1d59 284 return wxAppConsole::OnRun();
1cbee0b4
VZ
285}
286
b913d3ed
VZ
287int wxAppBase::OnExit()
288{
289#ifdef __WXUNIVERSAL__
290 delete wxTheme::Set(NULL);
291#endif // __WXUNIVERSAL__
292
293 return wxAppConsole::OnExit();
294}
295
e2478fde 296wxAppTraits *wxAppBase::CreateTraits()
a69be60b 297{
7843d11b 298 return new wxGUIAppTraits;
72cdf4c9
VZ
299}
300
1e6feb95
VZ
301// ----------------------------------------------------------------------------
302// misc
303// ----------------------------------------------------------------------------
304
6e169cf3 305void wxAppBase::SetActive(bool active, wxWindow * WXUNUSED(lastFocus))
7beba2fc 306{
66dfed9b
VZ
307 if ( active == m_isActive )
308 return;
309
1e6feb95 310 m_isActive = active;
66dfed9b
VZ
311
312 wxActivateEvent event(wxEVT_ACTIVATE_APP, active);
313 event.SetEventObject(this);
314
315 (void)ProcessEvent(event);
7beba2fc 316}
1e6feb95 317
d48b06bd
FM
318bool wxAppBase::SafeYield(wxWindow *win, bool onlyIfNeeded)
319{
320 wxWindowDisabler wd(win);
321
dde19c21
FM
322 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
323
324 return loop && loop->Yield(onlyIfNeeded);
d48b06bd
FM
325}
326
327bool wxAppBase::SafeYieldFor(wxWindow *win, long eventsToProcess)
328{
329 wxWindowDisabler wd(win);
330
dde19c21
FM
331 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
332
333 return loop && loop->YieldFor(eventsToProcess);
d48b06bd
FM
334}
335
336
2dc62891
VZ
337// ----------------------------------------------------------------------------
338// idle handling
339// ----------------------------------------------------------------------------
340
4629016d 341// Returns true if more time is needed.
e39af974
JS
342bool wxAppBase::ProcessIdle()
343{
3185abc2
VZ
344 // call the base class version first to send the idle event to wxTheApp
345 // itself
14eb37a0 346 bool needMore = wxAppConsoleBase::ProcessIdle();
5109ae5d 347 wxIdleEvent event;
222ed1d6 348 wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
e39af974
JS
349 while (node)
350 {
351 wxWindow* win = node->GetData();
0c3e2a5b 352 if (win->SendIdleEvents(event))
4629016d 353 needMore = true;
e39af974
JS
354 node = node->GetNext();
355 }
356
e39af974 357 wxUpdateUIEvent::ResetUpdateTime();
4629016d 358
5109ae5d 359 return needMore;
e39af974
JS
360}
361
bf188f1a 362// ----------------------------------------------------------------------------
e2478fde 363// wxGUIAppTraitsBase
bf188f1a
VZ
364// ----------------------------------------------------------------------------
365
bf188f1a 366#if wxUSE_LOG
bf188f1a 367
e2478fde
VZ
368wxLog *wxGUIAppTraitsBase::CreateLogTarget()
369{
d30ef769 370#if wxUSE_LOGGUI
a3f78ceb 371#ifndef __WXOSX_IPHONE__
e2478fde 372 return new wxLogGui;
a3f78ceb
SC
373#else
374 return new wxLogStderr;
375#endif
461dae94 376#else
fa6416df 377 // we must have something!
461dae94
VZ
378 return new wxLogStderr;
379#endif
bf188f1a
VZ
380}
381
bf188f1a
VZ
382#endif // wxUSE_LOG
383
e2478fde 384wxMessageOutput *wxGUIAppTraitsBase::CreateMessageOutput()
bf188f1a 385{
e2478fde
VZ
386 // The standard way of printing help on command line arguments (app --help)
387 // is (according to common practice):
388 // - console apps: to stderr (on any platform)
389 // - GUI apps: stderr on Unix platforms (!)
784ee7d5
VZ
390 // stderr if available and message box otherwise on others
391 // (currently stderr only Windows if app running from console)
e2478fde
VZ
392#ifdef __UNIX__
393 return new wxMessageOutputStderr;
394#else // !__UNIX__
395 // wxMessageOutputMessageBox doesn't work under Motif
396 #ifdef __WXMOTIF__
397 return new wxMessageOutputLog;
a8ff046b 398 #elif wxUSE_MSGDLG
784ee7d5 399 return new wxMessageOutputBest(wxMSGOUT_PREFER_STDERR);
a8ff046b
VZ
400 #else
401 return new wxMessageOutputStderr;
e2478fde
VZ
402 #endif
403#endif // __UNIX__/!__UNIX__
bf188f1a
VZ
404}
405
e2478fde 406#if wxUSE_FONTMAP
bf188f1a 407
e2478fde
VZ
408wxFontMapper *wxGUIAppTraitsBase::CreateFontMapper()
409{
410 return new wxFontMapper;
bf188f1a
VZ
411}
412
e2478fde 413#endif // wxUSE_FONTMAP
bf188f1a 414
f0244295
VZ
415wxRendererNative *wxGUIAppTraitsBase::CreateRenderer()
416{
417 // use the default native renderer by default
418 return NULL;
419}
420
e2478fde
VZ
421bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString& msg)
422{
2d8e0096 423#if wxDEBUG_LEVEL
e2478fde
VZ
424 // under MSW we prefer to use the base class version using ::MessageBox()
425 // even if wxMessageBox() is available because it has less chances to
426 // double fault our app than our wxMessageBox()
19a67f39
VZ
427 //
428 // under DFB the message dialog is not always functional right now
429 //
430 // and finally we can't use wxMessageBox() if it wasn't compiled in, of
431 // course
2d8e0096
VZ
432#if !defined(__WXMSW__) && !defined(__WXDFB__) && wxUSE_MSGDLG
433
434 // we can't (safely) show the GUI dialog from another thread, only do it
435 // for the asserts in the main thread
436 if ( wxIsMainThread() )
437 {
438 wxString msgDlg = msg;
db9febdf
RR
439
440#if wxUSE_STACKWALKER
2d8e0096
VZ
441 const wxString stackTrace = GetAssertStackTrace();
442 if ( !stackTrace.empty() )
443 msgDlg << wxT("\n\nCall stack:\n") << stackTrace;
db9febdf
RR
444#endif // wxUSE_STACKWALKER
445
2d8e0096
VZ
446 // this message is intentionally not translated -- it is for
447 // developpers only
448 msgDlg += wxT("\nDo you want to stop the program?\n")
449 wxT("You can also choose [Cancel] to suppress ")
450 wxT("further warnings.");
e2478fde 451
2d8e0096
VZ
452 switch ( wxMessageBox(msgDlg, wxT("wxWidgets Debug Alert"),
453 wxYES_NO | wxCANCEL | wxICON_STOP ) )
454 {
455 case wxYES:
456 wxTrap();
457 break;
458
459 case wxCANCEL:
460 // no more asserts
461 return true;
090a6d7a 462
2d8e0096
VZ
463 //case wxNO: nothing to do
464 }
a5f1fd3e 465
2d8e0096 466 return false;
090a6d7a 467 }
2d8e0096
VZ
468#endif // wxUSE_MSGDLG
469#endif // wxDEBUG_LEVEL
090a6d7a 470
2d8e0096 471 return wxAppTraitsBase::ShowAssertDialog(msg);
a5f1fd3e
VZ
472}
473
e2478fde 474bool wxGUIAppTraitsBase::HasStderr()
a5f1fd3e 475{
e2478fde
VZ
476 // we consider that under Unix stderr always goes somewhere, even if the
477 // user doesn't always see it under GUI desktops
478#ifdef __UNIX__
479 return true;
a5f1fd3e 480#else
e2478fde 481 return false;
a5f1fd3e 482#endif
a5f1fd3e
VZ
483}
484