]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
ad9835c9 | 2 | // Name: src/os2/app.cpp |
0e320a79 | 3 | // Purpose: wxApp |
d88de032 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
d88de032 | 6 | // Created: 10/13/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
d88de032 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
d88de032 DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
e4db172a WS |
15 | #include "wx/app.h" |
16 | ||
d88de032 | 17 | #ifndef WX_PRECOMP |
ad9835c9 | 18 | #include "wx/dynarray.h" |
d88de032 | 19 | #include "wx/frame.h" |
d88de032 DW |
20 | #include "wx/utils.h" |
21 | #include "wx/gdicmn.h" | |
22 | #include "wx/pen.h" | |
23 | #include "wx/brush.h" | |
24 | #include "wx/cursor.h" | |
25 | #include "wx/icon.h" | |
26 | #include "wx/palette.h" | |
27 | #include "wx/dc.h" | |
28 | #include "wx/dialog.h" | |
29 | #include "wx/msgdlg.h" | |
30 | #include "wx/intl.h" | |
3a3dde0d | 31 | #include "wx/crt.h" |
e4db172a | 32 | #include "wx/log.h" |
02761f6c | 33 | #include "wx/module.h" |
0e320a79 DW |
34 | #endif |
35 | ||
f18ad9c6 WS |
36 | #include "wx/stdpaths.h" |
37 | #include "wx/filename.h" | |
32ba0160 | 38 | #include "wx/evtloop.h" |
f18ad9c6 | 39 | |
d88de032 DW |
40 | #include "wx/os2/private.h" |
41 | ||
29d83fc1 DW |
42 | #ifdef __EMX__ |
43 | ||
19193a2c KB |
44 | #include <sys/ioctl.h> |
45 | #include <sys/select.h> | |
29d83fc1 DW |
46 | |
47 | #else | |
48 | ||
65b851bb | 49 | #include <nerrno.h> |
19193a2c KB |
50 | #include <sys/ioctl.h> |
51 | #include <sys/select.h> | |
52 | #include <sys/time.h> | |
29d83fc1 | 53 | |
19193a2c | 54 | #endif // |
29d83fc1 | 55 | |
6670f564 WS |
56 | #if defined(__WATCOMC__) |
57 | ||
58 | #include <tcpustd.h> | |
59 | ||
60 | #elif !defined(__EMX__) | |
29d83fc1 | 61 | |
3958ae62 | 62 | #define select(a,b,c,d,e) bsdselect(a,b,c,d,e) |
19193a2c KB |
63 | extern "C" int _System bsdselect(int, |
64 | struct fd_set *, | |
65 | struct fd_set *, | |
66 | struct fd_set *, | |
67 | struct timeval *); | |
3958ae62 SN |
68 | #endif |
69 | ||
d88de032 DW |
70 | #if wxUSE_THREADS |
71 | #include "wx/thread.h" | |
d88de032 | 72 | #endif // wxUSE_THREADS |
0e320a79 | 73 | |
8df85a61 DW |
74 | #if wxUSE_TOOLTIPS |
75 | #include "wx/tooltip.h" | |
76 | #endif // wxUSE_TOOLTIPS | |
77 | ||
0e320a79 | 78 | #include <string.h> |
d88de032 DW |
79 | #include <ctype.h> |
80 | ||
81 | // --------------------------------------------------------------------------- | |
82 | // global variables | |
83 | // --------------------------------------------------------------------------- | |
84 | ||
e7445ff8 | 85 | WXDLLEXPORT_DATA(wxChar*) wxBuffer; |
9ed0fac8 | 86 | extern wxCursor* g_globalCursor; |
0e320a79 | 87 | |
8df85a61 | 88 | HAB vHabmain = NULLHANDLE; |
d88de032 | 89 | |
d88de032 | 90 | |
9ed0fac8 DW |
91 | HICON wxSTD_FRAME_ICON = (HICON) NULL; |
92 | HICON wxSTD_MDICHILDFRAME_ICON = (HICON) NULL; | |
d88de032 DW |
93 | HICON wxSTD_MDIPARENTFRAME_ICON = (HICON) NULL; |
94 | ||
9ed0fac8 DW |
95 | HICON wxDEFAULT_FRAME_ICON = (HICON) NULL; |
96 | HICON wxDEFAULT_MDICHILDFRAME_ICON = (HICON) NULL; | |
97 | HICON wxDEFAULT_MDIPARENTFRAME_ICON = (HICON) NULL; | |
d88de032 DW |
98 | |
99 | HBRUSH wxDisableButtonBrush = (HBRUSH) 0; | |
100 | ||
51c1d535 DW |
101 | MRESULT EXPENTRY wxWndProc( HWND hWnd,ULONG message,MPARAM mp1,MPARAM mp2); |
102 | MRESULT EXPENTRY wxFrameWndProc( HWND hWnd,ULONG message,MPARAM mp1,MPARAM mp2); | |
103 | ||
d88de032 DW |
104 | // =========================================================================== |
105 | // implementation | |
106 | // =========================================================================== | |
107 | ||
3958ae62 SN |
108 | // --------------------------------------------------------------------------- |
109 | // helper struct and functions for socket handling | |
110 | // --------------------------------------------------------------------------- | |
111 | ||
112 | struct GsocketCallbackInfo{ | |
113 | void (*proc)(void *); | |
114 | int type; | |
115 | int handle; | |
116 | void* gsock; | |
117 | }; | |
118 | ||
621b4574 | 119 | // These defines are used here and in gsockpm.cpp |
3958ae62 SN |
120 | #define wxSockReadMask 0x01 |
121 | #define wxSockWriteMask 0x02 | |
122 | ||
3958ae62 SN |
123 | void wxApp::HandleSockets() |
124 | { | |
ad9835c9 | 125 | bool pendingEvent = false; |
3958ae62 SN |
126 | |
127 | // Check whether it's time for Gsocket operation | |
128 | if (m_maxSocketHandles > 0 && m_maxSocketNr > 0) | |
129 | { | |
130 | fd_set readfds = m_readfds; | |
131 | fd_set writefds = m_writefds; | |
132 | struct timeval timeout; | |
133 | int i; | |
134 | struct GsocketCallbackInfo | |
135 | *CallbackInfo = (struct GsocketCallbackInfo *)m_sockCallbackInfo; | |
3958ae62 SN |
136 | timeout.tv_sec = 0; |
137 | timeout.tv_usec = 0; | |
138 | if ( select(m_maxSocketNr, &readfds, &writefds, 0, &timeout) > 0) | |
139 | { | |
5c9ee6dd SN |
140 | for (i = m_lastUsedHandle + 1; i != m_lastUsedHandle; |
141 | (i < m_maxSocketNr - 1) ? i++ : (i = 0)) | |
3958ae62 | 142 | { |
3958ae62 SN |
143 | if (FD_ISSET(i, &readfds)) |
144 | { | |
145 | int r; | |
146 | for (r = 0; r < m_maxSocketHandles; r++){ | |
147 | if(CallbackInfo[r].handle == i && | |
148 | CallbackInfo[r].type == wxSockReadMask) | |
149 | break; | |
150 | } | |
151 | if (r < m_maxSocketHandles) | |
152 | { | |
153 | CallbackInfo[r].proc(CallbackInfo[r].gsock); | |
ad9835c9 | 154 | pendingEvent = true; |
3958ae62 SN |
155 | } |
156 | } | |
157 | if (FD_ISSET(i, &writefds)) | |
158 | { | |
159 | int r; | |
160 | for (r = 0; r < m_maxSocketHandles; r++) | |
161 | if(CallbackInfo[r].handle == i && | |
162 | CallbackInfo[r].type == wxSockWriteMask) | |
163 | break; | |
164 | if (r < m_maxSocketHandles) | |
165 | { | |
166 | CallbackInfo[r].proc(CallbackInfo[r].gsock); | |
ad9835c9 | 167 | pendingEvent = true; |
3958ae62 SN |
168 | } |
169 | } | |
170 | } | |
171 | m_lastUsedHandle = i; | |
172 | } | |
173 | if (pendingEvent) | |
5c9ee6dd | 174 | ProcessPendingEvents(); |
3958ae62 SN |
175 | } |
176 | } | |
d88de032 DW |
177 | // --------------------------------------------------------------------------- |
178 | // wxApp | |
179 | // --------------------------------------------------------------------------- | |
180 | ||
d88de032 | 181 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) |
0e320a79 | 182 | |
d88de032 DW |
183 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) |
184 | EVT_IDLE(wxApp::OnIdle) | |
185 | EVT_END_SESSION(wxApp::OnEndSession) | |
186 | EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession) | |
187 | END_EVENT_TABLE() | |
0e320a79 | 188 | |
8df85a61 DW |
189 | // |
190 | // Initialize | |
191 | // | |
05e2b077 | 192 | bool wxApp::Initialize(int& argc, wxChar **argv) |
0e320a79 | 193 | { |
94826170 VZ |
194 | if ( !wxAppBase::Initialize(argc, argv) ) |
195 | return false; | |
196 | ||
7e99520b DW |
197 | #if defined(wxUSE_CONSOLEDEBUG) |
198 | #if wxUSE_CONSOLEDEBUG | |
199 | /***********************************************/ | |
200 | /* Code for using stdout debug */ | |
201 | /* To use it you mast link app as "Window" - EK*/ | |
202 | /***********************************************/ | |
203 | { | |
204 | PPIB pib; | |
205 | PTIB tib; | |
206 | ||
207 | printf("In console\n"); | |
208 | ||
209 | DosGetInfoBlocks(&tib, &pib); | |
210 | /* Try morphing into a PM application. */ | |
211 | // if(pib->pib_ultype == 2) /* VIO */ | |
212 | pib->pib_ultype = 3; | |
213 | } | |
214 | /**********************************************/ | |
215 | /**********************************************/ | |
216 | #endif //wxUSE_CONSOLEDEBUG | |
217 | #endif | |
218 | ||
54ffa107 DW |
219 | // |
220 | // OS2 has to have an anchorblock | |
221 | // | |
94826170 | 222 | vHabmain = WinInitialize(0); |
175bb578 SN |
223 | wxFileName GetPrefix(argv[0]); |
224 | GetPrefix.MakeAbsolute(); | |
225 | wxStandardPaths::SetInstallPrefix(GetPrefix.GetPath()); | |
94826170 VZ |
226 | if (!vHabmain) |
227 | { | |
228 | // TODO: at least give some error message here... | |
229 | wxAppBase::CleanUp(); | |
54ffa107 | 230 | |
ad9835c9 | 231 | return false; |
94826170 VZ |
232 | } |
233 | ||
234 | wxBuffer = new wxChar[1500]; // FIXME; why? | |
54ffa107 DW |
235 | |
236 | // Some people may wish to use this, but | |
237 | // probably it shouldn't be here by default. | |
238 | #ifdef __WXDEBUG__ | |
239 | // wxRedirectIOToConsole(); | |
240 | #endif | |
241 | ||
2461cfa0 | 242 | wxWinHandleHash = new wxWinHashTable(wxKEY_INTEGER, 100); |
d88de032 DW |
243 | |
244 | // This is to foil optimizations in Visual C++ that throw out dummy.obj. | |
245 | // PLEASE DO NOT ALTER THIS. | |
1b3d5e55 | 246 | #if !defined(WXMAKINGDLL) && defined(__VISAGECPP__) |
d88de032 DW |
247 | extern char wxDummyChar; |
248 | if (wxDummyChar) wxDummyChar++; | |
249 | #endif | |
250 | ||
61243a51 | 251 | // wxSetKeyboardHook(TRUE); |
d88de032 | 252 | |
459073a9 | 253 | RegisterWindowClasses(vHabmain); |
94826170 | 254 | |
ad9835c9 | 255 | return true; |
8df85a61 | 256 | } // end of wxApp::Initialize |
d88de032 | 257 | |
7e99520b | 258 | const char* CANTREGISTERCLASS = " Can't register Class "; |
d88de032 DW |
259 | // --------------------------------------------------------------------------- |
260 | // RegisterWindowClasses | |
261 | // --------------------------------------------------------------------------- | |
262 | ||
ad9835c9 | 263 | bool wxApp::RegisterWindowClasses( HAB vHab ) |
d88de032 | 264 | { |
ad9835c9 WS |
265 | ERRORID vError = 0L; |
266 | wxString sError; | |
3b9e3455 | 267 | |
f23208ca | 268 | if (!::WinRegisterClass( vHab |
0fba44b4 | 269 | ,(PSZ)wxFrameClassName |
51c1d535 | 270 | ,wxFrameWndProc |
f9efbe3a | 271 | ,CS_SIZEREDRAW | CS_SYNCPAINT |
a0606634 | 272 | ,sizeof(ULONG) |
f23208ca | 273 | )) |
d88de032 | 274 | { |
914589c2 DW |
275 | vError = ::WinGetLastError(vHab); |
276 | sError = wxPMErrorToStr(vError); | |
9923c37d | 277 | wxLogLastError(sError.c_str()); |
ad9835c9 | 278 | return false; |
d88de032 DW |
279 | } |
280 | ||
f23208ca | 281 | if (!::WinRegisterClass( vHab |
0fba44b4 | 282 | ,(PSZ)wxFrameClassNameNoRedraw |
51c1d535 | 283 | ,wxWndProc |
f23208ca | 284 | ,0 |
51c1d535 | 285 | ,sizeof(ULONG) |
f23208ca | 286 | )) |
d88de032 | 287 | { |
914589c2 DW |
288 | vError = ::WinGetLastError(vHab); |
289 | sError = wxPMErrorToStr(vError); | |
9923c37d | 290 | wxLogLastError(sError.c_str()); |
ad9835c9 | 291 | return false; |
d88de032 DW |
292 | } |
293 | ||
f23208ca | 294 | if (!::WinRegisterClass( vHab |
0fba44b4 | 295 | ,(PSZ)wxMDIFrameClassName |
51c1d535 | 296 | ,wxWndProc |
f6bcfd97 | 297 | ,CS_SIZEREDRAW | CS_MOVENOTIFY | CS_SYNCPAINT |
51c1d535 | 298 | ,sizeof(ULONG) |
f23208ca | 299 | )) |
d88de032 | 300 | { |
914589c2 DW |
301 | vError = ::WinGetLastError(vHab); |
302 | sError = wxPMErrorToStr(vError); | |
9923c37d | 303 | wxLogLastError(sError.c_str()); |
ad9835c9 | 304 | return false; |
d88de032 | 305 | } |
0e320a79 | 306 | |
f23208ca | 307 | if (!::WinRegisterClass( vHab |
0fba44b4 | 308 | ,(PSZ)wxMDIFrameClassNameNoRedraw |
51c1d535 | 309 | ,wxWndProc |
f23208ca | 310 | ,0 |
51c1d535 | 311 | ,sizeof(ULONG) |
f23208ca | 312 | )) |
d88de032 | 313 | { |
914589c2 DW |
314 | vError = ::WinGetLastError(vHab); |
315 | sError = wxPMErrorToStr(vError); | |
9923c37d | 316 | wxLogLastError(sError.c_str()); |
ad9835c9 | 317 | return false; |
d88de032 DW |
318 | } |
319 | ||
f23208ca | 320 | if (!::WinRegisterClass( vHab |
0fba44b4 | 321 | ,(PSZ)wxMDIChildFrameClassName |
51c1d535 | 322 | ,wxWndProc |
f23208ca | 323 | ,CS_MOVENOTIFY | CS_SIZEREDRAW | CS_SYNCPAINT | CS_HITTEST |
51c1d535 | 324 | ,sizeof(ULONG) |
f23208ca | 325 | )) |
d88de032 | 326 | { |
914589c2 DW |
327 | vError = ::WinGetLastError(vHab); |
328 | sError = wxPMErrorToStr(vError); | |
9923c37d | 329 | wxLogLastError(sError.c_str()); |
ad9835c9 | 330 | return false; |
d88de032 DW |
331 | } |
332 | ||
f23208ca | 333 | if (!::WinRegisterClass( vHab |
0fba44b4 | 334 | ,(PSZ)wxMDIChildFrameClassNameNoRedraw |
51c1d535 | 335 | ,wxWndProc |
f23208ca | 336 | ,CS_HITTEST |
51c1d535 | 337 | ,sizeof(ULONG) |
f23208ca | 338 | )) |
d88de032 | 339 | { |
914589c2 DW |
340 | vError = ::WinGetLastError(vHab); |
341 | sError = wxPMErrorToStr(vError); | |
9923c37d | 342 | wxLogLastError(sError.c_str()); |
ad9835c9 | 343 | return false; |
d88de032 DW |
344 | } |
345 | ||
f23208ca | 346 | if (!::WinRegisterClass( vHab |
0fba44b4 | 347 | ,(PSZ)wxPanelClassName |
51c1d535 | 348 | ,wxWndProc |
f23208ca | 349 | ,CS_MOVENOTIFY | CS_SIZEREDRAW | CS_HITTEST | CS_SAVEBITS | CS_SYNCPAINT |
51c1d535 | 350 | ,sizeof(ULONG) |
f23208ca | 351 | )) |
d88de032 | 352 | { |
914589c2 DW |
353 | vError = ::WinGetLastError(vHab); |
354 | sError = wxPMErrorToStr(vError); | |
9923c37d | 355 | wxLogLastError(sError.c_str()); |
ad9835c9 | 356 | return false; |
d88de032 DW |
357 | } |
358 | ||
f23208ca | 359 | if (!::WinRegisterClass( vHab |
0fba44b4 | 360 | ,(PSZ)wxCanvasClassName |
51c1d535 | 361 | ,wxWndProc |
54ffa107 | 362 | ,CS_SIZEREDRAW | CS_HITTEST | CS_SYNCPAINT |
51c1d535 | 363 | ,sizeof(ULONG) |
f23208ca | 364 | )) |
d88de032 | 365 | { |
914589c2 DW |
366 | vError = ::WinGetLastError(vHab); |
367 | sError = wxPMErrorToStr(vError); | |
9923c37d | 368 | wxLogLastError(sError.c_str()); |
ad9835c9 | 369 | return false; |
d88de032 | 370 | } |
0256cfeb | 371 | if (!::WinRegisterClass( vHab |
0fba44b4 | 372 | ,(PSZ)wxCanvasClassNameNR |
0256cfeb DW |
373 | ,wxWndProc |
374 | ,CS_HITTEST | CS_SYNCPAINT | |
375 | ,sizeof(ULONG) | |
376 | )) | |
377 | { | |
378 | vError = ::WinGetLastError(vHab); | |
379 | sError = wxPMErrorToStr(vError); | |
9923c37d | 380 | wxLogLastError(sError.c_str()); |
ad9835c9 | 381 | return false; |
0256cfeb | 382 | } |
ad9835c9 | 383 | return true; |
8df85a61 | 384 | } // end of wxApp::RegisterWindowClasses |
d88de032 | 385 | |
8df85a61 | 386 | // |
77ffb593 | 387 | // Cleans up any wxWidgets internal structures left lying around |
8df85a61 | 388 | // |
0e320a79 DW |
389 | void wxApp::CleanUp() |
390 | { | |
d88de032 DW |
391 | delete[] wxBuffer; |
392 | wxBuffer = NULL; | |
0e320a79 | 393 | |
8df85a61 DW |
394 | // |
395 | // PM-SPECIFIC CLEANUP | |
396 | // | |
0e320a79 | 397 | |
ad9835c9 | 398 | // wxSetKeyboardHook(false); |
9ed0fac8 | 399 | |
d88de032 | 400 | if (wxSTD_FRAME_ICON) |
9ed0fac8 | 401 | ::WinFreeFileIcon(wxSTD_FRAME_ICON); |
d88de032 | 402 | if (wxSTD_MDICHILDFRAME_ICON) |
9ed0fac8 | 403 | ::WinFreeFileIcon(wxSTD_MDICHILDFRAME_ICON); |
d88de032 | 404 | if (wxSTD_MDIPARENTFRAME_ICON) |
9ed0fac8 | 405 | ::WinFreeFileIcon(wxSTD_MDIPARENTFRAME_ICON); |
d88de032 DW |
406 | |
407 | if (wxDEFAULT_FRAME_ICON) | |
9ed0fac8 | 408 | ::WinFreeFileIcon(wxDEFAULT_FRAME_ICON); |
d88de032 | 409 | if (wxDEFAULT_MDICHILDFRAME_ICON) |
9ed0fac8 | 410 | ::WinFreeFileIcon(wxDEFAULT_MDICHILDFRAME_ICON); |
d88de032 | 411 | if (wxDEFAULT_MDIPARENTFRAME_ICON) |
9ed0fac8 DW |
412 | ::WinFreeFileIcon(wxDEFAULT_MDIPARENTFRAME_ICON); |
413 | ||
d88de032 DW |
414 | if ( wxDisableButtonBrush ) |
415 | { | |
416 | // TODO: ::DeleteObject( wxDisableButtonBrush ); | |
417 | } | |
418 | ||
2461cfa0 SN |
419 | delete wxWinHandleHash; |
420 | wxWinHandleHash = NULL; | |
d88de032 | 421 | |
468e327a SN |
422 | // Delete Message queue |
423 | if (wxTheApp->m_hMq) | |
424 | ::WinDestroyMsgQueue(wxTheApp->m_hMq); | |
425 | ||
94826170 | 426 | wxAppBase::CleanUp(); |
8df85a61 | 427 | } // end of wxApp::CleanUp |
0e320a79 | 428 | |
9ed0fac8 | 429 | bool wxApp::OnInitGui() |
d88de032 | 430 | { |
ad9835c9 WS |
431 | ERRORID vError; |
432 | wxString sError; | |
77cd51c3 | 433 | |
19193a2c | 434 | if (!wxAppBase::OnInitGui()) |
ad9835c9 | 435 | return false; |
19193a2c | 436 | |
f23208ca | 437 | m_hMq = ::WinCreateMsgQueue(vHabmain, 0); |
914589c2 DW |
438 | if (!m_hMq) |
439 | { | |
440 | vError = ::WinGetLastError(vHabmain); | |
441 | sError = wxPMErrorToStr(vError); | |
442 | wxLogDebug(sError); | |
ad9835c9 | 443 | return false; |
914589c2 | 444 | } |
19193a2c | 445 | |
ad9835c9 | 446 | return true; |
8df85a61 | 447 | } // end of wxApp::OnInitGui |
0e320a79 | 448 | |
0e320a79 DW |
449 | wxApp::wxApp() |
450 | { | |
9ed0fac8 | 451 | m_nPrintMode = wxPRINT_WINDOWS; |
468e327a | 452 | m_hMq = 0; |
3958ae62 SN |
453 | m_maxSocketHandles = 0; |
454 | m_maxSocketNr = 0; | |
455 | m_sockCallbackInfo = 0; | |
8df85a61 | 456 | } // end of wxApp::wxApp |
d88de032 DW |
457 | |
458 | wxApp::~wxApp() | |
459 | { | |
8df85a61 | 460 | } // end of wxApp::~wxApp |
0e320a79 | 461 | |
ad9835c9 | 462 | bool gbInOnIdle = false; |
2b5f62a0 | 463 | |
4bbd8098 | 464 | void wxApp::OnIdle( wxIdleEvent& WXUNUSED(rEvent) ) |
d88de032 | 465 | { |
9ed0fac8 | 466 | // |
d88de032 | 467 | // Avoid recursion (via ProcessEvent default case) |
9ed0fac8 | 468 | // |
2b5f62a0 | 469 | if (gbInOnIdle) |
d88de032 | 470 | return; |
0e320a79 | 471 | |
6670f564 WS |
472 | gbInOnIdle = true; |
473 | ||
893758d5 DW |
474 | #if wxUSE_DC_CACHEING |
475 | // automated DC cache management: clear the cached DCs and bitmap | |
476 | // if it's likely that the app has finished with them, that is, we | |
477 | // get an idle event and we're not dragging anything. | |
19193a2c KB |
478 | if (!::WinGetKeyState(HWND_DESKTOP, VK_BUTTON1) && |
479 | !::WinGetKeyState(HWND_DESKTOP, VK_BUTTON3) && | |
480 | !::WinGetKeyState(HWND_DESKTOP, VK_BUTTON2)) | |
893758d5 DW |
481 | wxDC::ClearCache(); |
482 | #endif // wxUSE_DC_CACHEING | |
483 | ||
ad9835c9 | 484 | gbInOnIdle = false; |
8df85a61 | 485 | } // end of wxApp::OnIdle |
9779893b | 486 | |
9ed0fac8 DW |
487 | void wxApp::OnEndSession( |
488 | wxCloseEvent& WXUNUSED(rEvent)) | |
0e320a79 | 489 | { |
d88de032 | 490 | if (GetTopWindow()) |
ad9835c9 | 491 | GetTopWindow()->Close(true); |
8df85a61 | 492 | } // end of wxApp::OnEndSession |
0e320a79 | 493 | |
9ed0fac8 | 494 | // |
d88de032 DW |
495 | // Default behaviour: close the application with prompts. The |
496 | // user can veto the close, and therefore the end session. | |
9ed0fac8 | 497 | // |
ad9835c9 | 498 | void wxApp::OnQueryEndSession( wxCloseEvent& rEvent ) |
0e320a79 | 499 | { |
d88de032 DW |
500 | if (GetTopWindow()) |
501 | { | |
9ed0fac8 | 502 | if (!GetTopWindow()->Close(!rEvent.CanVeto())) |
ad9835c9 | 503 | rEvent.Veto(true); |
d88de032 | 504 | } |
8df85a61 | 505 | } // end of wxApp::OnQueryEndSession |
0e320a79 | 506 | |
8df85a61 | 507 | // |
d88de032 | 508 | // Yield to incoming messages |
8df85a61 | 509 | // |
8461e4c2 | 510 | bool wxApp::Yield(bool onlyIfNeeded) |
0e320a79 | 511 | { |
ad9835c9 | 512 | static bool s_inYield = false; |
8461e4c2 VZ |
513 | |
514 | if ( s_inYield ) | |
515 | { | |
516 | if ( !onlyIfNeeded ) | |
517 | { | |
518 | wxFAIL_MSG( _T("wxYield() called recursively") ); | |
519 | } | |
520 | ||
ad9835c9 | 521 | return false; |
8461e4c2 VZ |
522 | } |
523 | ||
ad9835c9 WS |
524 | HAB vHab = 0; |
525 | QMSG vMsg; | |
ee453a16 | 526 | |
8df85a61 DW |
527 | // |
528 | // Disable log flushing from here because a call to wxYield() shouldn't | |
529 | // normally result in message boxes popping up &c | |
530 | // | |
531 | wxLog::Suspend(); | |
532 | ||
ad9835c9 | 533 | s_inYield = true; |
8b63ae37 | 534 | |
8df85a61 | 535 | // |
d88de032 DW |
536 | // We want to go back to the main message loop |
537 | // if we see a WM_QUIT. (?) | |
8df85a61 | 538 | // |
f212e222 | 539 | wxEventLoopGuarantor dummyLoopIfNeeded; |
dde11e60 | 540 | while (::WinPeekMsg(vHab, &vMsg, (HWND)NULL, 0, 0, PM_NOREMOVE) && vMsg.msg != WM_QUIT) |
d88de032 | 541 | { |
8df85a61 DW |
542 | #if wxUSE_THREADS |
543 | wxMutexGuiLeaveOrEnter(); | |
544 | #endif // wxUSE_THREADS | |
598dc9b7 | 545 | if (!wxTheApp->Dispatch()) |
d88de032 DW |
546 | break; |
547 | } | |
8df85a61 | 548 | // |
d88de032 | 549 | // If they are pending events, we must process them. |
8df85a61 DW |
550 | // |
551 | if (wxTheApp) | |
552 | wxTheApp->ProcessPendingEvents(); | |
553 | ||
5c9ee6dd | 554 | HandleSockets(); |
8df85a61 DW |
555 | // |
556 | // Let the logs be flashed again | |
557 | // | |
558 | wxLog::Resume(); | |
ad9835c9 WS |
559 | s_inYield = false; |
560 | return true; | |
8df85a61 | 561 | } // end of wxYield |
d88de032 | 562 | |
3958ae62 SN |
563 | int wxApp::AddSocketHandler(int handle, int mask, |
564 | void (*callback)(void*), void * gsock) | |
565 | { | |
566 | int find; | |
567 | struct GsocketCallbackInfo | |
568 | *CallbackInfo = (struct GsocketCallbackInfo *)m_sockCallbackInfo; | |
569 | ||
570 | for (find = 0; find < m_maxSocketHandles; find++) | |
571 | if (CallbackInfo[find].handle == -1) | |
572 | break; | |
573 | if (find == m_maxSocketHandles) | |
574 | { | |
575 | // Allocate new memory | |
576 | m_sockCallbackInfo = realloc(m_sockCallbackInfo, | |
577 | (m_maxSocketHandles+=10)* | |
578 | sizeof(struct GsocketCallbackInfo)); | |
579 | CallbackInfo = (struct GsocketCallbackInfo *)m_sockCallbackInfo; | |
580 | for (find = m_maxSocketHandles - 10; find < m_maxSocketHandles; find++) | |
581 | CallbackInfo[find].handle = -1; | |
582 | find = m_maxSocketHandles - 10; | |
583 | } | |
584 | CallbackInfo[find].proc = callback; | |
585 | CallbackInfo[find].type = mask; | |
586 | CallbackInfo[find].handle = handle; | |
587 | CallbackInfo[find].gsock = gsock; | |
588 | if (mask & wxSockReadMask) | |
589 | FD_SET(handle, &m_readfds); | |
590 | if (mask & wxSockWriteMask) | |
591 | FD_SET(handle, &m_writefds); | |
592 | if (handle >= m_maxSocketNr) | |
593 | m_maxSocketNr = handle + 1; | |
594 | return find; | |
595 | } | |
596 | ||
597 | void wxApp::RemoveSocketHandler(int handle) | |
598 | { | |
599 | struct GsocketCallbackInfo | |
600 | *CallbackInfo = (struct GsocketCallbackInfo *)m_sockCallbackInfo; | |
601 | if (handle < m_maxSocketHandles) | |
602 | { | |
603 | if (CallbackInfo[handle].type & wxSockReadMask) | |
604 | FD_CLR(CallbackInfo[handle].handle, &m_readfds); | |
605 | if (CallbackInfo[handle].type & wxSockWriteMask) | |
606 | FD_CLR(CallbackInfo[handle].handle, &m_writefds); | |
607 | CallbackInfo[handle].handle = -1; | |
608 | } | |
609 | } | |
610 | ||
8df85a61 DW |
611 | //----------------------------------------------------------------------------- |
612 | // wxWakeUpIdle | |
613 | //----------------------------------------------------------------------------- | |
614 | ||
e2478fde | 615 | void wxApp::WakeUpIdle() |
8df85a61 DW |
616 | { |
617 | // | |
618 | // Send the top window a dummy message so idle handler processing will | |
619 | // start up again. Doing it this way ensures that the idle handler | |
620 | // wakes up in the right thread (see also wxWakeUpMainThread() which does | |
621 | // the same for the main app thread only) | |
622 | // | |
623 | wxWindow* pTopWindow = wxTheApp->GetTopWindow(); | |
624 | ||
625 | if (pTopWindow) | |
626 | { | |
627 | if ( !::WinPostMsg(GetHwndOf(pTopWindow), WM_NULL, (MPARAM)0, (MPARAM)0)) | |
628 | { | |
629 | // | |
630 | // Should never happen | |
631 | // | |
2173b18f | 632 | wxLogLastError(wxT("PostMessage(WM_NULL)")); |
8df85a61 DW |
633 | } |
634 | } | |
635 | } // end of wxWakeUpIdle | |
d88de032 | 636 | |
76990f63 | 637 | HAB wxGetInstance() |
d88de032 | 638 | { |
76990f63 | 639 | return vHabmain; |
d88de032 DW |
640 | } |
641 | ||
6670f564 | 642 | void wxSetInstance( HAB vHab ) |
d88de032 | 643 | { |
76990f63 | 644 | vHabmain = vHab; |
0e320a79 | 645 | } |