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 // use debug CRT functions for memory leak detections in VC++
56 /* THIS CRAPS OUT in VC++ 5.
57 #if defined(__WXDEBUG__) && defined(_MSC_VER)
62 extern char *wxBuffer
;
63 extern char *wxOsVersion
;
64 extern wxList
*wxWinHandleList
;
65 extern wxList wxPendingDelete
;
66 extern void wxSetKeyboardHook(bool doIt
);
67 extern wxCursor
*g_globalCursor
;
69 HINSTANCE wxhInstance
= 0;
70 static MSG s_currentMsg
;
71 wxApp
*wxTheApp
= NULL
;
73 char wxFrameClassName
[] = "wxFrameClass";
74 char wxMDIFrameClassName
[] = "wxMDIFrameClass";
75 char wxMDIChildFrameClassName
[] = "wxMDIChildFrameClass";
76 char wxPanelClassName
[] = "wxPanelClass";
77 char wxCanvasClassName
[] = "wxCanvasClass";
79 HICON wxSTD_FRAME_ICON
= NULL
;
80 HICON wxSTD_MDICHILDFRAME_ICON
= NULL
;
81 HICON wxSTD_MDIPARENTFRAME_ICON
= NULL
;
83 HICON wxDEFAULT_FRAME_ICON
= NULL
;
84 HICON wxDEFAULT_MDICHILDFRAME_ICON
= NULL
;
85 HICON wxDEFAULT_MDIPARENTFRAME_ICON
= NULL
;
87 HBRUSH wxDisableButtonBrush
= 0;
89 LRESULT APIENTRY
wxWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
91 #if !USE_SHARED_LIBRARY
92 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
93 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
94 EVT_IDLE(wxApp::OnIdle
)
98 long wxApp::sm_lastMessageTime
= 0;
101 static HINSTANCE gs_hRichEdit
= NULL
;
104 bool wxApp::Initialize(WXHINSTANCE instance
)
106 HINSTANCE hInstance
= (HINSTANCE
) instance
;
110 #if defined(__WIN95__)
111 InitCommonControls();
112 gs_hRichEdit
= LoadLibrary("RICHED32.DLL");
114 if (gs_hRichEdit
== NULL
)
116 wxMessageBox("Could not initialise Rich Edit DLL");
120 #if defined(WX_DRAG_DROP)
121 // we need to initialize OLE library
122 if ( FAILED(::OleInitialize(NULL
)) )
123 wxFatalError(_("Cannot initialize OLE"));
127 if (!Ctl3dRegister(hInstance
))
128 wxFatalError("Cannot register CTL3D");
130 Ctl3dAutoSubclass(hInstance
);
133 wxSTD_FRAME_ICON
= LoadIcon(hInstance
, "wxSTD_FRAME");
134 wxSTD_MDIPARENTFRAME_ICON
= LoadIcon(hInstance
, "wxSTD_MDIPARENTFRAME");
135 wxSTD_MDICHILDFRAME_ICON
= LoadIcon(hInstance
, "wxSTD_MDICHILDFRAME");
137 wxDEFAULT_FRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_FRAME");
138 wxDEFAULT_MDIPARENTFRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_MDIPARENTFRAME");
139 wxDEFAULT_MDICHILDFRAME_ICON
= LoadIcon(hInstance
, "wxDEFAULT_MDICHILDFRAME");
141 RegisterWindowClasses();
143 // Create the brush for disabling bitmap buttons
146 lb
.lbStyle
= BS_PATTERN
;
147 lb
.lbHatch
= (int)LoadBitmap( hInstance
, "wxDISABLE_BUTTON_BITMAP" ) ;
148 wxDisableButtonBrush
= ::CreateBrushIndirect( & lb
) ;
149 ::DeleteObject( (HGDIOBJ
)lb
.lbHatch
) ;
155 wxWinHandleList
= new wxList(wxKEY_INTEGER
);
157 // This is to foil optimizations in Visual C++ that
158 // throw out dummy.obj.
159 #if (_MSC_VER >= 800) && !defined(WXMAKINGDLL)
160 extern char wxDummyChar
;
161 if (wxDummyChar
) wxDummyChar
++;
163 wxSetKeyboardHook(TRUE
);
165 wxModule::RegisterModules();
166 if (!wxModule::InitializeModules())
171 bool wxApp::RegisterWindowClasses()
173 ///////////////////////////////////////////////////////////////////////
174 // Register the frame window class.
175 WNDCLASS wndclass
; // Structure used to register Windows class.
177 wndclass
.style
= CS_HREDRAW
| CS_VREDRAW
;
178 wndclass
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
179 wndclass
.cbClsExtra
= 0;
180 wndclass
.cbWndExtra
= sizeof( DWORD
); // was 4
181 wndclass
.hInstance
= wxhInstance
;
182 wndclass
.hIcon
= NULL
; // wxSTD_FRAME_ICON;
183 wndclass
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
184 wndclass
.hbrBackground
= (HBRUSH
)(COLOR_APPWORKSPACE
+1) ;
185 // wndclass.hbrBackground = GetStockObject( WHITE_BRUSH );
186 wndclass
.lpszMenuName
= NULL
;
187 #ifdef _MULTIPLE_INSTANCES
188 sprintf( wxFrameClassName
,"wxFrameClass%d", hInstance
);
190 wndclass
.lpszClassName
= wxFrameClassName
;
192 if (!RegisterClass( &wndclass
))
194 // wxFatalError("Can't register Frame Window class");
197 ///////////////////////////////////////////////////////////////////////
198 // Register the MDI frame window class.
199 WNDCLASS wndclass1
; // Structure used to register Windows class.
201 wndclass1
.style
= CS_HREDRAW
| CS_VREDRAW
;
202 wndclass1
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
203 wndclass1
.cbClsExtra
= 0;
204 wndclass1
.cbWndExtra
= sizeof( DWORD
); // was 4
205 wndclass1
.hInstance
= wxhInstance
;
206 wndclass1
.hIcon
= NULL
; // wxSTD_MDIPARENTFRAME_ICON;
207 wndclass1
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
208 // wndclass1.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE+1) ;
209 wndclass1
.hbrBackground
= NULL
;
210 wndclass1
.lpszMenuName
= NULL
;
212 wndclass1
.lpszClassName
= wxMDIFrameClassName
;
213 if (!RegisterClass( &wndclass1
))
215 // wxFatalError("Can't register MDI Frame window class");
219 ///////////////////////////////////////////////////////////////////////
220 // Register the MDI child frame window class.
221 WNDCLASS wndclass4
; // Structure used to register Windows class.
223 wndclass4
.style
= CS_HREDRAW
| CS_VREDRAW
;
224 wndclass4
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
225 wndclass4
.cbClsExtra
= 0;
226 wndclass4
.cbWndExtra
= sizeof( DWORD
); // was 4
227 wndclass4
.hInstance
= wxhInstance
;
228 wndclass4
.hIcon
= NULL
; // wxSTD_MDICHILDFRAME_ICON;
229 wndclass4
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
230 // TODO: perhaps this should be NULL so that Windows doesn't
231 // paint the background itself (would OnEraseBackground duplicate
233 wndclass4
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1) ;
234 // wndclass4.hbrBackground = NULL;
235 wndclass4
.lpszMenuName
= NULL
;
236 wndclass4
.lpszClassName
= wxMDIChildFrameClassName
;
238 if (!RegisterClass( &wndclass4
))
240 // wxFatalError("Can't register MDI child frame window class");
244 ///////////////////////////////////////////////////////////////////////
245 // Register the panel window class.
246 WNDCLASS wndclass2
; // Structure used to register Windows class.
247 memset(&wndclass2
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
248 // Use CS_OWNDC to avoid messing about restoring the context
249 // for every graphic operation.
250 wndclass2
.style
= CS_HREDRAW
| CS_VREDRAW
;
251 wndclass2
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
252 wndclass2
.cbClsExtra
= 0;
253 wndclass2
.cbWndExtra
= sizeof( DWORD
); // was 4
254 wndclass2
.hInstance
= wxhInstance
;
255 wndclass2
.hIcon
= NULL
;
256 wndclass2
.hCursor
= NULL
;
257 // wndclass2.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1) ;
258 wndclass2
.hbrBackground
= (HBRUSH
) GetStockObject( LTGRAY_BRUSH
);
259 wndclass2
.lpszMenuName
= NULL
;
260 wndclass2
.lpszClassName
= wxPanelClassName
;
261 if (!RegisterClass( &wndclass2
))
263 // wxFatalError("Can't register Panel Window class");
267 ///////////////////////////////////////////////////////////////////////
268 // Register the canvas and textsubwindow class name
269 WNDCLASS wndclass3
; // Structure used to register Windows class.
270 memset(&wndclass3
, 0, sizeof(WNDCLASS
)); // start with NULL defaults
271 // Use CS_OWNDC to avoid messing about restoring the context
272 // for every graphic operation.
273 // wndclass3.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS ;
275 wndclass3
.style
= CS_HREDRAW
| CS_VREDRAW
| CS_DBLCLKS
;
276 wndclass3
.lpfnWndProc
= (WNDPROC
)wxWndProc
;
277 wndclass3
.cbClsExtra
= 0;
278 wndclass3
.cbWndExtra
= sizeof( DWORD
); // was 4
279 wndclass3
.hInstance
= wxhInstance
;
280 wndclass3
.hIcon
= NULL
;
281 wndclass3
.hCursor
= NULL
;
282 // wndclass3.hbrBackground = (HBRUSH)(COLOR_WINDOW+1) ;
283 wndclass3
.hbrBackground
= NULL
;
284 wndclass3
.lpszMenuName
= NULL
;
285 wndclass3
.lpszClassName
= wxCanvasClassName
;
286 if (!RegisterClass( &wndclass3
))
288 // wxFatalError("Can't register Canvas class");
295 // Cleans up any wxWindows internal structures left lying around
296 void wxApp::CleanUp()
298 wxModule::CleanUpModules();
302 wxSetKeyboardHook(FALSE
);
305 if (gs_hRichEdit
!= NULL
)
306 FreeLibrary(gs_hRichEdit
);
313 if (wxSTD_FRAME_ICON
)
314 DestroyIcon(wxSTD_FRAME_ICON
);
315 if (wxSTD_MDICHILDFRAME_ICON
)
316 DestroyIcon(wxSTD_MDICHILDFRAME_ICON
);
317 if (wxSTD_MDIPARENTFRAME_ICON
)
318 DestroyIcon(wxSTD_MDIPARENTFRAME_ICON
);
320 if (wxDEFAULT_FRAME_ICON
)
321 DestroyIcon(wxDEFAULT_FRAME_ICON
);
322 if (wxDEFAULT_MDICHILDFRAME_ICON
)
323 DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON
);
324 if (wxDEFAULT_MDIPARENTFRAME_ICON
)
325 DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON
);
327 if ( wxDisableButtonBrush
)
328 ::DeleteObject( wxDisableButtonBrush
) ;
330 #if defined(WX_DRAG_DROP)
335 Ctl3dUnregister(wxhInstance
);
339 delete wxWinHandleList
;
341 // do it as the very last thing because everything else can log messages
342 wxLog::DontCreateOnDemand();
343 delete wxLog::SetActiveTarget(NULL
);
346 void wxApp::CommonInit()
349 wxBuffer
= new char[1500];
351 wxBuffer
= new char[BUFSIZ
+ 512];
354 wxClassInfo::InitializeClasses();
357 wxGetResource("wxWindows", "OsVersion", &wxOsVersion
);
360 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
361 wxTheColourDatabase
->Initialize();
363 wxInitializeStockLists();
364 wxInitializeStockObjects();
367 wxInitializeResourceSystem();
370 // For PostScript printing
372 wxInitializePrintSetupData();
373 wxThePrintPaperDatabase
= new wxPrintPaperDatabase
;
374 wxThePrintPaperDatabase
->CreateDatabase();
377 wxBitmap::InitStandardHandlers();
379 g_globalCursor
= new wxCursor
;
382 void wxApp::CommonCleanUp()
385 wxCleanUpResourceSystem();
387 // wxDefaultResourceTable->ClearTable();
389 // Indicate that the cursor can be freed,
390 // so that cursor won't be deleted by deleting
391 // the bitmap list before g_globalCursor goes out
392 // of scope (double deletion of the cursor).
393 wxSetCursor(wxNullCursor
);
394 delete g_globalCursor
;
396 wxDeleteStockObjects() ;
398 // Destroy all GDI lists, etc.
399 delete wxTheBrushList
;
400 wxTheBrushList
= NULL
;
405 delete wxTheFontList
;
406 wxTheFontList
= NULL
;
408 delete wxTheBitmapList
;
409 wxTheBitmapList
= NULL
;
411 delete wxTheColourDatabase
;
412 wxTheColourDatabase
= NULL
;
415 wxInitializePrintSetupData(FALSE
);
416 delete wxThePrintPaperDatabase
;
417 wxThePrintPaperDatabase
= NULL
;
420 wxBitmap::CleanUpHandlers();
426 #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL))
428 // Main wxWindows entry point
430 int wxEntry(WXHINSTANCE hInstance
, WXHINSTANCE
WXUNUSED(hPrevInstance
), char *m_lpCmdLine
,
431 int nCmdShow
, bool enterLoop
)
433 wxhInstance
= (HINSTANCE
) hInstance
;
435 /* No, sorry, whatever this is, forget it. Doesn't work with VC++ 5.
437 #if defined(__WXDEBUG__) && defined(_MSC_VER)
438 // do check for memory leaks on program exit
439 // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free
440 // deallocated memory which may be used to simulate low-memory condition)
441 _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
442 #endif // debug build under MS VC++
445 #if (WXDEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
447 #if !defined(_WINDLL)
448 streambuf
* sBuf
= new wxDebugStreamBuf
;
450 streambuf
* sBuf
= NULL
;
452 ostream
* oStr
= new ostream(sBuf
) ;
453 wxDebugContext::SetStream(oStr
, sBuf
);
455 #endif // USE_MEMORY_TRACING
457 if (!wxApp::Initialize((WXHINSTANCE
) wxhInstance
))
460 // The app may have declared a global application object, but we recommend
461 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
462 // for delayed, dynamic app object construction.
465 if (!wxApp::GetInitializerFunction())
467 MessageBox(NULL
, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
471 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
475 MessageBox(NULL
, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
479 // Split command line into tokens, as in usual main(argc, argv)
480 char **command
= new char*[50];
483 char *buf
= new char[strlen(m_lpCmdLine
) + 1];
485 // Hangs around until end of app. in case
486 // user carries pointers to the tokens
488 /* Model independent strcpy */
490 for (i
= 0; (buf
[i
] = m_lpCmdLine
[i
]) != 0; i
++)
495 // Get application name
497 ::GetModuleFileName(wxhInstance
, name
, 199);
499 // Is it only 16-bit Borland that already copies the program name
500 // to the first argv index?
501 #if !defined(__GNUWIN32__)
502 // #if ! (defined(__BORLANDC__) && !defined(__WIN32__))
503 command
[count
++] = copystring(name
);
507 strcpy(name
, wxFileNameFromPath(name
));
508 wxStripExtension(name
);
509 wxTheApp
->SetAppName(name
);
511 /* Break up string */
512 // Treat strings enclosed in double-quotes as single arguments
516 while (*str
&& *str
<= ' ') str
++; // skip whitespace
520 command
[count
++] = str
;
521 while (*str
&& *str
!= '"') str
++;
525 command
[count
++] = str
;
526 while (*str
&& *str
> ' ') str
++;
528 if (*str
) *str
++ = '\0';
530 command
[count
] = NULL
; /* argv[] is NULL terminated list! */
532 wxTheApp
->argc
= count
;
533 wxTheApp
->argv
= command
;
534 wxTheApp
->m_nCmdShow
= nCmdShow
;
536 // GUI-specific initialisation. In fact on Windows we don't have any,
537 // but this call is provided for compatibility across platforms.
538 wxTheApp
->OnInitGui() ;
540 if (!wxTheApp
->OnInit())
542 wxTheApp
->DeletePendingObjects();
551 // TODO: This should really be cleaned up in ~wxApp
552 delete [] command
[0] ;
562 /* New behaviour - leave it to the app to show the top window
563 if (wxTheApp->GetTopWindow()) {
564 // show the toplevel frame, only if we are not iconized (from MS-Windows)
565 if(wxTheApp->GetShowFrameOnInit() && (nCmdShow!=SW_HIDE)) wxTheApp->GetTopWindow()->Show(TRUE);
569 retValue
= wxTheApp
->OnRun();
571 if (wxTheApp
->GetTopWindow())
573 // Forcibly delete the window.
574 if (wxTheApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame
)) ||
575 wxTheApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxDialog
)))
577 wxTheApp
->GetTopWindow()->Close(TRUE
);
578 wxTheApp
->DeletePendingObjects();
582 delete wxTheApp
->GetTopWindow();
583 wxTheApp
->SetTopWindow(NULL
);
594 delete [] command
[0] ;
597 #if (WXDEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT
598 // At this point we want to check if there are any memory
599 // blocks that aren't part of the wxDebugContext itself,
600 // as a special case. Then when dumping we need to ignore
601 // wxDebugContext, too.
602 if (wxDebugContext::CountObjectsLeft() > 0)
604 wxTrace("There were memory leaks.\n");
605 wxDebugContext::Dump();
606 wxDebugContext::PrintStatistics();
608 wxDebugContext::SetStream(NULL
, NULL
);
616 int wxEntry(WXHINSTANCE hInstance
)
618 wxhInstance
= (HINSTANCE
) hInstance
;
619 wxApp::Initialize((WXHINSTANCE
) wxhInstance
);
621 // The app may have declared a global application object, but we recommend
622 // the IMPLEMENT_APP macro is used instead, which sets an initializer function
623 // for delayed, dynamic app object construction.
627 if (!wxApp::GetInitializerFunction())
629 MessageBox(NULL
, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
633 wxTheApp
= (* wxApp::GetInitializerFunction()) ();
637 MessageBox(NULL
, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL
| MB_ICONSTOP
| MB_OK
);
642 wxTheApp
->argv
= NULL
;
644 wxTheApp
->OnInitGui();
648 if (wxTheApp
->GetTopWindow() && wxTheApp
->GetTopWindow()->GetHWND()) {
649 wxTheApp
->GetTopWindow()->Show(TRUE
);
656 // Static member initialization
657 wxAppInitializerFunction
wxApp::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
663 // work_proc = NULL ;
665 // m_resourceCollection = TRUE;
666 // m_pendingCleanup = FALSE;
667 m_wantDebugOutput
= TRUE
;
672 m_printMode
= wxPRINT_WINDOWS
;
674 m_printMode
= wxPRINT_POSTSCRIPT
;
676 m_exitOnFrameDelete
= TRUE
;
680 bool wxApp::Initialized()
688 #ifdef _WINDLL // Assume initialized if DLL (no way of telling)
694 * Get and process a message, returning FALSE if WM_QUIT
698 bool wxApp::DoMessage()
700 if (!::GetMessage(&s_currentMsg
, (HWND
) NULL
, 0, 0))
705 // Process the message
706 if (!ProcessMessage((WXMSG
*)&s_currentMsg
))
708 ::TranslateMessage(&s_currentMsg
);
709 wxApp::sm_lastMessageTime
= s_currentMsg
.time
; /* MATTHEW: timeStamp impl. */
710 ::DispatchMessage(&s_currentMsg
);
716 * Keep trying to process messages until WM_QUIT
719 * If there are messages to be processed, they will all be
720 * processed and OnIdle will not be called.
721 * When there are no more messages, OnIdle is called.
722 * If OnIdle requests more time,
723 * it will be repeatedly called so long as there are no pending messages.
724 * A 'feature' of this is that once OnIdle has decided that no more processing
725 * is required, then it won't get processing time until further messages
726 * are processed (it'll sit in DoMessage).
729 int wxApp::MainLoop()
734 while (!::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) &&
740 return s_currentMsg
.wParam
;
743 // Returns TRUE if more time is needed.
744 bool wxApp::ProcessIdle()
747 event
.SetEventObject(this);
750 return event
.MoreRequested();
753 void wxApp::ExitMainLoop()
758 bool wxApp::Pending()
760 return (::PeekMessage(&s_currentMsg
, 0, 0, 0, PM_NOREMOVE
) != 0) ;
763 void wxApp::Dispatch()
770 * Give all windows a chance to preprocess
771 * the message. Some may have accelerator tables, or have
774 bool wxApp::ProcessMessage(WXMSG
*Msg
)
776 MSG
*msg
= (MSG
*)Msg
;
780 // Try translations first; find the youngest window with
781 // a translation table.
782 for (hWnd
= msg
->hwnd
; hWnd
!= NULL
; hWnd
= ::GetParent(hWnd
))
784 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
787 if (wnd
->MSWTranslateMessage(Msg
))
792 // Anyone for a non-translation message? Try youngest descendants first.
793 for (hWnd
= msg
->hwnd
; hWnd
!= NULL
; hWnd
= ::GetParent(hWnd
))
795 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
798 if (wnd
->MSWProcessMessage(Msg
))
805 void wxApp::OnIdle(wxIdleEvent
& event
)
807 static bool inOnIdle
= FALSE
;
809 // Avoid recursion (via ProcessEvent default case)
815 // 'Garbage' collection of windows deleted with Close().
816 DeletePendingObjects();
818 // flush the logged messages if any
819 wxLog
*pLog
= wxLog::GetActiveTarget();
820 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
823 // Send OnIdle events to all windows
824 bool needMore
= SendIdleEvents();
825 // bool needMore = FALSE;
828 event
.RequestMore(TRUE
);
833 // Send idle event to all top-level windows
834 bool wxApp::SendIdleEvents()
836 bool needMore
= FALSE
;
837 wxNode
* node
= wxTopLevelWindows
.First();
840 wxWindow
* win
= (wxWindow
*) node
->Data();
841 if (SendIdleEvents(win
))
849 // Send idle event to window and all subwindows
850 bool wxApp::SendIdleEvents(wxWindow
* win
)
852 bool needMore
= FALSE
;
855 event
.SetEventObject(win
);
856 win
->ProcessEvent(event
);
858 if (event
.MoreRequested())
861 wxNode
* node
= win
->GetChildren()->First();
864 wxWindow
* win
= (wxWindow
*) node
->Data();
865 if (SendIdleEvents(win
))
873 void wxApp::DeletePendingObjects()
875 wxNode
*node
= wxPendingDelete
.First();
878 wxObject
*obj
= (wxObject
*)node
->Data();
882 if (wxPendingDelete
.Member(obj
))
885 // Deleting one object may have deleted other pending
886 // objects, so start from beginning of list again.
887 node
= wxPendingDelete
.First();
892 // Free up font objects that are not being used at present.
893 bool wxApp::DoResourceCleanup()
895 // wxDebugMsg("ResourceCleanup\n");
899 wxNode *node = wxTheFontList->First();
902 wxGDIObject *obj = (wxGDIObject *)node->Data();
903 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
905 // wxDebugMsg("Freeing font %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
913 wxNode *node = wxThePenList->First();
916 wxGDIObject *obj = (wxGDIObject *)node->Data();
917 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
919 // wxDebugMsg("Freeing pen %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
927 wxNode *node = wxTheBrushList->First();
930 wxGDIObject *obj = (wxGDIObject *)node->Data();
931 if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0))
933 // wxDebugMsg("Freeing brush %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle());
940 SetPendingCleanup(FALSE);
945 wxLog
* wxApp::CreateLogTarget()
950 wxWindow
* wxApp::GetTopWindow() const
954 else if (wxTopLevelWindows
.Number() > 0)
955 return (wxWindow
*) wxTopLevelWindows
.First()->Data();
960 int wxApp::GetComCtl32Version() const
962 // have we loaded COMCTL32 yet?
963 HMODULE theModule
= ::GetModuleHandle("COMCTL32");
966 // if so, then we can check for the version
969 // InitCommonControlsEx is unique to 4.7 and later
970 FARPROC theProc
= ::GetProcAddress(theModule
, "InitCommonControlsEx");
973 { // not found, must be 4.00
978 // The following symbol are unique to 4.71
980 // FlatSB_EnableScrollBar FlatSB_GetScrollInfo FlatSB_GetScrollPos
981 // FlatSB_GetScrollProp FlatSB_GetScrollRange FlatSB_SetScrollInfo
982 // FlatSB_SetScrollPos FlatSB_SetScrollProp FlatSB_SetScrollRange
983 // FlatSB_ShowScrollBar
984 // _DrawIndirectImageList _DuplicateImageList
986 // UninitializeFlatSB
987 // we could check for any of these - I chose DllInstall
988 FARPROC theProc
= ::GetProcAddress(theModule
, "DllInstall");
991 // not found, must be 4.70
995 { // found, must be 4.71
1006 FatalAppExit(0, "Fatal error: exiting");
1009 // Yield to incoming messages
1013 // We want to go back to the main message loop
1014 // if we see a WM_QUIT. (?)
1015 while (PeekMessage(&msg
, NULL
, 0, 0, PM_NOREMOVE
) && msg
.message
!= WM_QUIT
)
1017 if (!wxTheApp
->DoMessage())
1024 HINSTANCE
wxGetInstance()
1029 // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly
1030 // if in a separate file. So include it here to ensure it's linked.
1031 #if (defined(_MSC_VER) && !defined(__WIN32__)) || defined(__GNUWIN32__)
1035 #undef IN_WX_MAIN_CPP