1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "app.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #define IN_WX_MAIN_CPP
18 #include "wx/wxprec.h"
20 #if defined(__BORLANDC__)
28 #include "wx/gdicmn.h"
31 #include "wx/cursor.h"
33 #include "wx/palette.h"
35 #include "wx/dialog.h"
36 #include "wx/msgdlg.h"
39 #include "wx/msw/private.h"
40 #include "wx/postscrp.h"
42 #include "wx/module.h"
45 #include "wx/resource.h"
51 #if defined(__WIN95__) && !defined(__GNUWIN32__)
55 extern char *wxBuffer
;
56 extern char *wxOsVersion
;
57 extern wxList
*wxWinHandleList
;
58 extern wxList wxPendingDelete
;
59 extern void wxSetKeyboardHook(bool doIt
);
60 extern wxCursor
*g_globalCursor
;
62 HANDLE wxhInstance
= 0;
63 static MSG s_currentMsg
;
64 wxApp
*wxTheApp
= NULL
;
66 char wxFrameClassName
[] = "wxFrameClass";
67 char wxMDIFrameClassName
[] = "wxMDIFrameClass";
68 char wxMDIChildFrameClassName
[] = "wxMDIChildFrameClass";
69 char wxPanelClassName
[] = "wxPanelClass";
70 char wxCanvasClassName
[] = "wxCanvasClass";
72 HICON wxSTD_FRAME_ICON
= NULL
;
73 HICON wxSTD_MDICHILDFRAME_ICON
= NULL
;
74 HICON wxSTD_MDIPARENTFRAME_ICON
= NULL
;
76 HICON wxDEFAULT_FRAME_ICON
= NULL
;
77 HICON wxDEFAULT_MDICHILDFRAME_ICON
= NULL
;
78 HICON wxDEFAULT_MDIPARENTFRAME_ICON
= NULL
;
80 HBRUSH wxDisableButtonBrush
= 0;
82 LRESULT APIENTRY
wxWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
84 #if !USE_SHARED_LIBRARY
85 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
86 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
87 EVT_IDLE(wxApp::OnIdle
)
91 long wxApp::sm_lastMessageTime
= 0;
94 static HINSTANCE gs_hRichEdit
= NULL
;
97 bool wxApp::Initialize(WXHANDLE instance
)
99 HANDLE hInstance
= (HANDLE
)instance
;
103 #if defined(__WIN95__)
104 InitCommonControls();
105 gs_hRichEdit
= LoadLibrary("RICHED32.DLL");
107 if (gs_hRichEdit
== NULL
)
109 wxMessageBox("Could not initialise Rich Edit DLL");
113 #if defined(WX_DRAG_DROP)
114 // we need to initialize OLE library
115 if ( FAILED(::OleInitialize(NULL
)) )
116 wxFatalError(_("Cannot initialize OLE"));
120 if (!Ctl3dRegister(hInstance
))
121 wxFatalError("Cannot register CTL3D");
123 Ctl3dAutoSubclass(hInstance
);
126 wxSTD_FRAME_ICON
= LoadIcon(hInstance
, "wxSTD_FRAME");
127 wxSTD_MDIPARENTFRAME_ICON
= LoadIcon(hInstance
, "wxSTD_MDIPARENTFRAME");
128 wxSTD_MDICHILDFRAME_ICON
= LoadIcon(hInstance
, "wxSTD_MDICHILDFRAME");
130 wxDEFAULT_FRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_FRAME");
131 wxDEFAULT_MDIPARENTFRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_MDIPARENTFRAME");
132 wxDEFAULT_MDICHILDFRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_MDICHILDFRAME");
134 RegisterWindowClasses();
136 // Create the brush for disabling bitmap buttons
139 lb
.lbStyle
= BS_PATTERN
;
140 lb
.lbHatch
= (int)LoadBitmap( hInstance
, "wxDISABLE_BUTTON_BITMAP" ) ;
141 wxDisableButtonBrush
= ::CreateBrushIndirect( & lb
) ;
142 ::DeleteObject( (HGDIOBJ
)lb
.lbHatch
) ;
148 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
150 // This is to foil optimizations in Visual C++ that
151 // throw out dummy.obj.
152 #if (_MSC_VER >= 800) && !defined(WXMAKINGDLL)
153 extern char wxDummyChar
;
154 if (wxDummyChar
) wxDummyChar
++;
156 wxSetKeyboardHook(TRUE
);
158 wxModule::RegisterModules();
159 if (!wxModule::InitializeModules())
164 bool wxApp::RegisterWindowClasses(void)
166 ///////////////////////////////////////////////////////////////////////
167 // Register the frame window class.
168 WNDCLASS wndclass
; // Structure used to register Windows class.
170 wndclass
.style
= CS_HREDRAW
| CS_VREDRAW
;
171 wndclass
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
172 wndclass
.cbClsExtra
= 0;
173 wndclass
.cbWndExtra
= sizeof( DWORD
); // was 4
174 wndclass
.hInstance
= wxhInstance
;
175 wndclass
.hIcon
= NULL
; // wxSTD_FRAME_ICON;
176 wndclass
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
177 wndclass
.hbrBackground
= (HBRUSH
)(COLOR_APPWORKSPACE
+1) ;
178 // wndclass.hbrBackground = GetStockObject( WHITE_BRUSH );
179 wndclass
.lpszMenuName
= NULL
;
180 #ifdef _MULTIPLE_INSTANCES
181 sprintf( wxFrameClassName
,"wxFrameClass%d", hInstance
);
183 wndclass
.lpszClassName
= wxFrameClassName
;
185 if (!RegisterClass( &wndclass
))
187 // wxFatalError("Can't register Frame Window class");
190 ///////////////////////////////////////////////////////////////////////
191 // Register the MDI frame window class.
192 WNDCLASS wndclass1
; // Structure used to register Windows class.
194 wndclass1
.style
= CS_HREDRAW
| CS_VREDRAW
;
195 wndclass1
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
196 wndclass1
.cbClsExtra
= 0;
197 wndclass1
.cbWndExtra
= sizeof( DWORD
); // was 4
198 wndclass1
.hInstance
= wxhInstance
;
199 wndclass1
.hIcon
= NULL
; // wxSTD_MDIPARENTFRAME_ICON;
200 wndclass1
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
201 // wndclass1.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE+1) ;
202 wndclass1
.hbrBackground
= NULL
;
203 wndclass1
.lpszMenuName
= NULL
;
205 wndclass1
.lpszClassName
= wxMDIFrameClassName
;
206 if (!RegisterClass( &wndclass1
))
208 // wxFatalError("Can't register MDI Frame window class");
212 ///////////////////////////////////////////////////////////////////////
213 // Register the MDI child frame window class.
214 WNDCLASS wndclass4
; // Structure used to register Windows class.
216 wndclass4
.style
= CS_HREDRAW
| CS_VREDRAW
;
217 wndclass4
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
218 wndclass4
.cbClsExtra
= 0;
219 wndclass4
.cbWndExtra
= sizeof( DWORD
); // was 4
220 wndclass4
.hInstance
= wxhInstance
;
221 wndclass4
.hIcon
= NULL
; // wxSTD_MDICHILDFRAME_ICON;
222 wndclass4
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
223 // TODO: perhaps this should be NULL so that Windows doesn't
224 // paint the background itself (would OnEraseBackground duplicate
226 wndclass4
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1) ;
227 // wndclass4.hbrBackground = NULL;
228 wndclass4
.lpszMenuName
= NULL
;
229 wndclass4
.lpszClassName
= wxMDIChildFrameClassName
;
231 if (!RegisterClass( &wndclass4
))
233 // wxFatalError("Can't register MDI child frame window class");
237 ///////////////////////////////////////////////////////////////////////
238 // Register the panel window class.
239 WNDCLASS wndclass2
; // Structure used to register Windows class.
240 memset(&wndclass2
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
241 // Use CS_OWNDC to avoid messing about restoring the context
242 // for every graphic operation.
243 wndclass2
.style
= CS_HREDRAW
| CS_VREDRAW
;
244 wndclass2
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
245 wndclass2
.cbClsExtra
= 0;
246 wndclass2
.cbWndExtra
= sizeof( DWORD
); // was 4
247 wndclass2
.hInstance
= wxhInstance
;
248 wndclass2
.hIcon
= NULL
;
249 wndclass2
.hCursor
= NULL
;
250 // wndclass2.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1) ;
251 wndclass2
.hbrBackground
= GetStockObject( LTGRAY_BRUSH
);
252 wndclass2
.lpszMenuName
= NULL
;
253 wndclass2
.lpszClassName
= wxPanelClassName
;
254 if (!RegisterClass( &wndclass2
))
256 // wxFatalError("Can't register Panel Window class");
260 ///////////////////////////////////////////////////////////////////////
261 // Register the canvas and textsubwindow class name
262 WNDCLASS wndclass3
; // Structure used to register Windows class.
263 memset(&wndclass3
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
264 // Use CS_OWNDC to avoid messing about restoring the context
265 // for every graphic operation.
266 // wndclass3.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS ;
268 wndclass3
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
269 wndclass3
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
270 wndclass3
.cbClsExtra
= 0;
271 wndclass3
.cbWndExtra
= sizeof( DWORD
); // was 4
272 wndclass3
.hInstance
= wxhInstance
;
273 wndclass3
.hIcon
= NULL
;
274 wndclass3
.hCursor
= NULL
;
275 // wndclass3.hbrBackground = (HBRUSH)(COLOR_WINDOW+1) ;
276 wndclass3
.hbrBackground
= NULL
;
277 wndclass3
.lpszMenuName
= NULL
;
278 wndclass3
.lpszClassName
= wxCanvasClassName
;
279 if (!RegisterClass( &wndclass3
))
281 // wxFatalError("Can't register Canvas class");
288 // Cleans up any wxWindows internal structures left lying around
289 void wxApp::CleanUp(void)
291 wxModule::CleanUpModules();
295 wxSetKeyboardHook(FALSE
);
298 if (gs_hRichEdit
!= NULL
)
299 FreeLibrary(gs_hRichEdit
);
306 if (wxSTD_FRAME_ICON
)
307 DestroyIcon(wxSTD_FRAME_ICON
);
308 if (wxSTD_MDICHILDFRAME_ICON
)
309 DestroyIcon(wxSTD_MDICHILDFRAME_ICON
);
310 if (wxSTD_MDIPARENTFRAME_ICON
)
311 DestroyIcon(wxSTD_MDIPARENTFRAME_ICON
);
313 if (wxDEFAULT_FRAME_ICON
)
314 DestroyIcon(wxDEFAULT_FRAME_ICON
);
315 if (wxDEFAULT_MDICHILDFRAME_ICON
)
316 DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
317 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
318 DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
320 if ( wxDisableButtonBrush
)
321 ::DeleteObject( wxDisableButtonBrush
) ;
323 #if defined(WX_DRAG_DROP)
328 Ctl3dUnregister(wxhInstance
);
332 delete wxWinHandleList
;
334 // do it as the very last thing because everything else can log messages
335 delete wxLog::SetActiveTarget(NULL
);
338 void wxApp::CommonInit(void)
341 wxBuffer
= new char[1500];
343 wxBuffer
= new char[BUFSIZ
+ 512];
346 wxClassInfo::InitializeClasses();
349 wxTheFontNameDirectory
.Initialize();
352 #if defined(__X__) && USE_RESOURCES
353 // Read standard font names from .Xdefaults
355 extern char *wxDecorativeFontName
;
356 extern char *wxRomanFontName
;
357 extern char *wxModernFontName
;
358 extern char *wxSwissFontName
;
359 extern char *wxScriptFontName
;
360 extern char *wxTeletypeFontName
;
361 extern char *wxDefaultFontName
;
363 (void) wxGetResource("wxWindows", "defaultFamily", &wxDefaultFontName
);
364 (void) wxGetResource("wxWindows", "decorativeFamily", &wxDecorativeFontName
);
365 (void) wxGetResource("wxWindows", "romanFamily", &wxRomanFontName
);
366 (void) wxGetResource("wxWindows", "modernFamily", &wxModernFontName
);
367 (void) wxGetResource("wxWindows", "swissFamily", &wxSwissFontName
);
368 (void) wxGetResource("wxWindows", "scriptFamily", &wxScriptFontName
);
369 (void) wxGetResource("wxWindows", "teletypeFamily", &wxTeletypeFontName
);
373 (void) wxGetResource("wxWindows", "OsVersion", &wxOsVersion
);
376 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
377 wxTheColourDatabase
->Initialize();
378 wxInitializeStockObjects();
381 wxInitializeResourceSystem();
384 // For PostScript printing
386 wxInitializePrintSetupData();
387 wxThePrintPaperDatabase
= new wxPrintPaperDatabase
;
388 wxThePrintPaperDatabase
->CreateDatabase();
391 wxBitmap::InitStandardHandlers();
393 g_globalCursor
= new wxCursor
;
396 void wxApp::CommonCleanUp(void)
399 wxCleanUpResourceSystem();
401 // wxDefaultResourceTable->ClearTable();
403 // Indicate that the cursor can be freed,
404 // so that cursor won't be deleted by deleting
405 // the bitmap list before g_globalCursor goes out
406 // of scope (double deletion of the cursor).
407 wxSetCursor(wxNullCursor
);
408 delete g_globalCursor
;
410 wxDeleteStockObjects() ;
412 // Destroy all GDI lists, etc.
413 delete wxTheBrushList
;
414 wxTheBrushList
= NULL
;
419 delete wxTheFontList
;
420 wxTheFontList
= NULL
;
422 delete wxTheBitmapList
;
423 wxTheBitmapList
= NULL
;
425 delete wxTheColourDatabase
;
426 wxTheColourDatabase
= NULL
;
429 wxInitializePrintSetupData(FALSE
);
430 delete wxThePrintPaperDatabase
;
431 wxThePrintPaperDatabase
= NULL
;
434 wxBitmap::CleanUpHandlers();
440 #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL))
442 // Main wxWindows entry point
444 int wxEntry(WXHINSTANCE hInstance
, WXHINSTANCE
WXUNUSED(hPrevInstance
), char *m_lpCmdLine
,
445 int nCmdShow
, bool enterLoop
)
447 wxhInstance
= (HINSTANCE
) hInstance
;
449 #if (DEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
451 #if !defined(_WINDLL)
452 streambuf
* sBuf
= new wxDebugStreamBuf
;
454 streambuf
* sBuf
= NULL
;
456 ostream
* oStr
= new ostream(sBuf
) ;
457 wxDebugContext::SetStream(oStr
, sBuf
);
461 if (!wxApp::Initialize((WXHINSTANCE
) wxhInstance
))
464 // The app may have declared a global application object, but we recommend
465 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
466 // for delayed, dynamic app object construction.
469 if (!wxApp::GetInitializerFunction())
471 MessageBox(NULL
, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
475 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
479 MessageBox(NULL
, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
483 // Split command line into tokens, as in usual main(argc, argv)
484 char **command
= new char*[50];
487 char *buf
= new char[strlen(m_lpCmdLine
) + 1];
489 // Hangs around until end of app. in case
490 // user carries pointers to the tokens
492 /* Model independent strcpy */
494 for (i
= 0; (buf
[i
] = m_lpCmdLine
[i
]) != 0; i
++)
499 // Get application name
501 ::GetModuleFileName(wxhInstance
, name
, 199);
503 // Is it only 16-bit Borland that already copies the program name
504 // to the first argv index?
505 #if !defined(__GNUWIN32__)
506 // #if ! (defined(__BORLANDC__) && !defined(__WIN32__))
507 command
[count
++] = copystring(name
);
511 strcpy(name
, wxFileNameFromPath(name
));
512 wxStripExtension(name
);
513 wxTheApp
->SetAppName(name
);
515 /* Break up string */
516 // Treat strings enclosed in double-quotes as single arguments
520 while (*str
&& *str
<= ' ') str
++; // skip whitespace
524 command
[count
++] = str
;
525 while (*str
&& *str
!= '"') str
++;
529 command
[count
++] = str
;
530 while (*str
&& *str
> ' ') str
++;
532 if (*str
) *str
++ = '\0';
534 command
[count
] = NULL
; /* argv[] is NULL terminated list! */
536 wxTheApp
->argc
= count
;
537 wxTheApp
->argv
= command
;
538 wxTheApp
->m_nCmdShow
= nCmdShow
;
540 // GUI-specific initialisation. In fact on Windows we don't have any,
541 // but this call is provided for compatibility across platforms.
542 wxTheApp
->OnInitGui() ;
544 if (!wxTheApp
->OnInit())
546 wxTheApp
->DeletePendingObjects();
555 // TODO: This should really be cleaned up in ~wxApp
556 delete [] command
[0] ;
566 /* New behaviour - leave it to the app to show the top window
567 if (wxTheApp->GetTopWindow()) {
568 // show the toplevel frame, only if we are not iconized (from MS-Windows)
569 if(wxTheApp->GetShowFrameOnInit() && (nCmdShow!=SW_HIDE)) wxTheApp->GetTopWindow()->Show(TRUE);
573 retValue
= wxTheApp
->OnRun();
575 if (wxTheApp
->GetTopWindow())
577 // Forcibly delete the window.
578 if (wxTheApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame
)) ||
579 wxTheApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxDialog
)))
581 wxTheApp
->GetTopWindow()->Close(TRUE
);
582 wxTheApp
->DeletePendingObjects();
586 delete wxTheApp
->GetTopWindow();
587 wxTheApp
->SetTopWindow(NULL
);
598 delete [] command
[0] ;
601 #if (DEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
602 // At this point we want to check if there are any memory
603 // blocks that aren't part of the wxDebugContext itself,
604 // as a special case. Then when dumping we need to ignore
605 // wxDebugContext, too.
606 if (wxDebugContext::CountObjectsLeft() > 0)
608 wxTrace("There were memory leaks.\n");
609 wxDebugContext::Dump();
610 wxDebugContext::PrintStatistics();
612 wxDebugContext::SetStream(NULL
, NULL
);
620 int wxEntry(WXHINSTANCE hInstance
)
622 wxhInstance
= (HINSTANCE
) hInstance
;
623 wxApp::Initialize((WXHINSTANCE
) wxhInstance
);
625 // The app may have declared a global application object, but we recommend
626 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
627 // for delayed, dynamic app object construction.
631 if (!wxApp::GetInitializerFunction())
633 MessageBox(NULL
, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
637 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
641 MessageBox(NULL
, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
646 wxTheApp
->argv
= NULL
;
648 wxTheApp
->OnInitGui();
652 if (wxTheApp
->GetTopWindow() && wxTheApp
->GetTopWindow()->GetHWND()) {
653 wxTheApp
->GetTopWindow()->Show(TRUE
);
660 // Static member initialization
661 wxAppInitializerFunction
wxApp::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
667 // work_proc = NULL ;
669 // m_resourceCollection = TRUE;
670 // m_pendingCleanup = FALSE;
671 m_wantDebugOutput
= TRUE
;
676 m_printMode
= wxPRINT_WINDOWS
;
678 m_printMode
= wxPRINT_POSTSCRIPT
;
681 m_exitOnFrameDelete
= TRUE
;
682 // m_showOnInit = TRUE;
686 bool wxApp::Initialized(void)
694 #ifdef _WINDLL // Assume initialized if DLL (no way of telling)
700 * Get and process a message, returning FALSE if WM_QUIT
704 bool wxApp::DoMessage(void)
706 if (!::GetMessage(&s_currentMsg
, (HWND
) NULL
, 0, 0))
711 // Process the message
712 if (!ProcessMessage((WXMSG
*)&s_currentMsg
))
714 ::TranslateMessage(&s_currentMsg
);
715 wxApp::sm_lastMessageTime
= s_currentMsg
.time
; /* MATTHEW: timeStamp impl. */
716 ::DispatchMessage(&s_currentMsg
);
722 * Keep trying to process messages until WM_QUIT
725 * If there are messages to be processed, they will all be
726 * processed and OnIdle will not be called.
727 * When there are no more messages, OnIdle is called.
728 * If OnIdle requests more time,
729 * it will be repeatedly called so long as there are no pending messages.
730 * A 'feature' of this is that once OnIdle has decided that no more processing
731 * is required, then it won't get processing time until further messages
732 * are processed (it'll sit in DoMessage).
735 int wxApp::MainLoop(void)
740 while (!::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) &&
746 return s_currentMsg
.wParam
;
749 // Returns TRUE if more time is needed.
750 bool wxApp::ProcessIdle(void)
753 event
.SetEventObject(this);
756 return event
.MoreRequested();
759 void wxApp::ExitMainLoop(void)
764 bool wxApp::Pending(void)
766 return (::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) != 0) ;
769 void wxApp::Dispatch(void)
776 * Give all windows a chance to preprocess
777 * the message. Some may have accelerator tables, or have
780 bool wxApp::ProcessMessage(WXMSG
*Msg
)
782 MSG
*msg
= (MSG
*)Msg
;
786 // Anyone for a message? Try youngest descendants first.
787 for (hWnd
= msg
->hwnd
; hWnd
!= NULL
; hWnd
= ::GetParent(hWnd
))
789 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
792 if (wnd
->MSWProcessMessage(Msg
))
795 // STOP if we've reached the top of the hierarchy!
796 // if (m_topWindow && (wnd == m_topWindow))
801 // TODO: Is this now obsolete, given that m_topWindow may not be defined?
802 // Does it do anything useful anyway?
803 // if (m_topWindow && m_topWindow->MSWProcessMessage(Msg))
808 void wxApp::OnIdle(wxIdleEvent
& event
)
810 static bool inOnIdle
= FALSE
;
812 // Avoid recursion (via ProcessEvent default case)
818 // 'Garbage' collection of windows deleted with Close().
819 DeletePendingObjects();
821 // flush the logged messages if any
822 wxLog
*pLog
= wxLog::GetActiveTarget();
823 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
826 // Send OnIdle events to all windows
827 bool needMore
= SendIdleEvents();
830 event
.RequestMore(TRUE
);
835 // Send idle event to all top-level windows
836 bool wxApp::SendIdleEvents(void)
838 bool needMore
= FALSE
;
839 wxNode
* node
= wxTopLevelWindows
.First();
842 wxWindow
* win
= (wxWindow
*) node
->Data();
843 if (SendIdleEvents(win
))
851 // Send idle event to window and all subwindows
852 bool wxApp::SendIdleEvents(wxWindow
* win
)
854 bool needMore
= FALSE
;
857 event
.SetEventObject(win
);
858 win
->ProcessEvent(event
);
860 if (event
.MoreRequested())
863 wxNode
* node
= win
->GetChildren()->First();
866 wxWindow
* win
= (wxWindow
*) node
->Data();
867 if (SendIdleEvents(win
))
875 // Windows specific. Intercept keyboard input: by default,
876 // route it to the active frame or dialog box.
877 #if WXWIN_COMPATIBILITY == 2
878 bool wxApp::OldOnCharHook(wxKeyEvent
& event
)
880 wxWindow
*win
= wxGetActiveWindow();
882 return win
->GetEventHandler()->OldOnCharHook(event
);
888 void wxApp::DeletePendingObjects(void)
890 wxNode
*node
= wxPendingDelete
.First();
893 wxObject
*obj
= (wxObject
*)node
->Data();
897 if (wxPendingDelete
.Member(obj
))
900 // Deleting one object may have deleted other pending
901 // objects, so start from beginning of list again.
902 node
= wxPendingDelete
.First();
907 // Free up font objects that are not being used at present.
908 bool wxApp::DoResourceCleanup(void)
910 // wxDebugMsg("ResourceCleanup\n");
914 wxNode *node = wxTheFontList->First();
917 wxGDIObject *obj = (wxGDIObject *)node->Data();
918 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
920 // wxDebugMsg("Freeing font %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
928 wxNode *node = wxThePenList->First();
931 wxGDIObject *obj = (wxGDIObject *)node->Data();
932 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
934 // wxDebugMsg("Freeing pen %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
942 wxNode *node = wxTheBrushList->First();
945 wxGDIObject *obj = (wxGDIObject *)node->Data();
946 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
948 // wxDebugMsg("Freeing brush %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
955 SetPendingCleanup(FALSE);
960 wxLog
* wxApp::CreateLogTarget(void)
965 wxWindow
* wxApp::GetTopWindow(void) const
969 else if (wxTopLevelWindows
.Number() > 0)
970 return (wxWindow
*) wxTopLevelWindows
.First()->Data();
978 FatalAppExit(0, "Fatal error: exiting");
981 // Yield to incoming messages
985 // We want to go back to the main message loop
986 // if we see a WM_QUIT. (?)
987 while (PeekMessage(&msg
, NULL
, 0, 0, PM_NOREMOVE
) && msg
.message
!= WM_QUIT
)
989 if (!wxTheApp
->DoMessage())
996 HINSTANCE
wxGetInstance()
1001 // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly
1002 // if in a separate file. So include it here to ensure it's linked.
1003 #if (defined(_MSC_VER) && !defined(__WIN32__)) || defined(__GNUWIN32__)
1007 #undef IN_WX_MAIN_CPP