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 #if (!(defined(__VISAGECPP__) && __IBMCPP__ < 400))
325 // another VA 3.0 memory problem here
326 delete wxLog::SetActiveTarget(new wxLogStderr
);
330 // One last chance for pending objects to be cleaned up
331 wxTheApp
->DeletePendingObjects();
333 #if (!(defined(__VISAGECPP__) && __IBMCPP__ < 400))
334 // another VA 3.0 memory problem here
335 wxModule::CleanUpModules();
338 #if wxUSE_WX_RESOURCES
339 wxCleanUpResourceSystem();
341 // wxDefaultResourceTable->ClearTable();
344 // Indicate that the cursor can be freed, so that cursor won't be deleted
345 // by deleting the bitmap list before g_globalCursor goes out of scope
346 // (double deletion of the cursor).
347 wxSetCursor(wxNullCursor
);
348 #if (!(defined(__VISAGECPP__) && __IBMCPP__ < 400))
349 // another VA 3.0 memory problem here
350 delete g_globalCursor
;
352 g_globalCursor
= NULL
;
354 wxDeleteStockObjects();
356 // Destroy all GDI lists, etc.
357 wxDeleteStockLists();
359 delete wxTheColourDatabase
;
360 wxTheColourDatabase
= NULL
;
362 wxBitmap::CleanUpHandlers();
367 //// WINDOWS-SPECIFIC CLEANUP
369 // wxSetKeyboardHook(FALSE);
371 if (wxSTD_FRAME_ICON
)
372 ::WinFreeFileIcon(wxSTD_FRAME_ICON
);
373 if (wxSTD_MDICHILDFRAME_ICON
)
374 ::WinFreeFileIcon(wxSTD_MDICHILDFRAME_ICON
);
375 if (wxSTD_MDIPARENTFRAME_ICON
)
376 ::WinFreeFileIcon(wxSTD_MDIPARENTFRAME_ICON
);
378 if (wxDEFAULT_FRAME_ICON
)
379 ::WinFreeFileIcon(wxDEFAULT_FRAME_ICON
);
380 if (wxDEFAULT_MDICHILDFRAME_ICON
)
381 ::WinFreeFileIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
382 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
383 ::WinFreeFileIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
385 if ( wxDisableButtonBrush
)
387 // TODO: ::DeleteObject( wxDisableButtonBrush );
391 delete wxWinHandleList
;
393 // GL: I'm annoyed ... I don't know where to put this and I don't want to
394 // create a module for that as it's part of the core.
396 delete wxPendingEvents
;
397 delete wxPendingEventsLocker
;
398 // If we don't do the following, we get an apparent memory leak.
399 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
402 wxClassInfo::CleanUpClasses();
407 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
408 // At this point we want to check if there are any memory
409 // blocks that aren't part of the wxDebugContext itself,
410 // as a special case. Then when dumping we need to ignore
411 // wxDebugContext, too.
412 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
414 wxLogDebug(wxT("There were memory leaks."));
415 wxDebugContext::Dump();
416 wxDebugContext::PrintStatistics();
418 // wxDebugContext::SetStream(NULL, NULL);
422 // do it as the very last thing because everything else can log messages
423 delete wxLog::SetActiveTarget(NULL
);
434 if (!wxApp::Initialize(vHab
))
438 // create the application object or ensure that one already exists
442 // The app may have declared a global application object, but we recommend
443 // the IMPLEMENT_APP macro is used instead, which sets an initializer
444 // function for delayed, dynamic app object construction.
445 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
446 wxT("No initializer - use IMPLEMENT_APP macro.") );
447 wxTheApp
= (*wxApp::GetInitializerFunction()) ();
449 wxCHECK_MSG( wxTheApp
, 0, wxT("You have to define an instance of wxApp!") );
450 wxTheApp
->argc
= argc
;
453 wxTheApp
->argv
= new wxChar
*[argc
+1];
459 wxTheApp
->argv
[nArgc
] = wxStrdup(wxConvLibc
.cMB2WX(argv
[nArgc
]));
462 wxTheApp
->argv
[nArgc
] = (wxChar
*)NULL
;
464 wxTheApp
->argv
= argv
;
467 wxString
sName(wxFileNameFromPath(argv
[0]));
469 wxStripExtension(sName
);
470 wxTheApp
->SetAppName(sName
);
474 if (!wxTheApp
->OnInitGui())
479 if (wxTheApp
->OnInit())
487 wxWindow
* pTopWindow
= wxTheApp
->GetTopWindow();
491 // Forcibly delete the window.
492 if (pTopWindow
->IsKindOf(CLASSINFO(wxFrame
)) ||
493 pTopWindow
->IsKindOf(CLASSINFO(wxDialog
)) )
495 pTopWindow
->Close(TRUE
);
496 wxTheApp
->DeletePendingObjects();
501 wxTheApp
->SetTopWindow(NULL
);
510 bool wxApp::OnInitGui()
515 m_hMq
= ::WinCreateMsgQueue(vHabmain
, 0);
518 vError
= ::WinGetLastError(vHabmain
);
519 sError
= wxPMErrorToStr(vError
);
527 // Static member initialization
529 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
535 m_wantDebugOutput
= TRUE
;
539 m_nPrintMode
= wxPRINT_WINDOWS
;
540 m_exitOnFrameDelete
= TRUE
;
547 // Delete command-line args
549 for (i
= 0; i
< argc
; i
++)
557 bool wxApp::Initialized()
566 // Get and process a message, returning FALSE if WM_QUIT
567 // received (and also set the flag telling the app to exit the main loop)
569 bool wxApp::DoMessage()
571 BOOL bRc
= ::WinGetMsg(vHabmain
, &m_vMsg
, HWND(NULL
), 0, 0);
576 m_bKeepGoing
= FALSE
;
581 // should never happen, but let's test for it nevertheless
582 wxLogLastError("GetMessage");
587 wxASSERT_MSG( wxThread::IsMain()
588 ,wxT("only the main thread can process Windows messages")
591 static bool sbHadGuiLock
= TRUE
;
592 static wxMsgArray svSavedMessages
;
595 // if a secondary thread owns is doing GUI calls, save all messages for
596 // later processing - we can't process them right now because it will
597 // lead to recursive library calls (and we're not reentrant)
599 if (!wxGuiOwnedByMainThread())
601 sbHadGuiLock
= FALSE
;
603 // leave out WM_COMMAND messages: too dangerous, sometimes
604 // the message will be processed twice
605 if ( !wxIsWaitingForThread() ||
606 svCurrentMsg
.msg
!= WM_COMMAND
)
608 svSavedMessages
.Add(svCurrentMsg
);
615 // have we just regained the GUI lock? if so, post all of the saved
618 // FIXME of course, it's not _exactly_ the same as processing the
619 // messages normally - expect some things to break...
625 size_t nCount
= svSavedMessages
.Count();
627 for (size_t n
= 0; n
< nCount
; n
++)
629 QMSG vMsg
= svSavedMessages
[n
];
631 if ( !ProcessMessage((WXMSG
*)&vMsg
) )
633 ::WinDispatchMsg(vHabmain
, &vMsg
);
636 svSavedMessages
.Empty();
639 #endif // wxUSE_THREADS
641 // Process the message
642 if (!ProcessMessage((WXMSG
*)&svCurrentMsg
) )
644 ::WinDispatchMsg(vHabmain
, (PQMSG
)&svCurrentMsg
);
650 //////////////////////////////////////////////////////////////////////////////
652 // Keep trying to process messages until WM_QUIT
655 // If there are messages to be processed, they will all be
656 // processed and OnIdle will not be called.
657 // When there are no more messages, OnIdle is called.
658 // If OnIdle requests more time,
659 // it will be repeatedly called so long as there are no pending messages.
660 // A 'feature' of this is that once OnIdle has decided that no more processing
661 // is required, then it won't get processing time until further messages
662 // are processed (it'll sit in DoMessage).
664 //////////////////////////////////////////////////////////////////////////////
665 int wxApp::MainLoop()
672 wxMutexGuiLeaveOrEnter();
673 #endif // wxUSE_THREADS
674 while (!::WinPeekMsg(vHabmain
, &svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) &&
680 return (int)svCurrentMsg
.mp1
;
684 // Returns TRUE if more time is needed.
686 bool wxApp::ProcessIdle()
690 vEvent
.SetEventObject(this);
691 ProcessEvent(vEvent
);
692 return vEvent
.MoreRequested();
696 void wxApp::ProcessPendingEvents()
698 wxNode
* pNode
= wxPendingEvents
->First();
699 wxCriticalSectionLocker
vLocker(*wxPendingEventsLocker
);
703 wxEvtHandler
* pHandler
= (wxEvtHandler
*)pNode
->Data();
704 pHandler
->ProcessPendingEvents();
707 pNode
= wxPendingEvents
->First();
712 void wxApp::ExitMainLoop()
714 m_bKeepGoing
= FALSE
;
717 bool wxApp::Pending()
719 return (::WinPeekMsg(vHabmain
, (PQMSG
)&svCurrentMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) != 0);
722 void wxApp::Dispatch()
727 //////////////////////////////////////////////////////////////////////////////
729 // Give all windows a chance to preprocess
730 // the message. Some may have accelerator tables, or have
731 // MDI complications.
733 //////////////////////////////////////////////////////////////////////////////
734 bool wxApp::ProcessMessage(
738 QMSG
* vMsg
= (PQMSG
)pWxmsg
;
739 HWND hWnd
= vMsg
->hwnd
;
740 wxWindow
* pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
744 // for some composite controls (like a combobox), wndThis might be NULL
745 // because the subcontrol is not a wxWindow, but only the control itself
746 // is - try to catch this case
748 while (hWnd
&& !pWndThis
)
750 hWnd
= ::WinQueryWindow(hWnd
, QW_PARENT
);
751 pWndThis
= wxFindWinFromHandle((WXHWND
)hWnd
);
754 // Anyone for a non-translation message? Try youngest descendants first.
755 for (pWnd
= pWndThis
; pWnd
; pWnd
= pWnd
->GetParent())
757 if (pWnd
->OS2ProcessMessage(pWxmsg
))
767 static bool sbInOnIdle
= FALSE
;
770 // Avoid recursion (via ProcessEvent default case)
778 // 'Garbage' collection of windows deleted with Close().
780 DeletePendingObjects();
783 // flush the logged messages if any
784 wxLog
* pLog
= wxLog::GetActiveTarget();
786 if (pLog
!= NULL
&& pLog
->HasPendingMessages())
790 // Send OnIdle events to all windows
791 if (SendIdleEvents())
794 // SendIdleEvents() returns TRUE if at least one window requested more
797 rEvent
.RequestMore(TRUE
);
801 // If they are pending events, we must process them.
804 ProcessPendingEvents();
811 // **** please implement me! ****
812 // Wake up the idle handler processor, even if it is in another thread...
815 // Send idle event to all top-level windows
816 bool wxApp::SendIdleEvents()
818 bool bNeedMore
= FALSE
;
819 wxWindowList::Node
* pNode
= wxTopLevelWindows
.GetFirst();
823 wxWindow
* pWin
= pNode
->GetData();
825 if (SendIdleEvents(pWin
))
827 pNode
= pNode
->GetNext();
833 // Send idle event to window and all subwindows
835 bool wxApp::SendIdleEvents(
839 bool bNeedMore
= FALSE
;
842 vEvent
.SetEventObject(pWin
);
843 pWin
->GetEventHandler()->ProcessEvent(vEvent
);
845 if (vEvent
.MoreRequested())
848 wxNode
* pNode
= pWin
->GetChildren().First();
852 wxWindow
* pWin
= (wxWindow
*) pNode
->Data();
854 if (SendIdleEvents(pWin
))
856 pNode
= pNode
->Next();
861 void wxApp::DeletePendingObjects()
863 wxNode
* pNode
= wxPendingDelete
.First();
867 wxObject
* pObj
= (wxObject
*)pNode
->Data();
871 if (wxPendingDelete
.Member(pObj
))
875 // Deleting one object may have deleted other pending
876 // objects, so start from beginning of list again.
878 pNode
= wxPendingDelete
.First();
882 void wxApp::OnEndSession(
883 wxCloseEvent
& WXUNUSED(rEvent
))
886 GetTopWindow()->Close(TRUE
);
890 // Default behaviour: close the application with prompts. The
891 // user can veto the close, and therefore the end session.
893 void wxApp::OnQueryEndSession(
899 if (!GetTopWindow()->Close(!rEvent
.CanVeto()))
906 wxLogError(_("Fatal error: exiting"));
911 // Yield to incoming messages
916 // We want to go back to the main message loop
917 // if we see a WM_QUIT. (?)
918 while (::WinPeekMsg(vHab
, &vMsg
, (HWND
)NULL
, 0, 0, PM_NOREMOVE
) && vMsg
.msg
!= WM_QUIT
)
920 if (!wxTheApp
->DoMessage())
923 // If they are pending events, we must process them.
925 wxTheApp
->ProcessPendingEvents();
930 wxIcon
wxApp::GetStdIcon(
936 case wxICON_INFORMATION
:
937 return wxIcon("wxICON_INFO");
939 case wxICON_QUESTION
:
940 return wxIcon("wxICON_QUESTION");
942 case wxICON_EXCLAMATION
:
943 return wxIcon("wxICON_WARNING");
946 wxFAIL_MSG(wxT("requested non existent standard icon"));
947 // still fall through
950 return wxIcon("wxICON_ERROR");
952 return wxIcon("wxICON_ERROR");
955 HINSTANCE
wxGetInstance()
960 void wxSetInstance(HINSTANCE hInst
)