]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.cpp | |
3 | // Purpose: wxApp | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "app.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #define IN_WX_MAIN_CPP | |
18 | #include "wx/wxprec.h" | |
19 | ||
20 | #if defined(__BORLANDC__) | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
24 | #ifndef WX_PRECOMP | |
25 | #include "wx/frame.h" | |
26 | #include "wx/app.h" | |
27 | #include "wx/utils.h" | |
28 | #include "wx/gdicmn.h" | |
29 | #include "wx/pen.h" | |
30 | #include "wx/brush.h" | |
31 | #include "wx/cursor.h" | |
32 | #include "wx/icon.h" | |
33 | #include "wx/palette.h" | |
34 | #include "wx/dc.h" | |
35 | #include "wx/dialog.h" | |
36 | #include "wx/msgdlg.h" | |
37 | #endif | |
38 | ||
39 | #include "wx/msw/private.h" | |
40 | #include "wx/postscrp.h" | |
41 | #include "wx/log.h" | |
42 | #include "wx/module.h" | |
43 | ||
44 | #if USE_WX_RESOURCES | |
45 | #include "wx/resource.h" | |
46 | #endif | |
47 | ||
48 | ||
49 | #include <string.h> | |
50 | ||
51 | #if defined(__WIN95__) && !defined(__GNUWIN32__) | |
52 | #include <commctrl.h> | |
53 | #endif | |
54 | ||
370382c7 | 55 | // use debug CRT functions for memory leak detections in VC++ |
bbcdf8bc | 56 | /* THIS CRAPS OUT in VC++ 5. |
370382c7 VZ |
57 | #if defined(__WXDEBUG__) && defined(_MSC_VER) |
58 | #include <crtdbg.h> | |
59 | #endif | |
bbcdf8bc | 60 | */ |
370382c7 | 61 | |
2bda0e17 KB |
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; | |
68 | ||
c4e7c2aa | 69 | HINSTANCE wxhInstance = 0; |
2bda0e17 KB |
70 | static MSG s_currentMsg; |
71 | wxApp *wxTheApp = NULL; | |
72 | ||
73 | char wxFrameClassName[] = "wxFrameClass"; | |
74 | char wxMDIFrameClassName[] = "wxMDIFrameClass"; | |
75 | char wxMDIChildFrameClassName[] = "wxMDIChildFrameClass"; | |
76 | char wxPanelClassName[] = "wxPanelClass"; | |
77 | char wxCanvasClassName[] = "wxCanvasClass"; | |
78 | ||
79 | HICON wxSTD_FRAME_ICON = NULL; | |
80 | HICON wxSTD_MDICHILDFRAME_ICON = NULL; | |
81 | HICON wxSTD_MDIPARENTFRAME_ICON = NULL; | |
82 | ||
83 | HICON wxDEFAULT_FRAME_ICON = NULL; | |
84 | HICON wxDEFAULT_MDICHILDFRAME_ICON = NULL; | |
85 | HICON wxDEFAULT_MDIPARENTFRAME_ICON = NULL; | |
86 | ||
87 | HBRUSH wxDisableButtonBrush = 0; | |
88 | ||
89 | LRESULT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM); | |
90 | ||
91 | #if !USE_SHARED_LIBRARY | |
92 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) | |
93 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) | |
94 | EVT_IDLE(wxApp::OnIdle) | |
95 | END_EVENT_TABLE() | |
96 | #endif | |
97 | ||
98 | long wxApp::sm_lastMessageTime = 0; | |
99 | ||
100 | #ifdef __WIN95__ | |
101 | static HINSTANCE gs_hRichEdit = NULL; | |
102 | #endif | |
103 | ||
c4e7c2aa | 104 | bool wxApp::Initialize(WXHINSTANCE instance) |
2bda0e17 | 105 | { |
c4e7c2aa | 106 | HINSTANCE hInstance = (HINSTANCE) instance; |
2bda0e17 KB |
107 | |
108 | CommonInit(); | |
109 | ||
110 | #if defined(__WIN95__) | |
111 | InitCommonControls(); | |
112 | gs_hRichEdit = LoadLibrary("RICHED32.DLL"); | |
113 | ||
114 | if (gs_hRichEdit == NULL) | |
115 | { | |
116 | wxMessageBox("Could not initialise Rich Edit DLL"); | |
117 | } | |
118 | #endif | |
119 | ||
120 | #if defined(WX_DRAG_DROP) | |
121 | // we need to initialize OLE library | |
122 | if ( FAILED(::OleInitialize(NULL)) ) | |
123 | wxFatalError(_("Cannot initialize OLE")); | |
124 | #endif | |
125 | ||
126 | #if CTL3D | |
127 | if (!Ctl3dRegister(hInstance)) | |
128 | wxFatalError("Cannot register CTL3D"); | |
129 | ||
130 | Ctl3dAutoSubclass(hInstance); | |
131 | #endif | |
132 | ||
133 | wxSTD_FRAME_ICON = LoadIcon(hInstance, "wxSTD_FRAME"); | |
134 | wxSTD_MDIPARENTFRAME_ICON = LoadIcon(hInstance, "wxSTD_MDIPARENTFRAME"); | |
135 | wxSTD_MDICHILDFRAME_ICON = LoadIcon(hInstance, "wxSTD_MDICHILDFRAME"); | |
136 | ||
137 | wxDEFAULT_FRAME_ICON = LoadIcon(hInstance, "wxDEFAULT_FRAME"); | |
138 | wxDEFAULT_MDIPARENTFRAME_ICON = LoadIcon(hInstance, "wxDEFAULT_MDIPARENTFRAME"); | |
139 | wxDEFAULT_MDICHILDFRAME_ICON = LoadIcon(hInstance, "wxDEFAULT_MDICHILDFRAME"); | |
140 | ||
141 | RegisterWindowClasses(); | |
142 | ||
143 | // Create the brush for disabling bitmap buttons | |
144 | ||
145 | LOGBRUSH lb ; | |
146 | lb.lbStyle = BS_PATTERN; | |
147 | lb.lbHatch = (int)LoadBitmap( hInstance, "wxDISABLE_BUTTON_BITMAP" ) ; | |
148 | wxDisableButtonBrush = ::CreateBrushIndirect( & lb ) ; | |
149 | ::DeleteObject( (HGDIOBJ)lb.lbHatch ) ; | |
150 | ||
151 | #if USE_PENWINDOWS | |
152 | wxRegisterPenWin(); | |
153 | #endif | |
154 | ||
155 | wxWinHandleList = new wxList(wxKEY_INTEGER); | |
156 | ||
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++; | |
162 | #endif | |
163 | wxSetKeyboardHook(TRUE); | |
164 | ||
165 | wxModule::RegisterModules(); | |
166 | if (!wxModule::InitializeModules()) | |
167 | return FALSE; | |
168 | return TRUE; | |
169 | } | |
170 | ||
bb6290e3 | 171 | bool wxApp::RegisterWindowClasses() |
2bda0e17 KB |
172 | { |
173 | /////////////////////////////////////////////////////////////////////// | |
174 | // Register the frame window class. | |
175 | WNDCLASS wndclass; // Structure used to register Windows class. | |
176 | ||
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 ); | |
189 | #endif | |
190 | wndclass.lpszClassName = wxFrameClassName; | |
191 | ||
192 | if (!RegisterClass( &wndclass )) | |
193 | { | |
194 | // wxFatalError("Can't register Frame Window class"); | |
195 | } | |
196 | ||
197 | /////////////////////////////////////////////////////////////////////// | |
198 | // Register the MDI frame window class. | |
199 | WNDCLASS wndclass1; // Structure used to register Windows class. | |
200 | ||
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; | |
211 | ||
212 | wndclass1.lpszClassName = wxMDIFrameClassName; | |
213 | if (!RegisterClass( &wndclass1 )) | |
214 | { | |
215 | // wxFatalError("Can't register MDI Frame window class"); | |
216 | // return FALSE; | |
217 | } | |
218 | ||
219 | /////////////////////////////////////////////////////////////////////// | |
220 | // Register the MDI child frame window class. | |
221 | WNDCLASS wndclass4; // Structure used to register Windows class. | |
222 | ||
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 | |
232 | // this?) | |
233 | wndclass4.hbrBackground = (HBRUSH)(COLOR_WINDOW+1) ; | |
234 | // wndclass4.hbrBackground = NULL; | |
235 | wndclass4.lpszMenuName = NULL; | |
236 | wndclass4.lpszClassName = wxMDIChildFrameClassName; | |
237 | ||
238 | if (!RegisterClass( &wndclass4 )) | |
239 | { | |
240 | // wxFatalError("Can't register MDI child frame window class"); | |
241 | // return FALSE; | |
242 | } | |
243 | ||
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) ; | |
c4e7c2aa | 258 | wndclass2.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH ); |
2bda0e17 KB |
259 | wndclass2.lpszMenuName = NULL; |
260 | wndclass2.lpszClassName = wxPanelClassName; | |
261 | if (!RegisterClass( &wndclass2 )) | |
262 | { | |
263 | // wxFatalError("Can't register Panel Window class"); | |
264 | // return FALSE; | |
265 | } | |
266 | ||
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. | |
d50b2a58 | 273 | // wndclass3.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS ; |
2bda0e17 | 274 | // wxWin 2.0 |
d50b2a58 | 275 | wndclass3.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS ; |
2bda0e17 KB |
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)) | |
287 | { | |
288 | // wxFatalError("Can't register Canvas class"); | |
289 | // return FALSE; | |
290 | } | |
291 | ||
292 | return TRUE; | |
293 | } | |
294 | ||
295 | // Cleans up any wxWindows internal structures left lying around | |
bb6290e3 | 296 | void wxApp::CleanUp() |
2bda0e17 KB |
297 | { |
298 | wxModule::CleanUpModules(); | |
299 | ||
300 | CommonCleanUp(); | |
301 | ||
302 | wxSetKeyboardHook(FALSE); | |
303 | ||
304 | #ifdef __WIN95__ | |
305 | if (gs_hRichEdit != NULL) | |
306 | FreeLibrary(gs_hRichEdit); | |
307 | #endif | |
308 | ||
309 | #if USE_PENWINDOWS | |
310 | wxCleanUpPenWin(); | |
311 | #endif | |
312 | ||
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); | |
319 | ||
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); | |
326 | ||
327 | if ( wxDisableButtonBrush ) | |
328 | ::DeleteObject( wxDisableButtonBrush ) ; | |
329 | ||
330 | #if defined(WX_DRAG_DROP) | |
331 | ::OleUninitialize(); | |
332 | #endif | |
333 | ||
334 | #if CTL3D | |
335 | Ctl3dUnregister(wxhInstance); | |
336 | #endif | |
337 | ||
338 | if (wxWinHandleList) | |
339 | delete wxWinHandleList ; | |
d50b2a58 | 340 | |
c54f78a2 | 341 | // do it as the very last thing because everything else can log messages |
370382c7 | 342 | wxLog::DontCreateOnDemand(); |
c54f78a2 | 343 | delete wxLog::SetActiveTarget(NULL); |
2bda0e17 KB |
344 | } |
345 | ||
bb6290e3 | 346 | void wxApp::CommonInit() |
2bda0e17 | 347 | { |
2049ba38 | 348 | #ifdef __WXMSW__ |
2bda0e17 KB |
349 | wxBuffer = new char[1500]; |
350 | #else | |
351 | wxBuffer = new char[BUFSIZ + 512]; | |
352 | #endif | |
353 | ||
354 | wxClassInfo::InitializeClasses(); | |
355 | ||
2bda0e17 | 356 | #if USE_RESOURCES |
bb6290e3 | 357 | wxGetResource("wxWindows", "OsVersion", &wxOsVersion); |
2bda0e17 KB |
358 | #endif |
359 | ||
360 | wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING); | |
361 | wxTheColourDatabase->Initialize(); | |
d50b2a58 RD |
362 | |
363 | wxInitializeStockLists(); | |
2bda0e17 KB |
364 | wxInitializeStockObjects(); |
365 | ||
366 | #if USE_WX_RESOURCES | |
367 | wxInitializeResourceSystem(); | |
368 | #endif | |
369 | ||
370 | // For PostScript printing | |
371 | #if USE_POSTSCRIPT | |
372 | wxInitializePrintSetupData(); | |
373 | wxThePrintPaperDatabase = new wxPrintPaperDatabase; | |
374 | wxThePrintPaperDatabase->CreateDatabase(); | |
375 | #endif | |
376 | ||
377 | wxBitmap::InitStandardHandlers(); | |
378 | ||
379 | g_globalCursor = new wxCursor; | |
380 | } | |
381 | ||
bb6290e3 | 382 | void wxApp::CommonCleanUp() |
2bda0e17 KB |
383 | { |
384 | #if USE_WX_RESOURCES | |
385 | wxCleanUpResourceSystem(); | |
386 | ||
387 | // wxDefaultResourceTable->ClearTable(); | |
388 | #endif | |
a781a382 | 389 | |
2bda0e17 KB |
390 | // Indicate that the cursor can be freed, |
391 | // so that cursor won't be deleted by deleting | |
392 | // the bitmap list before g_globalCursor goes out | |
393 | // of scope (double deletion of the cursor). | |
394 | wxSetCursor(wxNullCursor); | |
395 | delete g_globalCursor; | |
396 | ||
397 | wxDeleteStockObjects() ; | |
398 | ||
399 | // Destroy all GDI lists, etc. | |
a781a382 | 400 | wxDeleteStockLists(); |
2bda0e17 KB |
401 | |
402 | delete wxTheColourDatabase; | |
403 | wxTheColourDatabase = NULL; | |
404 | ||
405 | #if USE_POSTSCRIPT | |
406 | wxInitializePrintSetupData(FALSE); | |
407 | delete wxThePrintPaperDatabase; | |
408 | wxThePrintPaperDatabase = NULL; | |
409 | #endif | |
410 | ||
411 | wxBitmap::CleanUpHandlers(); | |
412 | ||
413 | delete[] wxBuffer; | |
414 | wxBuffer = NULL; | |
415 | } | |
416 | ||
417 | #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL)) | |
418 | ||
419 | // Main wxWindows entry point | |
420 | ||
421 | int wxEntry(WXHINSTANCE hInstance, WXHINSTANCE WXUNUSED(hPrevInstance), char *m_lpCmdLine, | |
422 | int nCmdShow, bool enterLoop) | |
423 | { | |
424 | wxhInstance = (HINSTANCE) hInstance; | |
425 | ||
bbcdf8bc JS |
426 | /* No, sorry, whatever this is, forget it. Doesn't work with VC++ 5. |
427 | ||
370382c7 VZ |
428 | #if defined(__WXDEBUG__) && defined(_MSC_VER) |
429 | // do check for memory leaks on program exit | |
430 | // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free | |
431 | // deallocated memory which may be used to simulate low-memory condition) | |
432 | _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF); | |
433 | #endif // debug build under MS VC++ | |
bbcdf8bc | 434 | */ |
370382c7 | 435 | |
b2aef89b | 436 | #if (WXDEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT |
2bda0e17 KB |
437 | |
438 | #if !defined(_WINDLL) | |
439 | streambuf* sBuf = new wxDebugStreamBuf; | |
440 | #else | |
441 | streambuf* sBuf = NULL; | |
442 | #endif | |
443 | ostream* oStr = new ostream(sBuf) ; | |
444 | wxDebugContext::SetStream(oStr, sBuf); | |
445 | ||
370382c7 | 446 | #endif // USE_MEMORY_TRACING |
2bda0e17 KB |
447 | |
448 | if (!wxApp::Initialize((WXHINSTANCE) wxhInstance)) | |
449 | return 0; | |
450 | ||
451 | // The app may have declared a global application object, but we recommend | |
452 | // the IMPLEMENT_APP macro is used instead, which sets an initializer function | |
453 | // for delayed, dynamic app object construction. | |
454 | if (!wxTheApp) | |
455 | { | |
456 | if (!wxApp::GetInitializerFunction()) | |
457 | { | |
458 | MessageBox(NULL, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL | MB_ICONSTOP | MB_OK); | |
459 | return 0; | |
460 | } | |
461 | ||
462 | wxTheApp = (* wxApp::GetInitializerFunction()) (); | |
463 | } | |
464 | ||
465 | if (!wxTheApp) { | |
466 | MessageBox(NULL, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL | MB_ICONSTOP | MB_OK); | |
467 | return 0; | |
468 | } | |
469 | ||
470 | // Split command line into tokens, as in usual main(argc, argv) | |
471 | char **command = new char*[50]; | |
d50b2a58 | 472 | |
2bda0e17 KB |
473 | int count = 0; |
474 | char *buf = new char[strlen(m_lpCmdLine) + 1]; | |
d50b2a58 | 475 | |
2bda0e17 KB |
476 | // Hangs around until end of app. in case |
477 | // user carries pointers to the tokens | |
478 | ||
479 | /* Model independent strcpy */ | |
480 | int i; | |
481 | for (i = 0; (buf[i] = m_lpCmdLine[i]) != 0; i++) | |
482 | { | |
483 | /* loop */; | |
484 | } | |
485 | ||
486 | // Get application name | |
487 | char name[200]; | |
488 | ::GetModuleFileName(wxhInstance, name, 199); | |
489 | ||
490 | // Is it only 16-bit Borland that already copies the program name | |
491 | // to the first argv index? | |
492 | #if !defined(__GNUWIN32__) | |
493 | // #if ! (defined(__BORLANDC__) && !defined(__WIN32__)) | |
494 | command[count++] = copystring(name); | |
495 | // #endif | |
496 | #endif | |
497 | ||
498 | strcpy(name, wxFileNameFromPath(name)); | |
499 | wxStripExtension(name); | |
500 | wxTheApp->SetAppName(name); | |
501 | ||
502 | /* Break up string */ | |
503 | // Treat strings enclosed in double-quotes as single arguments | |
504 | char* str = buf; | |
505 | while (*str) | |
506 | { | |
507 | while (*str && *str <= ' ') str++; // skip whitespace | |
508 | if (*str == '"') | |
509 | { | |
510 | str++; | |
511 | command[count++] = str; | |
512 | while (*str && *str != '"') str++; | |
513 | } | |
514 | else if (*str) | |
515 | { | |
516 | command[count++] = str; | |
517 | while (*str && *str > ' ') str++; | |
518 | } | |
519 | if (*str) *str++ = '\0'; | |
520 | } | |
521 | command[count] = NULL; /* argv[] is NULL terminated list! */ | |
522 | ||
523 | wxTheApp->argc = count; | |
524 | wxTheApp->argv = command; | |
525 | wxTheApp->m_nCmdShow = nCmdShow; | |
526 | ||
527 | // GUI-specific initialisation. In fact on Windows we don't have any, | |
528 | // but this call is provided for compatibility across platforms. | |
529 | wxTheApp->OnInitGui() ; | |
530 | ||
531 | if (!wxTheApp->OnInit()) | |
532 | { | |
533 | wxTheApp->DeletePendingObjects(); | |
534 | wxTheApp->OnExit(); | |
535 | wxApp::CleanUp(); | |
536 | ||
537 | delete wxTheApp; | |
538 | wxTheApp = NULL; | |
539 | ||
540 | delete [] buf ; | |
541 | ||
542 | // TODO: This should really be cleaned up in ~wxApp | |
543 | delete [] command[0] ; | |
544 | delete [] command ; | |
545 | return 0; | |
546 | } | |
547 | ||
548 | if (!enterLoop) | |
549 | return 0; | |
550 | ||
551 | int retValue = 1; | |
552 | ||
553 | /* New behaviour - leave it to the app to show the top window | |
554 | if (wxTheApp->GetTopWindow()) { | |
555 | // show the toplevel frame, only if we are not iconized (from MS-Windows) | |
556 | if(wxTheApp->GetShowFrameOnInit() && (nCmdShow!=SW_HIDE)) wxTheApp->GetTopWindow()->Show(TRUE); | |
557 | } | |
558 | */ | |
559 | ||
560 | retValue = wxTheApp->OnRun(); | |
561 | ||
562 | if (wxTheApp->GetTopWindow()) | |
563 | { | |
564 | // Forcibly delete the window. | |
565 | if (wxTheApp->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame)) || | |
566 | wxTheApp->GetTopWindow()->IsKindOf(CLASSINFO(wxDialog))) | |
567 | { | |
568 | wxTheApp->GetTopWindow()->Close(TRUE); | |
569 | wxTheApp->DeletePendingObjects(); | |
570 | } | |
571 | else | |
572 | { | |
573 | delete wxTheApp->GetTopWindow(); | |
574 | wxTheApp->SetTopWindow(NULL); | |
575 | } | |
576 | } | |
d50b2a58 | 577 | |
2bda0e17 KB |
578 | wxTheApp->OnExit(); |
579 | wxApp::CleanUp(); | |
580 | ||
581 | delete wxTheApp; | |
582 | wxTheApp = NULL; | |
583 | ||
584 | delete [] buf ; | |
585 | delete [] command[0] ; | |
586 | delete [] command ; | |
587 | ||
b2aef89b | 588 | #if (WXDEBUG && USE_MEMORY_TRACING) || USE_DEBUG_CONTEXT |
2bda0e17 KB |
589 | // At this point we want to check if there are any memory |
590 | // blocks that aren't part of the wxDebugContext itself, | |
591 | // as a special case. Then when dumping we need to ignore | |
592 | // wxDebugContext, too. | |
593 | if (wxDebugContext::CountObjectsLeft() > 0) | |
594 | { | |
595 | wxTrace("There were memory leaks.\n"); | |
596 | wxDebugContext::Dump(); | |
597 | wxDebugContext::PrintStatistics(); | |
598 | } | |
599 | wxDebugContext::SetStream(NULL, NULL); | |
600 | #endif | |
601 | ||
602 | return retValue; | |
603 | } | |
604 | ||
605 | #else /* _WINDLL */ | |
606 | ||
607 | int wxEntry(WXHINSTANCE hInstance) | |
608 | { | |
609 | wxhInstance = (HINSTANCE) hInstance; | |
610 | wxApp::Initialize((WXHINSTANCE) wxhInstance); | |
611 | ||
612 | // The app may have declared a global application object, but we recommend | |
613 | // the IMPLEMENT_APP macro is used instead, which sets an initializer function | |
614 | // for delayed, dynamic app object construction. | |
615 | ||
616 | if (!wxTheApp) | |
617 | { | |
618 | if (!wxApp::GetInitializerFunction()) | |
619 | { | |
620 | MessageBox(NULL, "No initializer - use IMPLEMENT_APP macro.", "wxWindows Error", MB_APPLMODAL | MB_ICONSTOP | MB_OK); | |
621 | return 0; | |
622 | } | |
623 | ||
624 | wxTheApp = (* wxApp::GetInitializerFunction()) (); | |
625 | } | |
626 | ||
627 | if (!wxTheApp) { | |
628 | MessageBox(NULL, "You have to define an instance of wxApp!", "wxWindows Error", MB_APPLMODAL | MB_ICONSTOP | MB_OK); | |
629 | return 0; | |
630 | } | |
631 | ||
632 | wxTheApp->argc = 0; | |
633 | wxTheApp->argv = NULL; | |
634 | ||
635 | wxTheApp->OnInitGui(); | |
636 | ||
637 | wxTheApp->OnInit(); | |
638 | ||
639 | if (wxTheApp->GetTopWindow() && wxTheApp->GetTopWindow()->GetHWND()) { | |
640 | wxTheApp->GetTopWindow()->Show(TRUE); | |
641 | } | |
642 | ||
643 | return 1; | |
644 | } | |
645 | #endif // _WINDLL | |
646 | ||
647 | // Static member initialization | |
648 | wxAppInitializerFunction wxApp::m_appInitFn = (wxAppInitializerFunction) NULL; | |
649 | ||
bb6290e3 | 650 | wxApp::wxApp() |
2bda0e17 KB |
651 | { |
652 | m_topWindow = NULL; | |
653 | wxTheApp = this; | |
654 | // work_proc = NULL ; | |
655 | m_className = ""; | |
656 | // m_resourceCollection = TRUE; | |
657 | // m_pendingCleanup = FALSE; | |
658 | m_wantDebugOutput = TRUE ; | |
659 | m_appName = ""; | |
660 | argc = 0; | |
661 | argv = NULL; | |
2049ba38 | 662 | #ifdef __WXMSW__ |
2bda0e17 KB |
663 | m_printMode = wxPRINT_WINDOWS; |
664 | #else | |
665 | m_printMode = wxPRINT_POSTSCRIPT; | |
666 | #endif | |
2bda0e17 | 667 | m_exitOnFrameDelete = TRUE; |
2bda0e17 KB |
668 | m_auto3D = TRUE; |
669 | } | |
670 | ||
bb6290e3 | 671 | bool wxApp::Initialized() |
2bda0e17 KB |
672 | { |
673 | #ifndef _WINDLL | |
674 | if (GetTopWindow()) | |
675 | return TRUE; | |
676 | else | |
677 | return FALSE; | |
678 | #endif | |
679 | #ifdef _WINDLL // Assume initialized if DLL (no way of telling) | |
680 | return TRUE; | |
681 | #endif | |
682 | } | |
683 | ||
684 | /* | |
685 | * Get and process a message, returning FALSE if WM_QUIT | |
686 | * received. | |
687 | * | |
688 | */ | |
bb6290e3 | 689 | bool wxApp::DoMessage() |
2bda0e17 KB |
690 | { |
691 | if (!::GetMessage(&s_currentMsg, (HWND) NULL, 0, 0)) | |
692 | { | |
693 | return FALSE; | |
694 | } | |
d50b2a58 | 695 | |
2bda0e17 KB |
696 | // Process the message |
697 | if (!ProcessMessage((WXMSG *)&s_currentMsg)) | |
698 | { | |
699 | ::TranslateMessage(&s_currentMsg); | |
700 | wxApp::sm_lastMessageTime = s_currentMsg.time; /* MATTHEW: timeStamp impl. */ | |
701 | ::DispatchMessage(&s_currentMsg); | |
702 | } | |
703 | return TRUE; | |
704 | } | |
705 | ||
706 | /* | |
707 | * Keep trying to process messages until WM_QUIT | |
708 | * received. | |
709 | * | |
710 | * If there are messages to be processed, they will all be | |
711 | * processed and OnIdle will not be called. | |
712 | * When there are no more messages, OnIdle is called. | |
713 | * If OnIdle requests more time, | |
714 | * it will be repeatedly called so long as there are no pending messages. | |
715 | * A 'feature' of this is that once OnIdle has decided that no more processing | |
716 | * is required, then it won't get processing time until further messages | |
717 | * are processed (it'll sit in DoMessage). | |
718 | */ | |
719 | ||
bb6290e3 | 720 | int wxApp::MainLoop() |
2bda0e17 KB |
721 | { |
722 | m_keepGoing = TRUE; | |
723 | while (m_keepGoing) | |
724 | { | |
725 | while (!::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) && | |
726 | ProcessIdle()) {} | |
727 | if (!DoMessage()) | |
728 | m_keepGoing = FALSE; | |
729 | } | |
730 | ||
731 | return s_currentMsg.wParam; | |
732 | } | |
733 | ||
734 | // Returns TRUE if more time is needed. | |
bb6290e3 | 735 | bool wxApp::ProcessIdle() |
2bda0e17 KB |
736 | { |
737 | wxIdleEvent event; | |
738 | event.SetEventObject(this); | |
739 | ProcessEvent(event); | |
740 | ||
741 | return event.MoreRequested(); | |
742 | } | |
743 | ||
bb6290e3 | 744 | void wxApp::ExitMainLoop() |
2bda0e17 KB |
745 | { |
746 | m_keepGoing = FALSE; | |
747 | } | |
748 | ||
bb6290e3 | 749 | bool wxApp::Pending() |
2bda0e17 KB |
750 | { |
751 | return (::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) != 0) ; | |
752 | } | |
753 | ||
bb6290e3 | 754 | void wxApp::Dispatch() |
2bda0e17 KB |
755 | { |
756 | if (!DoMessage()) | |
757 | m_keepGoing = FALSE; | |
758 | } | |
759 | ||
760 | /* | |
761 | * Give all windows a chance to preprocess | |
762 | * the message. Some may have accelerator tables, or have | |
763 | * MDI complications. | |
764 | */ | |
765 | bool wxApp::ProcessMessage(WXMSG *Msg) | |
766 | { | |
767 | MSG *msg = (MSG *)Msg; | |
768 | ||
769 | HWND hWnd; | |
770 | ||
57a7b7c1 JS |
771 | // Try translations first; find the youngest window with |
772 | // a translation table. | |
2bda0e17 KB |
773 | for (hWnd = msg->hwnd; hWnd != NULL; hWnd = ::GetParent(hWnd)) |
774 | { | |
775 | wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd); | |
776 | if (wnd) | |
777 | { | |
57a7b7c1 | 778 | if (wnd->MSWTranslateMessage(Msg)) |
2bda0e17 | 779 | return TRUE; |
2bda0e17 KB |
780 | } |
781 | } | |
782 | ||
57a7b7c1 JS |
783 | // Anyone for a non-translation message? Try youngest descendants first. |
784 | for (hWnd = msg->hwnd; hWnd != NULL; hWnd = ::GetParent(hWnd)) | |
785 | { | |
786 | wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd); | |
787 | if (wnd) | |
788 | { | |
789 | if (wnd->MSWProcessMessage(Msg)) | |
790 | return TRUE; | |
791 | } | |
792 | } | |
793 | return FALSE; | |
2bda0e17 KB |
794 | } |
795 | ||
796 | void wxApp::OnIdle(wxIdleEvent& event) | |
797 | { | |
798 | static bool inOnIdle = FALSE; | |
799 | ||
800 | // Avoid recursion (via ProcessEvent default case) | |
801 | if (inOnIdle) | |
802 | return; | |
803 | ||
804 | inOnIdle = TRUE; | |
805 | ||
806 | // 'Garbage' collection of windows deleted with Close(). | |
807 | DeletePendingObjects(); | |
808 | ||
c54f78a2 VZ |
809 | // flush the logged messages if any |
810 | wxLog *pLog = wxLog::GetActiveTarget(); | |
811 | if ( pLog != NULL && pLog->HasPendingMessages() ) | |
812 | pLog->Flush(); | |
813 | ||
2bda0e17 KB |
814 | // Send OnIdle events to all windows |
815 | bool needMore = SendIdleEvents(); | |
1c089c47 | 816 | // bool needMore = FALSE; |
2bda0e17 KB |
817 | |
818 | if (needMore) | |
819 | event.RequestMore(TRUE); | |
820 | ||
821 | inOnIdle = FALSE; | |
822 | } | |
823 | ||
824 | // Send idle event to all top-level windows | |
bb6290e3 | 825 | bool wxApp::SendIdleEvents() |
2bda0e17 KB |
826 | { |
827 | bool needMore = FALSE; | |
828 | wxNode* node = wxTopLevelWindows.First(); | |
829 | while (node) | |
830 | { | |
831 | wxWindow* win = (wxWindow*) node->Data(); | |
832 | if (SendIdleEvents(win)) | |
833 | needMore = TRUE; | |
834 | ||
835 | node = node->Next(); | |
836 | } | |
837 | return needMore; | |
838 | } | |
839 | ||
840 | // Send idle event to window and all subwindows | |
841 | bool wxApp::SendIdleEvents(wxWindow* win) | |
842 | { | |
843 | bool needMore = FALSE; | |
844 | ||
845 | wxIdleEvent event; | |
846 | event.SetEventObject(win); | |
847 | win->ProcessEvent(event); | |
848 | ||
849 | if (event.MoreRequested()) | |
850 | needMore = TRUE; | |
851 | ||
852 | wxNode* node = win->GetChildren()->First(); | |
853 | while (node) | |
854 | { | |
855 | wxWindow* win = (wxWindow*) node->Data(); | |
856 | if (SendIdleEvents(win)) | |
857 | needMore = TRUE; | |
858 | ||
859 | node = node->Next(); | |
860 | } | |
861 | return needMore ; | |
862 | } | |
863 | ||
bb6290e3 | 864 | void wxApp::DeletePendingObjects() |
2bda0e17 KB |
865 | { |
866 | wxNode *node = wxPendingDelete.First(); | |
867 | while (node) | |
868 | { | |
869 | wxObject *obj = (wxObject *)node->Data(); | |
d50b2a58 | 870 | |
2bda0e17 KB |
871 | delete obj; |
872 | ||
873 | if (wxPendingDelete.Member(obj)) | |
874 | delete node; | |
875 | ||
876 | // Deleting one object may have deleted other pending | |
877 | // objects, so start from beginning of list again. | |
878 | node = wxPendingDelete.First(); | |
879 | } | |
880 | } | |
881 | ||
882 | /* | |
883 | // Free up font objects that are not being used at present. | |
bb6290e3 | 884 | bool wxApp::DoResourceCleanup() |
2bda0e17 KB |
885 | { |
886 | // wxDebugMsg("ResourceCleanup\n"); | |
887 | ||
888 | if (wxTheFontList) | |
889 | { | |
890 | wxNode *node = wxTheFontList->First(); | |
891 | while (node) | |
892 | { | |
893 | wxGDIObject *obj = (wxGDIObject *)node->Data(); | |
894 | if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0)) | |
895 | { | |
896 | // wxDebugMsg("Freeing font %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle()); | |
897 | obj->FreeResource(); | |
898 | } | |
899 | node = node->Next(); | |
900 | } | |
901 | } | |
902 | if (wxThePenList) | |
903 | { | |
904 | wxNode *node = wxThePenList->First(); | |
905 | while (node) | |
906 | { | |
907 | wxGDIObject *obj = (wxGDIObject *)node->Data(); | |
908 | if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0)) | |
909 | { | |
910 | // wxDebugMsg("Freeing pen %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle()); | |
911 | obj->FreeResource(); | |
912 | } | |
913 | node = node->Next(); | |
914 | } | |
915 | } | |
916 | if (wxTheBrushList) | |
917 | { | |
918 | wxNode *node = wxTheBrushList->First(); | |
919 | while (node) | |
920 | { | |
921 | wxGDIObject *obj = (wxGDIObject *)node->Data(); | |
922 | if ((obj->GetResourceHandle() != 0) && (obj->GetResourceUsage() == 0)) | |
923 | { | |
924 | // wxDebugMsg("Freeing brush %ld (GDI object %d)\n", (long)obj, (int)obj->GetResourceHandle()); | |
925 | obj->FreeResource(); | |
926 | } | |
927 | node = node->Next(); | |
928 | } | |
929 | } | |
930 | ||
931 | SetPendingCleanup(FALSE); | |
932 | return FALSE; | |
933 | } | |
934 | */ | |
935 | ||
bb6290e3 | 936 | wxLog* wxApp::CreateLogTarget() |
2bda0e17 KB |
937 | { |
938 | return new wxLogGui; | |
939 | } | |
940 | ||
bb6290e3 | 941 | wxWindow* wxApp::GetTopWindow() const |
2bda0e17 KB |
942 | { |
943 | if (m_topWindow) | |
944 | return m_topWindow; | |
945 | else if (wxTopLevelWindows.Number() > 0) | |
946 | return (wxWindow*) wxTopLevelWindows.First()->Data(); | |
947 | else | |
948 | return NULL; | |
949 | } | |
950 | ||
bb6290e3 JS |
951 | int wxApp::GetComCtl32Version() const |
952 | { | |
953 | // have we loaded COMCTL32 yet? | |
954 | HMODULE theModule = ::GetModuleHandle("COMCTL32"); | |
955 | int version = 0; | |
d50b2a58 | 956 | |
bb6290e3 JS |
957 | // if so, then we can check for the version |
958 | if (theModule) | |
959 | { | |
960 | // InitCommonControlsEx is unique to 4.7 and later | |
961 | FARPROC theProc = ::GetProcAddress(theModule, "InitCommonControlsEx"); | |
d50b2a58 | 962 | |
bb6290e3 JS |
963 | if (! theProc) |
964 | { // not found, must be 4.00 | |
965 | version = 400; | |
966 | } | |
967 | else | |
968 | { | |
969 | // The following symbol are unique to 4.71 | |
970 | // DllInstall | |
971 | // FlatSB_EnableScrollBar FlatSB_GetScrollInfo FlatSB_GetScrollPos | |
972 | // FlatSB_GetScrollProp FlatSB_GetScrollRange FlatSB_SetScrollInfo | |
973 | // FlatSB_SetScrollPos FlatSB_SetScrollProp FlatSB_SetScrollRange | |
974 | // FlatSB_ShowScrollBar | |
975 | // _DrawIndirectImageList _DuplicateImageList | |
976 | // InitializeFlatSB | |
977 | // UninitializeFlatSB | |
978 | // we could check for any of these - I chose DllInstall | |
979 | FARPROC theProc = ::GetProcAddress(theModule, "DllInstall"); | |
980 | if (! theProc) | |
981 | { | |
982 | // not found, must be 4.70 | |
983 | version = 470; | |
984 | } | |
985 | else | |
986 | { // found, must be 4.71 | |
987 | version = 471; | |
988 | } | |
989 | } | |
990 | } | |
991 | return version; | |
992 | } | |
993 | ||
994 | void wxExit() | |
2bda0e17 KB |
995 | { |
996 | wxApp::CleanUp(); | |
997 | FatalAppExit(0, "Fatal error: exiting"); | |
998 | } | |
999 | ||
1000 | // Yield to incoming messages | |
bb6290e3 | 1001 | bool wxYield() |
2bda0e17 KB |
1002 | { |
1003 | MSG msg; | |
1004 | // We want to go back to the main message loop | |
1005 | // if we see a WM_QUIT. (?) | |
1006 | while (PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) && msg.message != WM_QUIT) | |
1007 | { | |
1008 | if (!wxTheApp->DoMessage()) | |
1009 | break; | |
1010 | } | |
1011 | ||
1012 | return TRUE; | |
1013 | } | |
1014 | ||
1015 | HINSTANCE wxGetInstance() | |
1016 | { | |
1017 | return wxhInstance; | |
1018 | } | |
1019 | ||
1020 | // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly | |
1021 | // if in a separate file. So include it here to ensure it's linked. | |
1022 | #if (defined(_MSC_VER) && !defined(__WIN32__)) || defined(__GNUWIN32__) | |
1023 | #include "main.cpp" | |
1024 | #endif | |
1025 | ||
1026 | #undef IN_WX_MAIN_CPP | |
1027 |