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 wxCursor
* g_globalCursor
;
67 HINSTANCE wxhInstance
= 0;
69 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 EXPENTRY
wxWndProc( HWND
101 // ===========================================================================
103 // ===========================================================================
105 // ---------------------------------------------------------------------------
107 // ---------------------------------------------------------------------------
109 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
111 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
112 EVT_IDLE(wxApp::OnIdle
)
113 EVT_END_SESSION(wxApp::OnEndSession
)
114 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
118 bool wxApp::Initialize(
123 // OS2 has to have an anchorblock
125 vHab
= WinInitialize(0);
132 // Some people may wish to use this, but
133 // probably it shouldn't be here by default.
135 // wxRedirectIOToConsole();
138 wxBuffer
= new wxChar
[1500]; // FIXME; why?
140 wxClassInfo::InitializeClasses();
143 wxGetResource(wxT("wxWindows"), wxT("OsVersion"), &wxOsVersion
);
146 // I'm annoyed ... I don't know where to put this and I don't want to
147 // create a module for that as it's part of the core.
148 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
149 wxTheColourDatabase
->Initialize();
151 wxInitializeStockLists();
152 wxInitializeStockObjects();
154 #if wxUSE_WX_RESOURCES
155 wxInitializeResourceSystem();
158 wxBitmap::InitStandardHandlers();
160 g_globalCursor
= new wxCursor
;
163 wxSTD_FRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_FRAME"), TRUE
);
164 wxSTD_MDIPARENTFRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_MDIPARENTFRAME"), TRUE
);
165 wxSTD_MDICHILDFRAME_ICON
= ::WinLoadFileIcon(wxT("wxSTD_MDICHILDFRAME"), TRUE
);
167 wxDEFAULT_FRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_FRAME"), TRUE
);
168 wxDEFAULT_MDIPARENTFRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_MDIPARENTFRAME"), TRUE
);
169 wxDEFAULT_MDICHILDFRAME_ICON
= ::WinLoadFileIcon(wxT("wxDEFAULT_MDICHILDFRAME"), TRUE
);
171 RegisterWindowClasses(vHab
);
172 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
174 // This is to foil optimizations in Visual C++ that throw out dummy.obj.
175 // PLEASE DO NOT ALTER THIS.
176 #if !defined(WXMAKINGDLL) && defined(__VISAGECPP__)
177 extern char wxDummyChar
;
178 if (wxDummyChar
) wxDummyChar
++;
181 // wxSetKeyboardHook(TRUE);
183 wxModule::RegisterModules();
184 if (!wxModule::InitializeModules())
189 // ---------------------------------------------------------------------------
190 // RegisterWindowClasses
191 // ---------------------------------------------------------------------------
193 // TODO we should only register classes really used by the app. For this it
194 // would be enough to just delay the class registration until an attempt
195 // to create a window of this class is made.
196 bool wxApp::RegisterWindowClasses(
204 if (!::WinRegisterClass( vHab
207 ,CS_SIZEREDRAW
| CS_SYNCPAINT
211 vError
= ::WinGetLastError(vHab
);
212 sError
= wxPMErrorToStr(vError
);
213 wxLogLastError(sError
);
217 if (!::WinRegisterClass( vHab
218 ,wxFrameClassNameNoRedraw
224 vError
= ::WinGetLastError(vHab
);
225 sError
= wxPMErrorToStr(vError
);
226 wxLogLastError(sError
);
230 if (!::WinRegisterClass( vHab
233 ,CS_SIZEREDRAW
| CS_SYNCPAINT
237 vError
= ::WinGetLastError(vHab
);
238 sError
= wxPMErrorToStr(vError
);
239 wxLogLastError(sError
);
243 if (!::WinRegisterClass( vHab
244 ,wxMDIFrameClassNameNoRedraw
250 vError
= ::WinGetLastError(vHab
);
251 sError
= wxPMErrorToStr(vError
);
252 wxLogLastError(sError
);
256 if (!::WinRegisterClass( vHab
257 ,wxMDIChildFrameClassName
259 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_SYNCPAINT
| CS_HITTEST
263 vError
= ::WinGetLastError(vHab
);
264 sError
= wxPMErrorToStr(vError
);
265 wxLogLastError(sError
);
269 if (!::WinRegisterClass( vHab
270 ,wxMDIChildFrameClassNameNoRedraw
276 vError
= ::WinGetLastError(vHab
);
277 sError
= wxPMErrorToStr(vError
);
278 wxLogLastError(sError
);
282 if (!::WinRegisterClass( vHab
285 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_HITTEST
| CS_SAVEBITS
| CS_SYNCPAINT
289 vError
= ::WinGetLastError(vHab
);
290 sError
= wxPMErrorToStr(vError
);
291 wxLogLastError(sError
);
295 if (!::WinRegisterClass( vHab
298 ,CS_MOVENOTIFY
| CS_SIZEREDRAW
| CS_HITTEST
| CS_SAVEBITS
| CS_SYNCPAINT
302 vError
= ::WinGetLastError(vHab
);
303 sError
= wxPMErrorToStr(vError
);
304 wxLogLastError(sError
);
310 //// Cleans up any wxWindows internal structures left lying around
312 void wxApp::CleanUp()
317 // flush the logged messages if any and install a 'safer' log target: the
318 // default one (wxLogGui) can't be used after the resources are freed just
319 // below and the user suppliedo ne might be even more unsafe (using any
320 // wxWindows GUI function is unsafe starting from now)
321 wxLog::DontCreateOnDemand();
323 // this will flush the old messages if any
324 delete wxLog::SetActiveTarget(new wxLogStderr
);
327 // One last chance for pending objects to be cleaned up
328 wxTheApp
->DeletePendingObjects();
330 wxModule::CleanUpModules();
332 #if wxUSE_WX_RESOURCES
333 wxCleanUpResourceSystem();
335 // wxDefaultResourceTable->ClearTable();
338 // Indicate that the cursor can be freed, so that cursor won't be deleted
339 // by deleting the bitmap list before g_globalCursor goes out of scope
340 // (double deletion of the cursor).
341 wxSetCursor(wxNullCursor
);
342 delete g_globalCursor
;
343 g_globalCursor
= NULL
;
345 wxDeleteStockObjects();
347 // Destroy all GDI lists, etc.
348 wxDeleteStockLists();
350 delete wxTheColourDatabase
;
351 wxTheColourDatabase
= NULL
;
353 wxBitmap::CleanUpHandlers();
358 //// WINDOWS-SPECIFIC CLEANUP
360 // wxSetKeyboardHook(FALSE);
362 if (wxSTD_FRAME_ICON
)
363 ::WinFreeFileIcon(wxSTD_FRAME_ICON
);
364 if (wxSTD_MDICHILDFRAME_ICON
)
365 ::WinFreeFileIcon(wxSTD_MDICHILDFRAME_ICON
);
366 if (wxSTD_MDIPARENTFRAME_ICON
)
367 ::WinFreeFileIcon(wxSTD_MDIPARENTFRAME_ICON
);
369 if (wxDEFAULT_FRAME_ICON
)
370 ::WinFreeFileIcon(wxDEFAULT_FRAME_ICON
);
371 if (wxDEFAULT_MDICHILDFRAME_ICON
)
372 ::WinFreeFileIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
373 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
374 ::WinFreeFileIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
376 if ( wxDisableButtonBrush
)
378 // TODO: ::DeleteObject( wxDisableButtonBrush );
382 delete wxWinHandleList
;
384 // GL: I'm annoyed ... I don't know where to put this and I don't want to
385 // create a module for that as it's part of the core.
387 delete wxPendingEvents
;
388 delete wxPendingEventsLocker
;
389 // If we don't do the following, we get an apparent memory leak.
390 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
393 wxClassInfo::CleanUpClasses();
398 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
399 // At this point we want to check if there are any memory
400 // blocks that aren't part of the wxDebugContext itself,
401 // as a special case. Then when dumping we need to ignore
402 // wxDebugContext, too.
403 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
405 wxLogDebug(wxT("There were memory leaks."));
406 wxDebugContext::Dump();
407 wxDebugContext::PrintStatistics();
409 // wxDebugContext::SetStream(NULL, NULL);
413 // do it as the very last thing because everything else can log messages
414 delete wxLog::SetActiveTarget(NULL
);
425 if (!wxApp::Initialize(vHab
))
429 // create the application object or ensure that one already exists
433 wxCHECK_MSG( wxApp::GetInitializerFunction()
435 ,wxT("wxWindows error: No initializer - use IMPLEMENT_APP macro.\n")
438 wxAppInitializerFunction fnAppIni
= wxApp::GetInitializerFunction();
439 wxObject
* pTest_app
= fnAppIni();
441 wxTheApp
= (wxApp
*)pTest_app
;
443 wxCHECK_MSG( wxTheApp
, -1, wxT("wxWindows error: no application object") );
444 wxTheApp
->argc
= argc
;
447 wxTheApp
->argv
= new wxChar
*[argc
+1];
453 wxTheApp
->argv
[nArgc
] = wxStrdup(wxConvLibc
.cMB2WX(argv
[nArgc
]));
456 wxTheApp
->argv
[nArgc
] = (wxChar
*)NULL
;
458 wxTheApp
->argv
= argv
;
461 wxString
sName(wxFileNameFromPath(argv
[0]));
463 wxStripExtension(sName
);
464 wxTheApp
->SetAppName(sName
);
468 if (!wxTheApp
->OnInitGui())
473 if (wxTheApp
->OnInit())
481 wxWindow
* pTopWindow
= wxTheApp
->GetTopWindow();
485 // Forcibly delete the window.
486 if (pTopWindow
->IsKindOf(CLASSINFO(wxFrame
)) ||
487 pTopWindow
->IsKindOf(CLASSINFO(wxDialog
)) )
489 pTopWindow
->Close(TRUE
);
490 wxTheApp
->DeletePendingObjects();
495 wxTheApp
->SetTopWindow(NULL
);
504 bool wxApp::OnInitGui()
509 m_hMq
= ::WinCreateMsgQueue(vHabmain
, 0);
512 vError
= ::WinGetLastError(vHabmain
);
513 sError
= wxPMErrorToStr(vError
);
521 // Static member initialization
523 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
529 m_wantDebugOutput
= TRUE
;
533 m_nPrintMode
= wxPRINT_WINDOWS
;
534 m_exitOnFrameDelete
= TRUE
;
541 // Delete command-line args
543 for (i
= 0; i
< argc
; i
++)
551 bool wxApp::Initialized()
560 // Get and process a message, returning FALSE if WM_QUIT
561 // received (and also set the flag telling the app to exit the main loop)
563 bool wxApp::DoMessage()
565 BOOL bRc
= ::WinGetMsg(vHabmain
, &m_vMsg
, HWND(NULL
), 0, 0);
570 m_bKeepGoing
= FALSE
;
575 // should never happen, but let's test for it nevertheless
576 wxLogLastError("GetMessage");
581 wxASSERT_MSG( wxThread::IsMain()
582 ,wxT("only the main thread can process Windows messages")
585 static bool sbHadGuiLock
= TRUE
;
586 static wxMsgArray svSavedMessages
;
589 // if a secondary thread owns is doing GUI calls, save all messages for
590 // later processing - we can't process them right now because it will
591 // lead to recursive library calls (and we're not reentrant)
593 if (!wxGuiOwnedByMainThread())
595 sbHadGuiLock
= FALSE
;
597 // leave out WM_COMMAND messages: too dangerous, sometimes
598 // the message will be processed twice
599 if ( !wxIsWaitingForThread() ||
600 svCurrentMsg
.msg
!= WM_COMMAND
)
602 svSavedMessages
.Add(svCurrentMsg
);
609 // have we just regained the GUI lock? if so, post all of the saved
612 // FIXME of course, it's not _exactly_ the same as processing the
613 // messages normally - expect some things to break...
619 size_t nCount
= svSavedMessages
.Count();
621 for (size_t n
= 0; n
< nCount
; n
++)
623 QMSG vMsg
= svSavedMessages
[n
];
625 if ( !ProcessMessage((WXMSG
*)&vMsg
) )
627 ::WinDispatchMsg(vHabmain
, &vMsg
);
630 svSavedMessages
.Empty();
633 #endif // wxUSE_THREADS
635 // Process the message
636 if (!ProcessMessage((WXMSG
*)&svCurrentMsg
) )
638 ::WinDispatchMsg(vHabmain
, (PQMSG
)&svCurrentMsg
);
644 //////////////////////////////////////////////////////////////////////////////
646 // Keep trying to process messages until WM_QUIT
649 // If there are messages to be processed, they will all be
650 // processed and OnIdle will not be called.
651 // When there are no more messages, OnIdle is called.
652 // If OnIdle requests more time,
653 // it will be repeatedly called so long as there are no pending messages.
654 // A 'feature' of this is that once OnIdle has decided that no more processing
655 // is required, then it won't get processing time until further messages
656 // are processed (it'll sit in DoMessage).
658 //////////////////////////////////////////////////////////////////////////////
659 int wxApp::MainLoop()
666 wxMutexGuiLeaveOrEnter();
667 #endif // wxUSE_THREADS
668 while (!::WinPeekMsg(vHabmain
, &svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) &&
674 return (int)svCurrentMsg
.mp1
;
678 // Returns TRUE if more time is needed.
680 bool wxApp::ProcessIdle()
684 vEvent
.SetEventObject(this);
685 ProcessEvent(vEvent
);
686 return vEvent
.MoreRequested();
690 void wxApp::ProcessPendingEvents()
692 wxNode
* pNode
= wxPendingEvents
->First();
693 wxCriticalSectionLocker
vLocker(*wxPendingEventsLocker
);
697 wxEvtHandler
* pHandler
= (wxEvtHandler
*)pNode
->Data();
698 pHandler
->ProcessPendingEvents();
701 pNode
= wxPendingEvents
->First();
706 void wxApp::ExitMainLoop()
708 m_bKeepGoing
= FALSE
;
711 bool wxApp::Pending()
713 return (::WinPeekMsg(vHabmain
, (PQMSG
)&svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) != 0);
716 void wxApp::Dispatch()
721 //////////////////////////////////////////////////////////////////////////////
723 // Give all windows a chance to preprocess
724 // the message. Some may have accelerator tables, or have
725 // MDI complications.
727 //////////////////////////////////////////////////////////////////////////////
728 bool wxApp::ProcessMessage(
732 QMSG
* vMsg
= (PQMSG
)pWxmsg
;
733 HWND hWnd
= vMsg
->hwnd
;
734 wxWindow
* pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
738 // for some composite controls (like a combobox), wndThis might be NULL
739 // because the subcontrol is not a wxWindow, but only the control itself
740 // is - try to catch this case
742 while (hWnd
&& !pWndThis
)
744 hWnd
= ::WinQueryWindow(hWnd
, QW_PARENT
);
745 pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
748 // Anyone for a non-translation message? Try youngest descendants first.
749 for (pWnd
= pWndThis
; pWnd
; pWnd
= pWnd
->GetParent())
751 if (pWnd
->OS2ProcessMessage(pWxmsg
))
761 static bool sbInOnIdle
= FALSE
;
764 // Avoid recursion (via ProcessEvent default case)
772 // 'Garbage' collection of windows deleted with Close().
774 DeletePendingObjects();
777 // flush the logged messages if any
778 wxLog
* pLog
= wxLog::GetActiveTarget();
780 if (pLog
!= NULL
&& pLog
->HasPendingMessages())
784 // Send OnIdle events to all windows
785 if (SendIdleEvents())
788 // SendIdleEvents() returns TRUE if at least one window requested more
791 rEvent
.RequestMore(TRUE
);
795 // If they are pending events, we must process them.
798 ProcessPendingEvents();
805 // **** please implement me! ****
806 // Wake up the idle handler processor, even if it is in another thread...
809 // Send idle event to all top-level windows
810 bool wxApp::SendIdleEvents()
812 bool bNeedMore
= FALSE
;
813 wxWindowList::Node
* pNode
= wxTopLevelWindows
.GetFirst();
817 wxWindow
* pWin
= pNode
->GetData();
819 if (SendIdleEvents(pWin
))
821 pNode
= pNode
->GetNext();
827 // Send idle event to window and all subwindows
829 bool wxApp::SendIdleEvents(
833 bool bNeedMore
= FALSE
;
836 vEvent
.SetEventObject(pWin
);
837 pWin
->GetEventHandler()->ProcessEvent(vEvent
);
839 if (vEvent
.MoreRequested())
842 wxNode
* pNode
= pWin
->GetChildren().First();
846 wxWindow
* pWin
= (wxWindow
*) pNode
->Data();
848 if (SendIdleEvents(pWin
))
850 pNode
= pNode
->Next();
855 void wxApp::DeletePendingObjects()
857 wxNode
* pNode
= wxPendingDelete
.First();
861 wxObject
* pObj
= (wxObject
*)pNode
->Data();
865 if (wxPendingDelete
.Member(pObj
))
869 // Deleting one object may have deleted other pending
870 // objects, so start from beginning of list again.
872 pNode
= wxPendingDelete
.First();
876 void wxApp::OnEndSession(
877 wxCloseEvent
& WXUNUSED(rEvent
))
880 GetTopWindow()->Close(TRUE
);
884 // Default behaviour: close the application with prompts. The
885 // user can veto the close, and therefore the end session.
887 void wxApp::OnQueryEndSession(
893 if (!GetTopWindow()->Close(!rEvent
.CanVeto()))
900 wxLogError(_("Fatal error: exiting"));
905 // Yield to incoming messages
910 // We want to go back to the main message loop
911 // if we see a WM_QUIT. (?)
912 while (::WinPeekMsg(vHab
, &vMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) && vMsg
.msg
!= WM_QUIT
)
914 if (!wxTheApp
->DoMessage())
917 // If they are pending events, we must process them.
919 wxTheApp
->ProcessPendingEvents();
924 wxIcon
wxApp::GetStdIcon(
930 case wxICON_INFORMATION
:
931 return wxIcon("wxICON_INFO");
933 case wxICON_QUESTION
:
934 return wxIcon("wxICON_QUESTION");
936 case wxICON_EXCLAMATION
:
937 return wxIcon("wxICON_WARNING");
940 wxFAIL_MSG(wxT("requested non existent standard icon"));
941 // still fall through
944 return wxIcon("wxICON_ERROR");
946 return wxIcon("wxICON_ERROR");
949 HINSTANCE
wxGetInstance()
954 void wxSetInstance(HINSTANCE hInst
)