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"
46 #include "wx/wxchar.h"
51 #include "wx/module.h"
53 #include "wx/msw/private.h"
56 #include "wx/thread.h"
58 // define the array of MSG strutures
59 WX_DECLARE_OBJARRAY(MSG
, wxMsgArray
);
61 #include "wx/arrimpl.cpp"
63 WX_DEFINE_OBJARRAY(wxMsgArray
);
64 #endif // wxUSE_THREADS
66 #if wxUSE_WX_RESOURCES
67 #include "wx/resource.h"
70 // OLE is used for drag-and-drop, clipboard, OLE Automation...
71 #ifndef wxUSE_NORLANDER_HEADERS
72 #if defined(__GNUWIN32__) || defined(__SC__) || defined(__SALFORDC__)
76 #endif // broken compilers
86 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
90 #include "wx/msw/msvcrt.h"
92 // ---------------------------------------------------------------------------
94 // ---------------------------------------------------------------------------
96 extern wxChar
*wxBuffer
;
97 extern wxChar
*wxOsVersion
;
98 extern wxList
*wxWinHandleList
;
99 extern wxList WXDLLEXPORT wxPendingDelete
;
100 extern void wxSetKeyboardHook(bool doIt
);
101 extern wxCursor
*g_globalCursor
;
103 HINSTANCE wxhInstance
= 0;
105 wxApp
*wxTheApp
= NULL
;
107 // FIXME why not const? and not static?
109 // NB: all "NoRedraw" classes must have the same names as the "normal" classes
110 // with NR suffix - wxWindow::MSWCreate() supposes this
111 wxChar wxFrameClassName
[] = wxT("wxFrameClass");
112 wxChar wxFrameClassNameNoRedraw
[] = wxT("wxFrameClassNR");
113 wxChar wxMDIFrameClassName
[] = wxT("wxMDIFrameClass");
114 wxChar wxMDIFrameClassNameNoRedraw
[] = wxT("wxMDIFrameClassNR");
115 wxChar wxMDIChildFrameClassName
[] = wxT("wxMDIChildFrameClass");
116 wxChar wxMDIChildFrameClassNameNoRedraw
[] = wxT("wxMDIChildFrameClassNR");
117 wxChar wxPanelClassName
[] = wxT("wxPanelClass");
118 wxChar wxCanvasClassName
[] = wxT("wxCanvasClass");
120 HICON wxSTD_FRAME_ICON
= (HICON
) NULL
;
121 HICON wxSTD_MDICHILDFRAME_ICON
= (HICON
) NULL
;
122 HICON wxSTD_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
124 HICON wxDEFAULT_FRAME_ICON
= (HICON
) NULL
;
125 HICON wxDEFAULT_MDICHILDFRAME_ICON
= (HICON
) NULL
;
126 HICON wxDEFAULT_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
128 HBRUSH wxDisableButtonBrush
= (HBRUSH
) 0;
130 LRESULT APIENTRY
wxWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
132 #if defined(__WIN95__) && !defined(__TWIN32__)
133 #define wxUSE_RICHEDIT 1
135 #define wxUSE_RICHEDIT 0
139 static HINSTANCE gs_hRichEdit
= (HINSTANCE
) NULL
;
142 // ===========================================================================
144 // ===========================================================================
146 // ---------------------------------------------------------------------------
148 // ---------------------------------------------------------------------------
150 #if !USE_SHARED_LIBRARY
151 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
153 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
154 EVT_IDLE(wxApp::OnIdle
)
155 EVT_END_SESSION(wxApp::OnEndSession
)
156 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
161 bool wxApp::Initialize()
163 // Some people may wish to use this, but
164 // probably it shouldn't be here by default.
166 // wxRedirectIOToConsole();
169 wxBuffer
= new wxChar
[1500]; // FIXME
171 wxClassInfo::InitializeClasses();
174 wxGetResource(wxT("wxWindows"), wxT("OsVersion"), &wxOsVersion
);
178 wxPendingEventsLocker
= new wxCriticalSection
;
181 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
182 wxTheColourDatabase
->Initialize();
184 wxInitializeStockLists();
185 wxInitializeStockObjects();
187 #if wxUSE_WX_RESOURCES
188 wxInitializeResourceSystem();
191 wxBitmap::InitStandardHandlers();
193 #if defined(__WIN95__)
194 InitCommonControls();
197 gs_hRichEdit
= LoadLibrary(wxT("RICHED32.DLL"));
199 if (gs_hRichEdit
== (HINSTANCE
) NULL
)
201 wxLogError(_("Could not initialise Rich Edit DLL"));
203 #endif // wxUSE_RICHEDIT
210 // for OLE, enlarge message queue to be as large as possible
212 while (!SetMessageQueue(iMsg
) && (iMsg
-= 8))
215 // we need to initialize OLE library
216 if ( FAILED(::OleInitialize(NULL
)) )
217 wxLogError(_("Cannot initialize OLE"));
221 if (!Ctl3dRegister(wxhInstance
))
222 wxLogError(wxT("Cannot register CTL3D"));
224 Ctl3dAutoSubclass(wxhInstance
);
227 g_globalCursor
= new wxCursor
;
229 wxSTD_FRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxSTD_FRAME"));
230 wxSTD_MDIPARENTFRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxSTD_MDIPARENTFRAME"));
231 wxSTD_MDICHILDFRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxSTD_MDICHILDFRAME"));
233 wxDEFAULT_FRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxDEFAULT_FRAME"));
234 wxDEFAULT_MDIPARENTFRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxDEFAULT_MDIPARENTFRAME"));
235 wxDEFAULT_MDICHILDFRAME_ICON
= LoadIcon(wxhInstance
, wxT("wxDEFAULT_MDICHILDFRAME"));
237 RegisterWindowClasses();
239 // Create the brush for disabling bitmap buttons
242 lb
.lbStyle
= BS_PATTERN
;
243 lb
.lbHatch
= (int)LoadBitmap( wxhInstance
, wxT("wxDISABLE_BUTTON_BITMAP") );
246 wxDisableButtonBrush
= ::CreateBrushIndirect( & lb
);
247 ::DeleteObject( (HGDIOBJ
)lb
.lbHatch
);
249 //else: wxWindows resources are probably not linked in
255 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
257 // This is to foil optimizations in Visual C++ that throw out dummy.obj.
258 // PLEASE DO NOT ALTER THIS.
259 #if defined(__VISUALC__) && !defined(WXMAKINGDLL)
260 extern char wxDummyChar
;
261 if (wxDummyChar
) wxDummyChar
++;
264 wxSetKeyboardHook(TRUE
);
266 wxModule::RegisterModules();
267 if (!wxModule::InitializeModules())
272 // ---------------------------------------------------------------------------
273 // RegisterWindowClasses
274 // ---------------------------------------------------------------------------
276 // TODO we should only register classes really used by the app. For this it
277 // would be enough to just delay the class registration until an attempt
278 // to create a window of this class is made.
279 bool wxApp::RegisterWindowClasses()
283 // for each class we register one with CS_(V|H)REDRAW style and one
284 // without for windows created with wxNO_FULL_REDRAW_ON_REPAINT flag
285 static const long styleNormal
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
286 static const long styleNoRedraw
= CS_DBLCLKS
;
288 // the fields which are common to all classes
289 wndclass
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
290 wndclass
.cbClsExtra
= 0;
291 wndclass
.cbWndExtra
= sizeof( DWORD
); // VZ: what is this DWORD used for?
292 wndclass
.hInstance
= wxhInstance
;
293 wndclass
.hIcon
= (HICON
) NULL
;
294 wndclass
.hCursor
= ::LoadCursor((HINSTANCE
)NULL
, IDC_ARROW
);
295 wndclass
.lpszMenuName
= NULL
;
297 // Register the frame window class.
298 wndclass
.hbrBackground
= (HBRUSH
)(COLOR_APPWORKSPACE
+ 1);
299 wndclass
.lpszClassName
= wxFrameClassName
;
300 wndclass
.style
= styleNormal
;
302 if ( !RegisterClass(&wndclass
) )
304 wxLogLastError("RegisterClass(frame)");
310 wndclass
.lpszClassName
= wxFrameClassNameNoRedraw
;
311 wndclass
.style
= styleNoRedraw
;
313 if ( !RegisterClass(&wndclass
) )
315 wxLogLastError("RegisterClass(no redraw frame)");
320 // Register the MDI frame window class.
321 wndclass
.hbrBackground
= (HBRUSH
)NULL
; // paint MDI frame ourselves
322 wndclass
.lpszClassName
= wxMDIFrameClassName
;
323 wndclass
.style
= styleNormal
;
325 if ( !RegisterClass(&wndclass
) )
327 wxLogLastError("RegisterClass(MDI parent)");
332 // "no redraw" MDI frame
333 wndclass
.lpszClassName
= wxMDIFrameClassNameNoRedraw
;
334 wndclass
.style
= styleNoRedraw
;
336 if ( !RegisterClass(&wndclass
) )
338 wxLogLastError("RegisterClass(no redraw MDI parent frame)");
343 // Register the MDI child frame window class.
344 wndclass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
345 wndclass
.lpszClassName
= wxMDIChildFrameClassName
;
346 wndclass
.style
= styleNormal
;
348 if ( !RegisterClass(&wndclass
) )
350 wxLogLastError("RegisterClass(MDI child)");
355 // "no redraw" MDI child frame
356 wndclass
.lpszClassName
= wxMDIChildFrameClassNameNoRedraw
;
357 wndclass
.style
= styleNoRedraw
;
359 if ( !RegisterClass(&wndclass
) )
361 wxLogLastError("RegisterClass(no redraw MDI child)");
366 // Register the panel window class.
367 wndclass
.hbrBackground
= (HBRUSH
) GetStockObject( LTGRAY_BRUSH
);
368 wndclass
.lpszClassName
= wxPanelClassName
;
369 wndclass
.style
= styleNormal
;
371 if ( !RegisterClass(&wndclass
) )
373 wxLogLastError("RegisterClass(panel)");
378 // Register the canvas and textsubwindow class name
379 wndclass
.hbrBackground
= (HBRUSH
)NULL
;
380 wndclass
.lpszClassName
= wxCanvasClassName
;
382 if ( !RegisterClass(&wndclass
) )
384 wxLogLastError("RegisterClass(canvas)");
392 // ---------------------------------------------------------------------------
393 // Convert Windows to argc, argv style
394 // ---------------------------------------------------------------------------
396 void wxApp::ConvertToStandardCommandArgs(char* lpCmdLine
)
400 wxString
cmdLine(lpCmdLine
);
403 // Get application name
404 wxChar name
[260]; // 260 is MAX_PATH value from windef.h
405 ::GetModuleFileName(wxhInstance
, name
, WXSIZEOF(name
));
410 wxStrcpy(name
, wxFileNameFromPath(name
));
411 wxStripExtension(name
);
412 wxTheApp
->SetAppName(name
);
415 // Treat strings enclosed in double-quotes as single arguments
417 int len
= cmdLine
.Length();
421 while ((i
< len
) && wxIsspace(cmdLine
.GetChar(i
)))
426 if (cmdLine
.GetChar(i
) == wxT('"')) // We found the start of a string
430 while ((i
< len
) && (cmdLine
.GetChar(i
) != wxT('"')))
433 wxString
arg(cmdLine
.Mid(first
, (i
- first
)));
439 i
++; // Skip past 2nd quote
441 else // Unquoted argument
444 while ((i
< len
) && !wxIsspace(cmdLine
.GetChar(i
)))
447 wxString
arg(cmdLine
.Mid(first
, (i
- first
)));
455 wxTheApp
->argv
= new wxChar
*[count
+ 1];
456 for (i
= 0; i
< count
; i
++)
458 wxString
arg(args
[i
]);
459 wxTheApp
->argv
[i
] = copystring((const wxChar
*)arg
);
461 wxTheApp
->argv
[count
] = NULL
; // argv[] is a NULL-terminated list
462 wxTheApp
->argc
= count
;
465 //// Cleans up any wxWindows internal structures left lying around
467 void wxApp::CleanUp()
472 // flush the logged messages if any and install a 'safer' log target: the
473 // default one (wxLogGui) can't be used after the resources are freed just
474 // below and the user suppliedo ne might be even more unsafe (using any
475 // wxWindows GUI function is unsafe starting from now)
476 wxLog::DontCreateOnDemand();
478 // this will flush the old messages if any
479 delete wxLog::SetActiveTarget(new wxLogStderr
);
482 // One last chance for pending objects to be cleaned up
483 wxTheApp
->DeletePendingObjects();
485 wxModule::CleanUpModules();
487 #if wxUSE_WX_RESOURCES
488 wxCleanUpResourceSystem();
490 // wxDefaultResourceTable->ClearTable();
493 // Indicate that the cursor can be freed, so that cursor won't be deleted
494 // by deleting the bitmap list before g_globalCursor goes out of scope
495 // (double deletion of the cursor).
496 wxSetCursor(wxNullCursor
);
497 delete g_globalCursor
;
498 g_globalCursor
= NULL
;
500 wxDeleteStockObjects();
502 // Destroy all GDI lists, etc.
503 wxDeleteStockLists();
505 delete wxTheColourDatabase
;
506 wxTheColourDatabase
= NULL
;
508 wxBitmap::CleanUpHandlers();
513 //// WINDOWS-SPECIFIC CLEANUP
515 wxSetKeyboardHook(FALSE
);
520 if (gs_hRichEdit
!= (HINSTANCE
) NULL
)
521 FreeLibrary(gs_hRichEdit
);
530 if (wxSTD_FRAME_ICON
)
531 DestroyIcon(wxSTD_FRAME_ICON
);
532 if (wxSTD_MDICHILDFRAME_ICON
)
533 DestroyIcon(wxSTD_MDICHILDFRAME_ICON
);
534 if (wxSTD_MDIPARENTFRAME_ICON
)
535 DestroyIcon(wxSTD_MDIPARENTFRAME_ICON
);
537 if (wxDEFAULT_FRAME_ICON
)
538 DestroyIcon(wxDEFAULT_FRAME_ICON
);
539 if (wxDEFAULT_MDICHILDFRAME_ICON
)
540 DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
541 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
542 DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
544 if ( wxDisableButtonBrush
)
545 ::DeleteObject( wxDisableButtonBrush
);
552 Ctl3dUnregister(wxhInstance
);
556 delete wxWinHandleList
;
558 // GL: I'm annoyed ... I don't know where to put this and I don't want to
559 // create a module for that as it's part of the core.
560 delete wxPendingEvents
;
562 delete wxPendingEventsLocker
;
563 // If we don't do the following, we get an apparent memory leak.
564 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
567 wxClassInfo::CleanUpClasses();
572 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
573 // At this point we want to check if there are any memory
574 // blocks that aren't part of the wxDebugContext itself,
575 // as a special case. Then when dumping we need to ignore
576 // wxDebugContext, too.
577 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
579 wxLogDebug(wxT("There were memory leaks."));
580 wxDebugContext::Dump();
581 wxDebugContext::PrintStatistics();
583 // wxDebugContext::SetStream(NULL, NULL);
587 // do it as the very last thing because everything else can log messages
588 delete wxLog::SetActiveTarget(NULL
);
592 #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL))
594 // temporarily disable this warning which would be generated in release builds
597 #pragma warning(disable: 4715) // not all control paths return a value
600 //// Main wxWindows entry point
601 int wxEntry(WXHINSTANCE hInstance
,
602 WXHINSTANCE
WXUNUSED(hPrevInstance
),
607 // do check for memory leaks on program exit
608 // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free
609 // deallocated memory which may be used to simulate low-memory condition)
610 wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF
);
612 // take everything into a try-except block in release build
613 // FIXME other compilers must support Win32 SEH (structured exception
614 // handling) too, just find the appropriate keyword in their docs!
615 // Please note that it's _not_ the same as C++ exceptions!
616 #if !defined(__WXDEBUG__) && defined(__VISUALC__)
617 #define CATCH_PROGRAM_EXCEPTIONS
621 #undef CATCH_PROGRAM_EXCEPTIONS
624 wxhInstance
= (HINSTANCE
) hInstance
;
626 if (!wxApp::Initialize())
629 // create the application object or ensure that one already exists
632 // The app may have declared a global application object, but we recommend
633 // the IMPLEMENT_APP macro is used instead, which sets an initializer
634 // function for delayed, dynamic app object construction.
635 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
636 wxT("No initializer - use IMPLEMENT_APP macro.") );
638 wxTheApp
= (*wxApp::GetInitializerFunction()) ();
641 wxCHECK_MSG( wxTheApp
, 0, wxT("You have to define an instance of wxApp!") );
643 // save the WinMain() parameters
644 wxTheApp
->ConvertToStandardCommandArgs(lpCmdLine
);
645 wxTheApp
->m_nCmdShow
= nCmdShow
;
647 // GUI-specific initialisation. In fact on Windows we don't have any,
648 // but this call is provided for compatibility across platforms.
649 wxTheApp
->OnInitGui();
653 if ( wxTheApp
->OnInit() )
657 retValue
= wxTheApp
->OnRun();
660 // We want to initialize, but not run or exit immediately.
663 //else: app initialization failed, so we skipped OnRun()
665 wxWindow
*topWindow
= wxTheApp
->GetTopWindow();
668 // Forcibly delete the window.
669 if ( topWindow
->IsKindOf(CLASSINFO(wxFrame
)) ||
670 topWindow
->IsKindOf(CLASSINFO(wxDialog
)) )
672 topWindow
->Close(TRUE
);
673 wxTheApp
->DeletePendingObjects();
678 wxTheApp
->SetTopWindow(NULL
);
688 #ifdef CATCH_PROGRAM_EXCEPTIONS
690 __except ( EXCEPTION_EXECUTE_HANDLER
) {
693 wxTheApp->OnFatalException();
696 // using wxLog would be unsafe here
698 _("Unrecoverable program error detected: "
699 " the application will terminate."),
701 MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
703 ::ExitProcess(3); // the same exit code as abort()
707 #endif // CATCH_PROGRAM_EXCEPTIONS
710 // restore warning state
712 #pragma warning(default: 4715) // not all control paths return a value
717 //// Entry point for DLLs
719 int wxEntry(WXHINSTANCE hInstance
)
721 wxhInstance
= (HINSTANCE
) hInstance
;
724 // The app may have declared a global application object, but we recommend
725 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
726 // for delayed, dynamic app object construction.
729 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
730 "No initializer - use IMPLEMENT_APP macro." );
732 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
735 wxCHECK_MSG( wxTheApp
, 0, "You have to define an instance of wxApp!" );
738 wxTheApp
->argv
= NULL
;
740 wxTheApp
->OnInitGui();
744 wxWindow
*topWindow
= wxTheApp
->GetTopWindow();
745 if ( topWindow
&& topWindow
->GetHWND())
747 topWindow
->Show(TRUE
);
754 //// Static member initialization
756 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
762 m_wantDebugOutput
= TRUE
;
766 m_printMode
= wxPRINT_WINDOWS
;
767 m_exitOnFrameDelete
= TRUE
;
773 // Delete command-line args
775 for (i
= 0; i
< argc
; i
++)
782 bool wxApp::Initialized()
790 #ifdef _WINDLL // Assume initialized if DLL (no way of telling)
796 * Get and process a message, returning FALSE if WM_QUIT
797 * received (and also set the flag telling the app to exit the main loop)
800 bool wxApp::DoMessage()
802 BOOL rc
= ::GetMessage(&s_currentMsg
, (HWND
) NULL
, 0, 0);
812 // should never happen, but let's test for it nevertheless
813 wxLogLastError("GetMessage");
818 wxASSERT_MSG( wxThread::IsMain(),
819 wxT("only the main thread can process Windows messages") );
821 static bool s_hadGuiLock
= TRUE
;
822 static wxMsgArray s_aSavedMessages
;
824 // if a secondary thread owns is doing GUI calls, save all messages for
825 // later processing - we can't process them right now because it will
826 // lead to recursive library calls (and we're not reentrant)
827 if ( !wxGuiOwnedByMainThread() )
829 s_hadGuiLock
= FALSE
;
831 // leave out WM_COMMAND messages: too dangerous, sometimes
832 // the message will be processed twice
833 if ( !wxIsWaitingForThread() ||
834 s_currentMsg
.message
!= WM_COMMAND
)
836 s_aSavedMessages
.Add(s_currentMsg
);
843 // have we just regained the GUI lock? if so, post all of the saved
846 // FIXME of course, it's not _exactly_ the same as processing the
847 // messages normally - expect some things to break...
852 size_t count
= s_aSavedMessages
.Count();
853 for ( size_t n
= 0; n
< count
; n
++ )
855 MSG
& msg
= s_aSavedMessages
[n
];
857 if ( !ProcessMessage((WXMSG
*)&msg
) )
859 ::TranslateMessage(&msg
);
860 ::DispatchMessage(&msg
);
864 s_aSavedMessages
.Empty();
867 #endif // wxUSE_THREADS
869 // Process the message
870 if ( !ProcessMessage((WXMSG
*)&s_currentMsg
) )
872 ::TranslateMessage(&s_currentMsg
);
873 ::DispatchMessage(&s_currentMsg
);
881 * Keep trying to process messages until WM_QUIT
884 * If there are messages to be processed, they will all be
885 * processed and OnIdle will not be called.
886 * When there are no more messages, OnIdle is called.
887 * If OnIdle requests more time,
888 * it will be repeatedly called so long as there are no pending messages.
889 * A 'feature' of this is that once OnIdle has decided that no more processing
890 * is required, then it won't get processing time until further messages
891 * are processed (it'll sit in DoMessage).
894 int wxApp::MainLoop()
898 while ( m_keepGoing
)
901 wxMutexGuiLeaveOrEnter();
902 #endif // wxUSE_THREADS
904 while ( !::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) &&
913 return s_currentMsg
.wParam
;
916 // Returns TRUE if more time is needed.
917 bool wxApp::ProcessIdle()
920 event
.SetEventObject(this);
923 return event
.MoreRequested();
926 void wxApp::ExitMainLoop()
931 bool wxApp::Pending()
933 return (::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) != 0);
936 void wxApp::Dispatch()
942 * Give all windows a chance to preprocess
943 * the message. Some may have accelerator tables, or have
947 bool wxApp::ProcessMessage(WXMSG
*wxmsg
)
949 MSG
*msg
= (MSG
*)wxmsg
;
950 HWND hWnd
= msg
->hwnd
;
951 wxWindow
*wndThis
= wxFindWinFromHandle((WXHWND
)hWnd
), *wnd
;
953 // for some composite controls (like a combobox), wndThis might be NULL
954 // because the subcontrol is not a wxWindow, but only the control itself
955 // is - try to catch this case
956 while ( hWnd
&& !wndThis
)
958 hWnd
= ::GetParent(hWnd
);
959 wndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
962 // Try translations first; find the youngest window with
963 // a translation table.
964 for ( wnd
= wndThis
; wnd
; wnd
= wnd
->GetParent() )
966 if ( wnd
->MSWTranslateMessage(wxmsg
) )
970 // Anyone for a non-translation message? Try youngest descendants first.
971 for ( wnd
= wndThis
; wnd
; wnd
= wnd
->GetParent() )
973 if ( wnd
->MSWProcessMessage(wxmsg
) )
980 void wxApp::OnIdle(wxIdleEvent
& event
)
982 static bool s_inOnIdle
= FALSE
;
984 // Avoid recursion (via ProcessEvent default case)
990 // 'Garbage' collection of windows deleted with Close().
991 DeletePendingObjects();
994 // flush the logged messages if any
995 wxLog
*pLog
= wxLog::GetActiveTarget();
996 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
1000 // Send OnIdle events to all windows
1001 if ( SendIdleEvents() )
1003 // SendIdleEvents() returns TRUE if at least one window requested more
1005 event
.RequestMore(TRUE
);
1008 // If they are pending events, we must process them: pending events are
1009 // either events to the threads other than main or events posted with
1010 // wxPostEvent() functions
1011 ProcessPendingEvents();
1016 // Send idle event to all top-level windows
1017 bool wxApp::SendIdleEvents()
1019 bool needMore
= FALSE
;
1021 wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
1024 wxWindow
* win
= node
->GetData();
1025 if (SendIdleEvents(win
))
1027 node
= node
->GetNext();
1033 // Send idle event to window and all subwindows
1034 bool wxApp::SendIdleEvents(wxWindow
* win
)
1036 bool needMore
= FALSE
;
1039 event
.SetEventObject(win
);
1040 win
->GetEventHandler()->ProcessEvent(event
);
1042 if (event
.MoreRequested())
1045 wxNode
* node
= win
->GetChildren().First();
1048 wxWindow
* win
= (wxWindow
*) node
->Data();
1049 if (SendIdleEvents(win
))
1052 node
= node
->Next();
1057 void wxApp::DeletePendingObjects()
1059 wxNode
*node
= wxPendingDelete
.First();
1062 wxObject
*obj
= (wxObject
*)node
->Data();
1066 if (wxPendingDelete
.Member(obj
))
1069 // Deleting one object may have deleted other pending
1070 // objects, so start from beginning of list again.
1071 node
= wxPendingDelete
.First();
1075 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1078 GetTopWindow()->Close(TRUE
);
1081 // Default behaviour: close the application with prompts. The
1082 // user can veto the close, and therefore the end session.
1083 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1087 if (!GetTopWindow()->Close(!event
.CanVeto()))
1092 int wxApp::GetComCtl32Version() const
1094 // have we loaded COMCTL32 yet?
1095 HMODULE theModule
= ::GetModuleHandle(wxT("COMCTL32"));
1098 // if so, then we can check for the version
1101 // InitCommonControlsEx is unique to 4.7 and later
1102 FARPROC theProc
= ::GetProcAddress(theModule
, "InitCommonControlsEx");
1105 { // not found, must be 4.00
1110 // The following symbol are unique to 4.71
1112 // FlatSB_EnableScrollBar FlatSB_GetScrollInfo FlatSB_GetScrollPos
1113 // FlatSB_GetScrollProp FlatSB_GetScrollRange FlatSB_SetScrollInfo
1114 // FlatSB_SetScrollPos FlatSB_SetScrollProp FlatSB_SetScrollRange
1115 // FlatSB_ShowScrollBar
1116 // _DrawIndirectImageList _DuplicateImageList
1118 // UninitializeFlatSB
1119 // we could check for any of these - I chose DllInstall
1120 FARPROC theProc
= ::GetProcAddress(theModule
, "DllInstall");
1123 // not found, must be 4.70
1127 { // found, must be 4.71
1137 wxLogError(_("Fatal error: exiting"));
1142 // Yield to incoming messages
1145 // we don't want to process WM_QUIT from here - it should be processed in
1146 // the main event loop in order to stop it
1149 while ( PeekMessage(&msg
, (HWND
)0, 0, 0, PM_NOREMOVE
) &&
1150 msg
.message
!= WM_QUIT
)
1152 if ( !wxTheApp
->DoMessage() )
1156 // If they are pending events, we must process them.
1157 wxTheApp
->ProcessPendingEvents();
1163 wxApp::GetStdIcon(int which
) const
1167 case wxICON_INFORMATION
:
1168 return wxIcon("wxICON_INFO");
1170 case wxICON_QUESTION
:
1171 return wxIcon("wxICON_QUESTION");
1173 case wxICON_EXCLAMATION
:
1174 return wxIcon("wxICON_WARNING");
1177 wxFAIL_MSG(wxT("requested non existent standard icon"));
1178 // still fall through
1181 return wxIcon("wxICON_ERROR");
1186 HINSTANCE
wxGetInstance()
1191 void wxSetInstance(HINSTANCE hInst
)
1193 wxhInstance
= hInst
;
1196 // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly
1197 // if in a separate file. So include it here to ensure it's linked.
1198 #if (defined(__VISUALC__) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(__TWIN32__))