1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "app.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
27 #if defined(__BORLANDC__)
35 #include "wx/gdicmn.h"
38 #include "wx/cursor.h"
40 #include "wx/palette.h"
42 #include "wx/dialog.h"
43 #include "wx/msgdlg.h"
45 #include "wx/dynarray.h"
48 #include "wx/msw/private.h"
50 #include "wx/module.h"
53 #include "wx/thread.h"
55 // define the array of MSG strutures
56 WX_DECLARE_OBJARRAY(MSG
, wxMsgArray
);
58 #include "wx/arrimpl.cpp"
60 WX_DEFINE_OBJARRAY(wxMsgArray
);
61 #endif // wxUSE_THREADS
63 #if wxUSE_WX_RESOURCES
64 #include "wx/resource.h"
67 // OLE is used for drag-and-drop, clipboard, OLE Automation...
68 #if defined(__GNUWIN32__) || defined(__SC__) || defined(__SALFORDC__)
72 #endif // broken compilers
81 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
85 #include "wx/msw/msvcrt.h"
87 // ---------------------------------------------------------------------------
89 // ---------------------------------------------------------------------------
91 extern char *wxBuffer
;
92 extern char *wxOsVersion
;
93 extern wxList
*wxWinHandleList
;
94 extern wxList WXDLLEXPORT wxPendingDelete
;
95 extern void wxSetKeyboardHook(bool doIt
);
96 extern wxCursor
*g_globalCursor
;
98 HINSTANCE wxhInstance
= 0;
99 static MSG s_currentMsg
;
100 wxApp
*wxTheApp
= NULL
;
102 // FIXME why not const? and not static?
103 char wxFrameClassName
[] = "wxFrameClass";
104 char wxMDIFrameClassName
[] = "wxMDIFrameClass";
105 char wxMDIChildFrameClassName
[] = "wxMDIChildFrameClass";
106 char wxPanelClassName
[] = "wxPanelClass";
107 char wxCanvasClassName
[] = "wxCanvasClass";
109 HICON wxSTD_FRAME_ICON
= (HICON
) NULL
;
110 HICON wxSTD_MDICHILDFRAME_ICON
= (HICON
) NULL
;
111 HICON wxSTD_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
113 HICON wxDEFAULT_FRAME_ICON
= (HICON
) NULL
;
114 HICON wxDEFAULT_MDICHILDFRAME_ICON
= (HICON
) NULL
;
115 HICON wxDEFAULT_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
117 HBRUSH wxDisableButtonBrush
= (HBRUSH
) 0;
119 LRESULT APIENTRY
wxWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
121 #if defined(__WIN95__) && !defined(__TWIN32__)
122 #define wxUSE_RICHEDIT 1
124 #define wxUSE_RICHEDIT 0
128 static HINSTANCE gs_hRichEdit
= (HINSTANCE
) NULL
;
131 // ===========================================================================
133 // ===========================================================================
135 // ---------------------------------------------------------------------------
137 // ---------------------------------------------------------------------------
139 #if !USE_SHARED_LIBRARY
140 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
142 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
143 EVT_IDLE(wxApp::OnIdle
)
144 EVT_END_SESSION(wxApp::OnEndSession
)
145 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
149 long wxApp::sm_lastMessageTime
= 0;
152 bool wxApp::Initialize()
154 // Some people may wish to use this, but
155 // probably it shouldn't be here by default.
157 // wxRedirectIOToConsole();
160 wxBuffer
= new char[1500]; // FIXME
162 wxClassInfo::InitializeClasses();
165 wxGetResource("wxWindows", "OsVersion", &wxOsVersion
);
168 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
169 wxTheColourDatabase
->Initialize();
171 wxInitializeStockLists();
172 wxInitializeStockObjects();
174 #if wxUSE_WX_RESOURCES
175 wxInitializeResourceSystem();
178 wxBitmap::InitStandardHandlers();
180 #if defined(__WIN95__)
181 InitCommonControls();
184 gs_hRichEdit
= LoadLibrary("RICHED32.DLL");
186 if (gs_hRichEdit
== (HINSTANCE
) NULL
)
188 wxLogError(_("Could not initialise Rich Edit DLL"));
190 #endif // wxUSE_RICHEDIT
194 // for OLE, enlarge message queue to be as large as possible
196 while (!SetMessageQueue(iMsg
) && (iMsg
-= 8));
200 dwOleVer = CoBuildVersion();
202 // check the OLE library version
203 if (rmm != HIWORD(dwOleVer))
205 wxMessageBox("Incorrect version of OLE libraries.");
211 // we need to initialize OLE library
212 if ( FAILED(::OleInitialize(NULL
)) )
213 wxLogError(_("Cannot initialize OLE"));
217 if (!Ctl3dRegister(wxhInstance
))
218 wxLogError("Cannot register CTL3D");
220 Ctl3dAutoSubclass(wxhInstance
);
223 g_globalCursor
= new wxCursor
;
225 wxSTD_FRAME_ICON
= LoadIcon(wxhInstance
, "wxSTD_FRAME");
226 wxSTD_MDIPARENTFRAME_ICON
= LoadIcon(wxhInstance
, "wxSTD_MDIPARENTFRAME");
227 wxSTD_MDICHILDFRAME_ICON
= LoadIcon(wxhInstance
, "wxSTD_MDICHILDFRAME");
229 wxDEFAULT_FRAME_ICON
= LoadIcon(wxhInstance
, "wxDEFAULT_FRAME");
230 wxDEFAULT_MDIPARENTFRAME_ICON
= LoadIcon(wxhInstance
, "wxDEFAULT_MDIPARENTFRAME");
231 wxDEFAULT_MDICHILDFRAME_ICON
= LoadIcon(wxhInstance
, "wxDEFAULT_MDICHILDFRAME");
233 RegisterWindowClasses();
235 // Create the brush for disabling bitmap buttons
238 lb
.lbStyle
= BS_PATTERN
;
239 lb
.lbHatch
= (int)LoadBitmap( wxhInstance
, "wxDISABLE_BUTTON_BITMAP" ) ;
240 wxDisableButtonBrush
= ::CreateBrushIndirect( & lb
) ;
241 ::DeleteObject( (HGDIOBJ
)lb
.lbHatch
) ;
247 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
249 // This is to foil optimizations in Visual C++ that throw out dummy.obj.
250 // PLEASE DO NOT ALTER THIS.
251 #if defined(__VISUALC__) && !defined(WXMAKINGDLL)
252 extern char wxDummyChar
;
253 if (wxDummyChar
) wxDummyChar
++;
256 wxSetKeyboardHook(TRUE
);
258 wxModule::RegisterModules();
259 if (!wxModule::InitializeModules())
264 //// RegisterWindowClasses
266 bool wxApp::RegisterWindowClasses()
268 ///////////////////////////////////////////////////////////////////////
269 // Register the frame window class.
270 WNDCLASS wndclass
; // Structure used to register Windows class.
272 wndclass
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
273 wndclass
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
274 wndclass
.cbClsExtra
= 0;
275 wndclass
.cbWndExtra
= sizeof( DWORD
); // was 4
276 wndclass
.hInstance
= wxhInstance
;
277 wndclass
.hIcon
= (HICON
) NULL
; // wxSTD_FRAME_ICON;
278 wndclass
.hCursor
= LoadCursor( (HINSTANCE
) NULL
, IDC_ARROW
);
279 wndclass
.hbrBackground
= (HBRUSH
)(COLOR_APPWORKSPACE
+1) ;
280 // wndclass.hbrBackground = GetStockObject( WHITE_BRUSH );
281 wndclass
.lpszMenuName
= NULL
;
282 #ifdef _MULTIPLE_INSTANCES
283 sprintf( wxFrameClassName
,"wxFrameClass%d", wxhInstance
);
285 wndclass
.lpszClassName
= wxFrameClassName
;
287 if (!RegisterClass( &wndclass
))
289 // wxFatalError("Can't register Frame Window class");
292 ///////////////////////////////////////////////////////////////////////
293 // Register the MDI frame window class.
294 WNDCLASS wndclass1
; // Structure used to register Windows class.
296 wndclass1
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
297 wndclass1
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
298 wndclass1
.cbClsExtra
= 0;
299 wndclass1
.cbWndExtra
= sizeof( DWORD
); // was 4
300 wndclass1
.hInstance
= wxhInstance
;
301 wndclass1
.hIcon
= (HICON
) NULL
; // wxSTD_MDIPARENTFRAME_ICON;
302 wndclass1
.hCursor
= LoadCursor( (HINSTANCE
) NULL
, IDC_ARROW
);
303 // wndclass1.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE+1) ;
304 wndclass1
.hbrBackground
= (HBRUSH
) NULL
;
305 wndclass1
.lpszMenuName
= NULL
;
307 wndclass1
.lpszClassName
= wxMDIFrameClassName
;
308 if (!RegisterClass( &wndclass1
))
310 // wxFatalError("Can't register MDI Frame window class");
314 ///////////////////////////////////////////////////////////////////////
315 // Register the MDI child frame window class.
316 WNDCLASS wndclass4
; // Structure used to register Windows class.
318 wndclass4
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
319 wndclass4
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
320 wndclass4
.cbClsExtra
= 0;
321 wndclass4
.cbWndExtra
= sizeof( DWORD
); // was 4
322 wndclass4
.hInstance
= wxhInstance
;
323 wndclass4
.hIcon
= (HICON
) NULL
; // wxSTD_MDICHILDFRAME_ICON;
324 wndclass4
.hCursor
= LoadCursor( (HINSTANCE
) NULL
, IDC_ARROW
);
325 // TODO: perhaps this should be NULL so that Windows doesn't
326 // paint the background itself (would OnEraseBackground duplicate
328 wndclass4
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1) ;
329 // wndclass4.hbrBackground = NULL;
330 wndclass4
.lpszMenuName
= NULL
;
331 wndclass4
.lpszClassName
= wxMDIChildFrameClassName
;
333 if (!RegisterClass( &wndclass4
))
335 // wxFatalError("Can't register MDI child frame window class");
339 ///////////////////////////////////////////////////////////////////////
340 // Register the panel window class.
341 WNDCLASS wndclass2
; // Structure used to register Windows class.
342 memset(&wndclass2
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
343 wndclass2
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
344 wndclass2
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
345 wndclass2
.cbClsExtra
= 0;
346 wndclass2
.cbWndExtra
= sizeof( DWORD
); // was 4
347 wndclass2
.hInstance
= wxhInstance
;
348 wndclass2
.hIcon
= (HICON
) NULL
;
349 wndclass2
.hCursor
= (HCURSOR
) NULL
;
350 // wndclass2.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1) ;
351 wndclass2
.hbrBackground
= (HBRUSH
) GetStockObject( LTGRAY_BRUSH
);
352 wndclass2
.lpszMenuName
= NULL
;
353 wndclass2
.lpszClassName
= wxPanelClassName
;
354 if (!RegisterClass( &wndclass2
))
356 // wxFatalError("Can't register Panel Window class");
360 ///////////////////////////////////////////////////////////////////////
361 // Register the canvas and textsubwindow class name
362 WNDCLASS wndclass3
; // Structure used to register Windows class.
363 memset(&wndclass3
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
364 // Use CS_OWNDC to avoid messing about restoring the context
365 // for every graphic operation.
366 // wndclass3.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS ;
368 wndclass3
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
369 wndclass3
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
370 wndclass3
.cbClsExtra
= 0;
371 wndclass3
.cbWndExtra
= sizeof( DWORD
); // was 4
372 wndclass3
.hInstance
= wxhInstance
;
373 wndclass3
.hIcon
= (HICON
) NULL
;
374 wndclass3
.hCursor
= (HCURSOR
) NULL
;
375 // wndclass3.hbrBackground = (HBRUSH)(COLOR_WINDOW+1) ;
376 wndclass3
.hbrBackground
= (HBRUSH
) NULL
;
377 wndclass3
.lpszMenuName
= NULL
;
378 wndclass3
.lpszClassName
= wxCanvasClassName
;
379 if (!RegisterClass( &wndclass3
))
381 // wxFatalError("Can't register Canvas class");
388 //// Convert Windows to argc, argv style
390 void wxApp::ConvertToStandardCommandArgs(char* lpCmdLine
)
394 wxString
cmdLine(lpCmdLine
);
397 // Get application name
398 char name
[260]; // 260 is MAX_PATH value from windef.h
399 ::GetModuleFileName(wxhInstance
, name
, WXSIZEOF(name
));
401 // GNUWIN32 already fills in the first arg with the application name.
402 // JACS: apparently not now (b20 and above?)
403 #if 0 // !defined(__GNUWIN32__)
408 strcpy(name
, wxFileNameFromPath(name
));
409 wxStripExtension(name
);
410 wxTheApp
->SetAppName(name
);
413 // Treat strings enclosed in double-quotes as single arguments
415 int len
= cmdLine
.Length();
419 while ((i
< len
) && isspace(cmdLine
.GetChar(i
)))
424 if (cmdLine
.GetChar(i
) == '"') // We found the start of a string
428 while ((i
< len
) && (cmdLine
.GetChar(i
) != '"'))
431 wxString
arg(cmdLine
.Mid(first
, (i
- first
)));
437 i
++; // Skip past 2nd quote
439 else // Unquoted argument
442 while ((i
< len
) && !isspace(cmdLine
.GetChar(i
)))
445 wxString
arg(cmdLine
.Mid(first
, (i
- first
)));
453 wxTheApp
->argv
= new char*[count
+ 1];
454 for (i
= 0; i
< count
; i
++)
456 wxString
arg(args
[i
]);
457 wxTheApp
->argv
[i
] = copystring((const char*)arg
);
459 wxTheApp
->argv
[count
] = NULL
; // argv[] is a NULL-terminated list
460 wxTheApp
->argc
= count
;
463 //// Cleans up any wxWindows internal structures left lying around
465 void wxApp::CleanUp()
469 // flush the logged messages if any and install a 'safer' log target: the
470 // default one (wxLogGui) can't be used after the resources are freed just
471 // below and the user suppliedo ne might be even more unsafe (using any
472 // wxWindows GUI function is unsafe starting from now)
473 wxLog::DontCreateOnDemand();
475 // this will flush the old messages if any
476 delete wxLog::SetActiveTarget(new wxLogStderr
);
478 // One last chance for pending objects to be cleaned up
479 wxTheApp
->DeletePendingObjects();
481 wxModule::CleanUpModules();
483 #if wxUSE_WX_RESOURCES
484 wxCleanUpResourceSystem();
486 // wxDefaultResourceTable->ClearTable();
489 // Indicate that the cursor can be freed, so that cursor won't be deleted
490 // by deleting the bitmap list before g_globalCursor goes out of scope
491 // (double deletion of the cursor).
492 wxSetCursor(wxNullCursor
);
493 delete g_globalCursor
;
495 wxDeleteStockObjects() ;
497 // Destroy all GDI lists, etc.
498 wxDeleteStockLists();
500 delete wxTheColourDatabase
;
501 wxTheColourDatabase
= NULL
;
503 wxBitmap::CleanUpHandlers();
508 //// WINDOWS-SPECIFIC CLEANUP
510 wxSetKeyboardHook(FALSE
);
515 if (gs_hRichEdit
!= (HINSTANCE
) NULL
)
516 FreeLibrary(gs_hRichEdit
);
525 if (wxSTD_FRAME_ICON
)
526 DestroyIcon(wxSTD_FRAME_ICON
);
527 if (wxSTD_MDICHILDFRAME_ICON
)
528 DestroyIcon(wxSTD_MDICHILDFRAME_ICON
);
529 if (wxSTD_MDIPARENTFRAME_ICON
)
530 DestroyIcon(wxSTD_MDIPARENTFRAME_ICON
);
532 if (wxDEFAULT_FRAME_ICON
)
533 DestroyIcon(wxDEFAULT_FRAME_ICON
);
534 if (wxDEFAULT_MDICHILDFRAME_ICON
)
535 DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
536 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
537 DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
539 if ( wxDisableButtonBrush
)
540 ::DeleteObject( wxDisableButtonBrush
) ;
547 Ctl3dUnregister(wxhInstance
);
551 delete wxWinHandleList
;
553 wxClassInfo::CleanUpClasses();
558 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
559 // At this point we want to check if there are any memory
560 // blocks that aren't part of the wxDebugContext itself,
561 // as a special case. Then when dumping we need to ignore
562 // wxDebugContext, too.
563 if (wxDebugContext::CountObjectsLeft() > 0)
565 wxLogDebug("There were memory leaks.");
566 wxDebugContext::Dump();
567 wxDebugContext::PrintStatistics();
569 // wxDebugContext::SetStream(NULL, NULL);
572 // do it as the very last thing because everything else can log messages
573 delete wxLog::SetActiveTarget(NULL
);
576 #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL))
578 // temporarily disable this warning which would be generated in release builds
581 #pragma warning(disable: 4715) // not all control paths return a value
584 //// Main wxWindows entry point
585 int wxEntry(WXHINSTANCE hInstance
,
586 WXHINSTANCE
WXUNUSED(hPrevInstance
),
591 // do check for memory leaks on program exit
592 // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free
593 // deallocated memory which may be used to simulate low-memory condition)
594 wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF
);
596 // take everything into a try-except block in release build
597 // FIXME other compilers must support Win32 SEH (structured exception
598 // handling) too, just find the appropriate keyword in their docs!
599 // Please note that it's _not_ the same as C++ exceptions!
600 #if !defined(__WXDEBUG__) && defined(__VISUALC__)
601 #define CATCH_PROGRAM_EXCEPTIONS
605 #undef CATCH_PROGRAM_EXCEPTIONS
608 wxhInstance
= (HINSTANCE
) hInstance
;
610 if (!wxApp::Initialize())
613 // create the application object or ensure that one already exists
616 // The app may have declared a global application object, but we recommend
617 // the IMPLEMENT_APP macro is used instead, which sets an initializer
618 // function for delayed, dynamic app object construction.
619 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
620 "No initializer - use IMPLEMENT_APP macro." );
622 wxTheApp
= (*wxApp::GetInitializerFunction()) ();
625 wxCHECK_MSG( wxTheApp
, 0, "You have to define an instance of wxApp!" );
627 // save the WinMain() parameters
628 wxTheApp
->ConvertToStandardCommandArgs(lpCmdLine
);
629 wxTheApp
->m_nCmdShow
= nCmdShow
;
631 // GUI-specific initialisation. In fact on Windows we don't have any,
632 // but this call is provided for compatibility across platforms.
633 wxTheApp
->OnInitGui() ;
637 if ( wxTheApp
->OnInit() )
641 retValue
= wxTheApp
->OnRun();
644 // We want to initialize, but not run or exit immediately.
647 //else: app initialization failed, so we skipped OnRun()
649 wxWindow
*topWindow
= wxTheApp
->GetTopWindow();
652 // Forcibly delete the window.
653 if ( topWindow
->IsKindOf(CLASSINFO(wxFrame
)) ||
654 topWindow
->IsKindOf(CLASSINFO(wxDialog
)) )
656 topWindow
->Close(TRUE
);
657 wxTheApp
->DeletePendingObjects();
662 wxTheApp
->SetTopWindow(NULL
);
672 #ifdef CATCH_PROGRAM_EXCEPTIONS
674 __except ( EXCEPTION_EXECUTE_HANDLER
) {
677 wxTheApp->OnFatalException();
680 // using wxLog would be unsafe here
682 _("Unrecoverable program error detected: "
683 " the application will terminate."),
685 MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
687 ::ExitProcess(3); // the same exit code as abort()
691 #endif // CATCH_PROGRAM_EXCEPTIONS
694 // restore warning state
696 #pragma warning(default: 4715) // not all control paths return a value
701 //// Entry point for DLLs
703 int wxEntry(WXHINSTANCE hInstance
)
705 wxhInstance
= (HINSTANCE
) hInstance
;
708 // The app may have declared a global application object, but we recommend
709 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
710 // for delayed, dynamic app object construction.
713 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
714 "No initializer - use IMPLEMENT_APP macro." );
716 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
719 wxCHECK_MSG( wxTheApp
, 0, "You have to define an instance of wxApp!" );
722 wxTheApp
->argv
= NULL
;
724 wxTheApp
->OnInitGui();
728 wxWindow
*topWindow
= wxTheApp
->GetTopWindow();
729 if ( topWindow
&& topWindow
->GetHWND())
731 topWindow
->Show(TRUE
);
738 //// Static member initialization
740 wxAppInitializerFunction
wxApp::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
747 m_wantDebugOutput
= TRUE
;
752 m_printMode
= wxPRINT_WINDOWS
;
754 m_printMode
= wxPRINT_POSTSCRIPT
;
756 m_exitOnFrameDelete
= TRUE
;
762 // Delete command-line args
764 for (i
= 0; i
< argc
; i
++)
771 bool wxApp::Initialized()
779 #ifdef _WINDLL // Assume initialized if DLL (no way of telling)
785 * Get and process a message, returning FALSE if WM_QUIT
786 * received (and also set the flag telling the app to exit the main loop)
789 bool wxApp::DoMessage()
791 BOOL rc
= ::GetMessage(&s_currentMsg
, (HWND
) NULL
, 0, 0);
801 // should never happen, but let's test for it nevertheless
802 wxLogLastError("GetMessage");
807 wxASSERT_MSG( wxThread::IsMain(),
808 "only the main thread can process Windows messages" );
810 static bool s_hadGuiLock
= TRUE
;
811 static wxMsgArray s_aSavedMessages
;
813 // if a secondary thread owns is doing GUI calls, save all messages for
814 // later processing - we can't process them right now because it will
815 // lead to recursive library calls (and we're not reentrant)
816 if ( !wxGuiOwnedByMainThread() )
818 s_hadGuiLock
= FALSE
;
820 // leave out WM_COMMAND messages: too dangerous, sometimes
821 // the message will be processed twice
822 if ( !wxIsWaitingForThread() ||
823 s_currentMsg
.message
!= WM_COMMAND
)
825 s_aSavedMessages
.Add(s_currentMsg
);
832 // have we just regained the GUI lock? if so, post all of the saved
835 // FIXME of course, it's not _exactly_ the same as processing the
836 // messages normally - expect some things to break...
841 size_t count
= s_aSavedMessages
.Count();
842 for ( size_t n
= 0; n
< count
; n
++ )
844 MSG
& msg
= s_aSavedMessages
[n
];
846 if ( !ProcessMessage((WXMSG
*)&msg
) )
848 ::TranslateMessage(&msg
);
849 ::DispatchMessage(&msg
);
853 s_aSavedMessages
.Empty();
856 #endif // wxUSE_THREADS
858 // Process the message
859 if ( !ProcessMessage((WXMSG
*)&s_currentMsg
) )
861 ::TranslateMessage(&s_currentMsg
);
862 wxApp::sm_lastMessageTime
= s_currentMsg
.time
; /* MATTHEW: timeStamp impl. */
863 ::DispatchMessage(&s_currentMsg
);
871 * Keep trying to process messages until WM_QUIT
874 * If there are messages to be processed, they will all be
875 * processed and OnIdle will not be called.
876 * When there are no more messages, OnIdle is called.
877 * If OnIdle requests more time,
878 * it will be repeatedly called so long as there are no pending messages.
879 * A 'feature' of this is that once OnIdle has decided that no more processing
880 * is required, then it won't get processing time until further messages
881 * are processed (it'll sit in DoMessage).
884 int wxApp::MainLoop()
888 while ( m_keepGoing
)
891 wxMutexGuiLeaveOrEnter();
892 #endif // wxUSE_THREADS
894 while ( !::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) &&
902 return s_currentMsg
.wParam
;
905 // Returns TRUE if more time is needed.
906 bool wxApp::ProcessIdle()
909 event
.SetEventObject(this);
912 return event
.MoreRequested();
915 void wxApp::ExitMainLoop()
920 bool wxApp::Pending()
922 return (::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) != 0) ;
925 void wxApp::Dispatch()
931 * Give all windows a chance to preprocess
932 * the message. Some may have accelerator tables, or have
935 bool wxApp::ProcessMessage(WXMSG
*Msg
)
937 MSG
*msg
= (MSG
*)Msg
;
941 // Try translations first; find the youngest window with
942 // a translation table.
943 for (hWnd
= msg
->hwnd
; hWnd
!= (HWND
) NULL
; hWnd
= ::GetParent(hWnd
))
945 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
948 if (wnd
->MSWTranslateMessage(Msg
))
953 // Anyone for a non-translation message? Try youngest descendants first.
954 for (hWnd
= msg
->hwnd
; hWnd
!= (HWND
) NULL
; hWnd
= ::GetParent(hWnd
))
956 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
959 if (wnd
->MSWProcessMessage(Msg
))
966 void wxApp::OnIdle(wxIdleEvent
& event
)
968 static bool s_inOnIdle
= FALSE
;
970 // Avoid recursion (via ProcessEvent default case)
976 // 'Garbage' collection of windows deleted with Close().
977 DeletePendingObjects();
979 // flush the logged messages if any
980 wxLog
*pLog
= wxLog::GetActiveTarget();
981 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
984 // Send OnIdle events to all windows
985 if ( SendIdleEvents() )
987 // SendIdleEvents() returns TRUE if at least one window requested more
989 event
.RequestMore(TRUE
);
995 // Send idle event to all top-level windows
996 bool wxApp::SendIdleEvents()
998 bool needMore
= FALSE
;
999 wxNode
* node
= wxTopLevelWindows
.First();
1002 wxWindow
* win
= (wxWindow
*) node
->Data();
1003 if (SendIdleEvents(win
))
1006 node
= node
->Next();
1012 // Send idle event to window and all subwindows
1013 bool wxApp::SendIdleEvents(wxWindow
* win
)
1015 bool needMore
= FALSE
;
1018 event
.SetEventObject(win
);
1019 win
->GetEventHandler()->ProcessEvent(event
);
1021 if (event
.MoreRequested())
1024 wxNode
* node
= win
->GetChildren().First();
1027 wxWindow
* win
= (wxWindow
*) node
->Data();
1028 if (SendIdleEvents(win
))
1031 node
= node
->Next();
1036 void wxApp::DeletePendingObjects()
1038 wxNode
*node
= wxPendingDelete
.First();
1041 wxObject
*obj
= (wxObject
*)node
->Data();
1045 if (wxPendingDelete
.Member(obj
))
1048 // Deleting one object may have deleted other pending
1049 // objects, so start from beginning of list again.
1050 node
= wxPendingDelete
.First();
1054 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1057 GetTopWindow()->Close(TRUE
);
1060 // Default behaviour: close the application with prompts. The
1061 // user can veto the close, and therefore the end session.
1062 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1066 if (!GetTopWindow()->Close(!event
.CanVeto()))
1071 wxLog
* wxApp::CreateLogTarget()
1073 return new wxLogGui
;
1076 wxWindow
* wxApp::GetTopWindow() const
1080 else if (wxTopLevelWindows
.Number() > 0)
1081 return (wxWindow
*) wxTopLevelWindows
.First()->Data();
1086 int wxApp::GetComCtl32Version() const
1088 // have we loaded COMCTL32 yet?
1089 HMODULE theModule
= ::GetModuleHandle("COMCTL32");
1092 // if so, then we can check for the version
1095 // InitCommonControlsEx is unique to 4.7 and later
1096 FARPROC theProc
= ::GetProcAddress(theModule
, "InitCommonControlsEx");
1099 { // not found, must be 4.00
1104 // The following symbol are unique to 4.71
1106 // FlatSB_EnableScrollBar FlatSB_GetScrollInfo FlatSB_GetScrollPos
1107 // FlatSB_GetScrollProp FlatSB_GetScrollRange FlatSB_SetScrollInfo
1108 // FlatSB_SetScrollPos FlatSB_SetScrollProp FlatSB_SetScrollRange
1109 // FlatSB_ShowScrollBar
1110 // _DrawIndirectImageList _DuplicateImageList
1112 // UninitializeFlatSB
1113 // we could check for any of these - I chose DllInstall
1114 FARPROC theProc
= ::GetProcAddress(theModule
, "DllInstall");
1117 // not found, must be 4.70
1121 { // found, must be 4.71
1131 wxLogError(_("Fatal error: exiting"));
1136 // Yield to incoming messages
1140 // We want to go back to the main message loop
1141 // if we see a WM_QUIT. (?)
1142 while (PeekMessage(&msg
, NULL
, 0, 0, PM_NOREMOVE
) && msg
.message
!= WM_QUIT
)
1144 if ( !wxTheApp
->DoMessage() )
1151 HINSTANCE
wxGetInstance()
1156 void wxSetInstance(HINSTANCE hInst
)
1158 wxhInstance
= hInst
;
1161 // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly
1162 // if in a separate file. So include it here to ensure it's linked.
1163 #if (defined(__VISUALC__) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(__TWIN32__))