1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #include "wx/gdicmn.h"
22 #include "wx/cursor.h"
24 #include "wx/palette.h"
26 #include "wx/dialog.h"
27 #include "wx/msgdlg.h"
29 #include "wx/dynarray.h"
30 # include "wx/wxchar.h"
35 #include "wx/module.h"
37 #include "wx/os2/private.h"
40 #include "wx/thread.h"
42 // define the array of QMSG strutures
43 WX_DECLARE_OBJARRAY(QMSG
, wxMsgArray
);
45 #include "wx/arrimpl.cpp"
47 WX_DEFINE_OBJARRAY(wxMsgArray
);
48 #endif // wxUSE_THREADS
50 #if wxUSE_WX_RESOURCES
51 #include "wx/resource.h"
57 // ---------------------------------------------------------------------------
59 // ---------------------------------------------------------------------------
61 extern wxChar
* wxBuffer
;
62 extern wxChar
* wxOsVersion
;
63 extern wxList
* wxWinHandleList
;
64 extern wxList WXDLLEXPORT wxPendingDelete
;
65 extern void wxSetKeyboardHook(bool doIt
);
66 extern wxCursor
* g_globalCursor
;
68 HINSTANCE wxhInstance
= 0;
70 wxApp
* wxTheApp
= NULL
;
72 // FIXME why not const? and not static?
74 // NB: all "NoRedraw" classes must have the same names as the "normal" classes
75 // with NR suffix - wxWindow::OS2Create() supposes this
76 wxChar wxFrameClassName
[] = wxT("wxFrameClass");
77 wxChar wxFrameClassNameNoRedraw
[] = wxT("wxFrameClassNR");
78 wxChar wxMDIFrameClassName
[] = wxT("wxMDIFrameClass");
79 wxChar wxMDIFrameClassNameNoRedraw
[] = wxT("wxMDIFrameClassNR");
80 wxChar wxMDIChildFrameClassName
[] = wxT("wxMDIChildFrameClass");
81 wxChar wxMDIChildFrameClassNameNoRedraw
[] = wxT("wxMDIChildFrameClassNR");
82 wxChar wxPanelClassName
[] = wxT("wxPanelClass");
83 wxChar wxCanvasClassName
[] = wxT("wxCanvasClass");
85 HICON wxSTD_FRAME_ICON
= (HICON
) NULL
;
86 HICON wxSTD_MDICHILDFRAME_ICON
= (HICON
) NULL
;
87 HICON wxSTD_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
89 HICON wxDEFAULT_FRAME_ICON
= (HICON
) NULL
;
90 HICON wxDEFAULT_MDICHILDFRAME_ICON
= (HICON
) NULL
;
91 HICON wxDEFAULT_MDIPARENTFRAME_ICON
= (HICON
) NULL
;
93 HBRUSH wxDisableButtonBrush
= (HBRUSH
) 0;
95 MRESULT
wxWndProc(HWND
, UINT
, MPARAM
, MPARAM
);
97 // ===========================================================================
99 // ===========================================================================
101 // ---------------------------------------------------------------------------
103 // ---------------------------------------------------------------------------
105 #if !USE_SHARED_LIBRARY
106 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
108 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
109 EVT_IDLE(wxApp::OnIdle
)
110 EVT_END_SESSION(wxApp::OnEndSession
)
111 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
116 bool wxApp::Initialize(
120 // Some people may wish to use this, but
121 // probably it shouldn't be here by default.
123 // wxRedirectIOToConsole();
126 wxBuffer
= new wxChar
[1500]; // FIXME; why?
128 wxClassInfo::InitializeClasses();
131 wxGetResource(wxT("wxWindows"), wxT("OsVersion"), &wxOsVersion
);
134 // I'm annoyed ... I don't know where to put this and I don't want to
135 // create a module for that as it's part of the core.
136 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
137 wxTheColourDatabase
->Initialize();
139 wxInitializeStockLists();
140 wxInitializeStockObjects();
142 #if wxUSE_WX_RESOURCES
143 wxInitializeResourceSystem();
146 wxBitmap::InitStandardHandlers();
148 g_globalCursor
= new wxCursor
;
151 wxSTD_FRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_FRAME"), TRUE
);
152 wxSTD_MDIPARENTFRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_MDIPARENTFRAME"), TRUE
);
153 wxSTD_MDICHILDFRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_MDICHILDFRAME"), TRUE
);
155 wxDEFAULT_FRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_FRAME"), TRUE
);
156 wxDEFAULT_MDIPARENTFRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_MDIPARENTFRAME"), TRUE
);
157 wxDEFAULT_MDICHILDFRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_MDICHILDFRAME"), TRUE
);
159 RegisterWindowClasses(vHab
);
160 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
162 // This is to foil optimizations in Visual C++ that throw out dummy.obj.
163 // PLEASE DO NOT ALTER THIS.
164 #if !defined(WXMAKINGDLL)
165 extern char wxDummyChar
;
166 if (wxDummyChar
) wxDummyChar
++;
169 wxSetKeyboardHook(TRUE
);
171 wxModule::RegisterModules();
172 if (!wxModule::InitializeModules())
177 // ---------------------------------------------------------------------------
178 // RegisterWindowClasses
179 // ---------------------------------------------------------------------------
181 // TODO we should only register classes really used by the app. For this it
182 // would be enough to just delay the class registration until an attempt
183 // to create a window of this class is made.
184 bool wxApp::RegisterWindowClasses(
190 if ((rc
= ::WinRegisterClass( vHab
193 ,CS_SIZEREDRAW
| CS_SYNCPAINT
| CS_HITTEST
| CS_CLIPCHILDREN
| CS_FRAME
197 wxLogLastError("RegisterClass(frame)");
202 if (!::WinRegisterClass( vHab
203 ,wxFrameClassNameNoRedraw
205 ,CS_HITTEST
| CS_CLIPCHILDREN
| CS_FRAME
209 wxLogLastError("RegisterClass(no redraw frame)");
214 if (!::WinRegisterClass( vHab
217 ,CS_SIZEREDRAW
| CS_SYNCPAINT
| CS_HITTEST
| CS_CLIPCHILDREN
| CS_FRAME
221 wxLogLastError("RegisterClass(MDI parent)");
226 if (!::WinRegisterClass( vHab
227 ,wxMDIFrameClassNameNoRedraw
229 ,CS_HITTEST
| CS_CLIPCHILDREN
| CS_FRAME
233 wxLogLastError("RegisterClass(no redraw MDI parent)");
238 if (!::WinRegisterClass( vHab
239 ,wxMDIChildFrameClassName
241 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_SYNCPAINT
| CS_HITTEST
| CS_CLIPSIBLINGS
| CS_FRAME
245 wxLogLastError("RegisterClass(MDI child)");
250 if (!::WinRegisterClass( vHab
251 ,wxMDIChildFrameClassNameNoRedraw
253 ,CS_HITTEST
| CS_CLIPSIBLINGS
| CS_FRAME
257 wxLogLastError("RegisterClass(no redraw MDI child)");
262 if (!::WinRegisterClass( vHab
265 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_HITTEST
| CS_CLIPSIBLINGS
| CS_SAVEBITS
| CS_SYNCPAINT
269 wxLogLastError("RegisterClass(Panel)");
274 if (!::WinRegisterClass( vHab
277 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_HITTEST
| CS_CLIPSIBLINGS
| CS_SAVEBITS
| CS_SYNCPAINT
281 wxLogLastError("RegisterClass(Canvas)");
288 //// Cleans up any wxWindows internal structures left lying around
290 void wxApp::CleanUp()
295 // flush the logged messages if any and install a 'safer' log target: the
296 // default one (wxLogGui) can't be used after the resources are freed just
297 // below and the user suppliedo ne might be even more unsafe (using any
298 // wxWindows GUI function is unsafe starting from now)
299 wxLog::DontCreateOnDemand();
301 // this will flush the old messages if any
302 delete wxLog::SetActiveTarget(new wxLogStderr
);
305 // One last chance for pending objects to be cleaned up
306 wxTheApp
->DeletePendingObjects();
308 wxModule::CleanUpModules();
310 #if wxUSE_WX_RESOURCES
311 wxCleanUpResourceSystem();
313 // wxDefaultResourceTable->ClearTable();
316 // Indicate that the cursor can be freed, so that cursor won't be deleted
317 // by deleting the bitmap list before g_globalCursor goes out of scope
318 // (double deletion of the cursor).
319 wxSetCursor(wxNullCursor
);
320 delete g_globalCursor
;
321 g_globalCursor
= NULL
;
323 wxDeleteStockObjects();
325 // Destroy all GDI lists, etc.
326 wxDeleteStockLists();
328 delete wxTheColourDatabase
;
329 wxTheColourDatabase
= NULL
;
331 wxBitmap::CleanUpHandlers();
336 //// WINDOWS-SPECIFIC CLEANUP
338 wxSetKeyboardHook(FALSE
);
340 if (wxSTD_FRAME_ICON
)
341 ::WinFreeFileIcon(wxSTD_FRAME_ICON
);
342 if (wxSTD_MDICHILDFRAME_ICON
)
343 ::WinFreeFileIcon(wxSTD_MDICHILDFRAME_ICON
);
344 if (wxSTD_MDIPARENTFRAME_ICON
)
345 ::WinFreeFileIcon(wxSTD_MDIPARENTFRAME_ICON
);
347 if (wxDEFAULT_FRAME_ICON
)
348 ::WinFreeFileIcon(wxDEFAULT_FRAME_ICON
);
349 if (wxDEFAULT_MDICHILDFRAME_ICON
)
350 ::WinFreeFileIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
351 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
352 ::WinFreeFileIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
354 if ( wxDisableButtonBrush
)
356 // TODO: ::DeleteObject( wxDisableButtonBrush );
360 delete wxWinHandleList
;
362 // GL: I'm annoyed ... I don't know where to put this and I don't want to
363 // create a module for that as it's part of the core.
365 delete wxPendingEvents
;
366 delete wxPendingEventsLocker
;
367 // If we don't do the following, we get an apparent memory leak.
368 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
371 wxClassInfo::CleanUpClasses();
376 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
377 // At this point we want to check if there are any memory
378 // blocks that aren't part of the wxDebugContext itself,
379 // as a special case. Then when dumping we need to ignore
380 // wxDebugContext, too.
381 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
383 wxLogDebug(wxT("There were memory leaks."));
384 wxDebugContext::Dump();
385 wxDebugContext::PrintStatistics();
387 // wxDebugContext::SetStream(NULL, NULL);
391 // do it as the very last thing because everything else can log messages
392 delete wxLog::SetActiveTarget(NULL
);
403 if (!wxApp::Initialize(vHab
))
407 // create the application object or ensure that one already exists
411 wxCHECK_MSG( wxApp::GetInitializerFunction()
413 ,wxT("wxWindows error: No initializer - use IMPLEMENT_APP macro.\n")
416 wxAppInitializerFunction fnAppIni
= wxApp::GetInitializerFunction();
417 wxObject
* pTest_app
= fnAppIni();
419 wxTheApp
= (wxApp
*)pTest_app
;
421 wxCHECK_MSG( wxTheApp
, -1, wxT("wxWindows error: no application object") );
422 wxTheApp
->argc
= argc
;
425 wxTheApp
->argv
= new wxChar
*[argc
+1];
431 wxTheApp
->argv
[nArgc
] = wxStrdup(wxConvLibc
.cMB2WX(argv
[nArgc
]));
434 wxTheApp
->argv
[nArgc
] = (wxChar
*)NULL
;
436 wxTheApp
->argv
= argv
;
439 wxString
sName(wxFileNameFromPath(argv
[0]));
441 wxStripExtension(sName
);
442 wxTheApp
->SetAppName(sName
);
446 if (!wxTheApp
->OnInitGui())
451 if (wxTheApp
->OnInit())
459 wxWindow
* pTopWindow
= wxTheApp
->GetTopWindow();
463 // Forcibly delete the window.
464 if (pTopWindow
->IsKindOf(CLASSINFO(wxFrame
)) ||
465 pTopWindow
->IsKindOf(CLASSINFO(wxDialog
)) )
467 pTopWindow
->Close(TRUE
);
468 wxTheApp
->DeletePendingObjects();
473 wxTheApp
->SetTopWindow(NULL
);
482 bool wxApp::OnInitGui()
484 m_vHab
= WinInitialize(0);
485 m_hMq
= WinCreateMsgQueue(m_vHab
, 0);
491 // Static member initialization
493 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
499 m_wantDebugOutput
= TRUE
;
503 m_nPrintMode
= wxPRINT_WINDOWS
;
504 m_exitOnFrameDelete
= TRUE
;
510 // Delete command-line args
512 for (i
= 0; i
< argc
; i
++)
519 bool wxApp::Initialized()
528 // Get and process a message, returning FALSE if WM_QUIT
529 // received (and also set the flag telling the app to exit the main loop)
531 bool wxApp::DoMessage()
533 BOOL bRc
= ::WinGetMsg(m_vHab
, &m_vMsg
, HWND(NULL
), 0, 0);
538 m_bKeepGoing
= FALSE
;
543 // should never happen, but let's test for it nevertheless
544 wxLogLastError("GetMessage");
549 wxASSERT_MSG( wxThread::IsMain()
550 ,wxT("only the main thread can process Windows messages")
553 static bool sbHadGuiLock
= TRUE
;
554 static wxMsgArray svSavedMessages
;
557 // if a secondary thread owns is doing GUI calls, save all messages for
558 // later processing - we can't process them right now because it will
559 // lead to recursive library calls (and we're not reentrant)
561 if (!wxGuiOwnedByMainThread())
563 sbHadGuiLock
= FALSE
;
565 // leave out WM_COMMAND messages: too dangerous, sometimes
566 // the message will be processed twice
567 if ( !wxIsWaitingForThread() ||
568 svCurrentMsg
.msg
!= WM_COMMAND
)
570 svSavedMessages
.Add(svCurrentMsg
);
577 // have we just regained the GUI lock? if so, post all of the saved
580 // FIXME of course, it's not _exactly_ the same as processing the
581 // messages normally - expect some things to break...
587 size_t nCount
= svSavedMessages
.Count();
589 for (size_t n
= 0; n
< nCount
; n
++)
591 QMSG vMsg
= svSavedMessages
[n
];
593 if ( !ProcessMessage((WXMSG
*)&vMsg
) )
595 ::WinDispatchMsg(m_vHab
, &vMsg
);
598 svSavedMessages
.Empty();
601 #endif // wxUSE_THREADS
603 // Process the message
604 if (!ProcessMessage((WXMSG
*)&svCurrentMsg
) )
606 ::WinDispatchMsg(m_vHab
, (PQMSG
)&svCurrentMsg
);
612 //////////////////////////////////////////////////////////////////////////////
614 // Keep trying to process messages until WM_QUIT
617 // If there are messages to be processed, they will all be
618 // processed and OnIdle will not be called.
619 // When there are no more messages, OnIdle is called.
620 // If OnIdle requests more time,
621 // it will be repeatedly called so long as there are no pending messages.
622 // A 'feature' of this is that once OnIdle has decided that no more processing
623 // is required, then it won't get processing time until further messages
624 // are processed (it'll sit in DoMessage).
626 //////////////////////////////////////////////////////////////////////////////
627 int wxApp::MainLoop()
634 wxMutexGuiLeaveOrEnter();
635 #endif // wxUSE_THREADS
636 while (!::WinPeekMsg(m_vHab
, &svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) &&
642 return (int)svCurrentMsg
.mp1
;
646 // Returns TRUE if more time is needed.
648 bool wxApp::ProcessIdle()
652 vEvent
.SetEventObject(this);
653 ProcessEvent(vEvent
);
654 return vEvent
.MoreRequested();
658 void wxApp::ProcessPendingEvents()
660 wxNode
* pNode
= wxPendingEvents
->First();
661 wxCriticalSectionLocker
vLocker(*wxPendingEventsLocker
);
665 wxEvtHandler
* pHandler
= (wxEvtHandler
*)pNode
->Data();
666 pHandler
->ProcessPendingEvents();
669 pNode
= wxPendingEvents
->First();
674 void wxApp::ExitMainLoop()
676 m_bKeepGoing
= FALSE
;
679 bool wxApp::Pending()
681 return (::WinPeekMsg(m_vHab
, (PQMSG
)&svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) != 0);
684 void wxApp::Dispatch()
689 //////////////////////////////////////////////////////////////////////////////
691 // Give all windows a chance to preprocess
692 // the message. Some may have accelerator tables, or have
693 // MDI complications.
695 //////////////////////////////////////////////////////////////////////////////
696 bool wxApp::ProcessMessage(
700 QMSG
* vMsg
= (PQMSG
)pWxmsg
;
701 HWND hWnd
= vMsg
->hwnd
;
702 wxWindow
* pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
706 // for some composite controls (like a combobox), wndThis might be NULL
707 // because the subcontrol is not a wxWindow, but only the control itself
708 // is - try to catch this case
710 while (hWnd
&& !pWndThis
)
712 hWnd
= ::WinQueryWindow(hWnd
, QW_PARENT
);
713 pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
716 // Anyone for a non-translation message? Try youngest descendants first.
717 for (pWnd
= pWndThis
; pWnd
; pWnd
= pWnd
->GetParent())
719 if (pWnd
->OS2ProcessMessage(pWxmsg
))
729 static bool sbInOnIdle
= FALSE
;
732 // Avoid recursion (via ProcessEvent default case)
740 // 'Garbage' collection of windows deleted with Close().
742 DeletePendingObjects();
745 // flush the logged messages if any
746 wxLog
* pLog
= wxLog::GetActiveTarget();
748 if (pLog
!= NULL
&& pLog
->HasPendingMessages())
752 // Send OnIdle events to all windows
753 if (SendIdleEvents())
756 // SendIdleEvents() returns TRUE if at least one window requested more
759 rEvent
.RequestMore(TRUE
);
763 // If they are pending events, we must process them.
766 ProcessPendingEvents();
773 // **** please implement me! ****
774 // Wake up the idle handler processor, even if it is in another thread...
777 // Send idle event to all top-level windows
778 bool wxApp::SendIdleEvents()
780 bool bNeedMore
= FALSE
;
781 wxWindowList::Node
* pNode
= wxTopLevelWindows
.GetFirst();
785 wxWindow
* pWin
= pNode
->GetData();
787 if (SendIdleEvents(pWin
))
789 pNode
= pNode
->GetNext();
795 // Send idle event to window and all subwindows
797 bool wxApp::SendIdleEvents(
801 bool bNeedMore
= FALSE
;
804 vEvent
.SetEventObject(pWin
);
805 pWin
->GetEventHandler()->ProcessEvent(vEvent
);
807 if (vEvent
.MoreRequested())
810 wxNode
* pNode
= pWin
->GetChildren().First();
814 wxWindow
* pWin
= (wxWindow
*) pNode
->Data();
816 if (SendIdleEvents(pWin
))
818 pNode
= pNode
->Next();
823 void wxApp::DeletePendingObjects()
825 wxNode
* pNode
= wxPendingDelete
.First();
829 wxObject
* pObj
= (wxObject
*)pNode
->Data();
833 if (wxPendingDelete
.Member(pObj
))
837 // Deleting one object may have deleted other pending
838 // objects, so start from beginning of list again.
840 pNode
= wxPendingDelete
.First();
844 void wxApp::OnEndSession(
845 wxCloseEvent
& WXUNUSED(rEvent
))
848 GetTopWindow()->Close(TRUE
);
852 // Default behaviour: close the application with prompts. The
853 // user can veto the close, and therefore the end session.
855 void wxApp::OnQueryEndSession(
861 if (!GetTopWindow()->Close(!rEvent
.CanVeto()))
868 wxLogError(_("Fatal error: exiting"));
873 // Yield to incoming messages
878 // We want to go back to the main message loop
879 // if we see a WM_QUIT. (?)
880 while (::WinPeekMsg(vHab
, &vMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) && vMsg
.msg
!= WM_QUIT
)
882 if (!wxTheApp
->DoMessage())
885 // If they are pending events, we must process them.
887 wxTheApp
->ProcessPendingEvents();
892 wxIcon
wxApp::GetStdIcon(
898 case wxICON_INFORMATION
:
899 return wxIcon("wxICON_INFO");
901 case wxICON_QUESTION
:
902 return wxIcon("wxICON_QUESTION");
904 case wxICON_EXCLAMATION
:
905 return wxIcon("wxICON_WARNING");
908 wxFAIL_MSG(wxT("requested non existent standard icon"));
909 // still fall through
912 return wxIcon("wxICON_ERROR");
914 return wxIcon("wxICON_ERROR");
917 HINSTANCE
wxGetInstance()
922 void wxSetInstance(HINSTANCE hInst
)