]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/common/appcmn.cpp | |
3 | // Purpose: wxAppConsole and wxAppBase methods common to all platforms | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 18.10.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #if defined(__BORLANDC__) | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/app.h" | |
29 | #include "wx/window.h" | |
30 | #include "wx/bitmap.h" | |
31 | #include "wx/log.h" | |
32 | #include "wx/msgdlg.h" | |
33 | #include "wx/confbase.h" | |
34 | #include "wx/utils.h" | |
35 | #endif | |
36 | ||
37 | #include "wx/apptrait.h" | |
38 | #include "wx/cmdline.h" | |
39 | #include "wx/evtloop.h" | |
40 | #include "wx/msgout.h" | |
41 | #include "wx/thread.h" | |
42 | #include "wx/vidmode.h" | |
43 | #include "wx/ptr_scpd.h" | |
44 | ||
45 | #if defined(__WXMSW__) | |
46 | #include "wx/msw/private.h" // includes windows.h for LOGFONT | |
47 | #endif | |
48 | ||
49 | #if wxUSE_FONTMAP | |
50 | #include "wx/fontmap.h" | |
51 | #endif // wxUSE_FONTMAP | |
52 | ||
53 | // DLL options compatibility check: | |
54 | #include "wx/build.h" | |
55 | WX_CHECK_BUILD_OPTIONS("wxCore") | |
56 | ||
57 | WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete; | |
58 | ||
59 | // ---------------------------------------------------------------------------- | |
60 | // wxEventLoopPtr | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
63 | // this defines wxEventLoopPtr | |
64 | wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoop) | |
65 | ||
66 | // ============================================================================ | |
67 | // wxAppBase implementation | |
68 | // ============================================================================ | |
69 | ||
70 | // ---------------------------------------------------------------------------- | |
71 | // initialization | |
72 | // ---------------------------------------------------------------------------- | |
73 | ||
74 | wxAppBase::wxAppBase() | |
75 | { | |
76 | m_topWindow = (wxWindow *)NULL; | |
77 | m_useBestVisual = false; | |
78 | m_isActive = true; | |
79 | ||
80 | m_mainLoop = NULL; | |
81 | ||
82 | // We don't want to exit the app if the user code shows a dialog from its | |
83 | // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete | |
84 | // to Yes initially as this dialog would be the last top level window. | |
85 | // OTOH, if we set it to No initially we'll have to overwrite it with Yes | |
86 | // when we enter our OnRun() because we do want the default behaviour from | |
87 | // then on. But this would be a problem if the user code calls | |
88 | // SetExitOnFrameDelete(false) from OnInit(). | |
89 | // | |
90 | // So we use the special "Later" value which is such that | |
91 | // GetExitOnFrameDelete() returns false for it but which we know we can | |
92 | // safely (i.e. without losing the effect of the users SetExitOnFrameDelete | |
93 | // call) overwrite in OnRun() | |
94 | m_exitOnFrameDelete = Later; | |
95 | } | |
96 | ||
97 | bool wxAppBase::Initialize(int& argcOrig, wxChar **argvOrig) | |
98 | { | |
99 | if ( !wxAppConsole::Initialize(argcOrig, argvOrig) ) | |
100 | return false; | |
101 | ||
102 | #if wxUSE_THREADS | |
103 | wxPendingEventsLocker = new wxCriticalSection; | |
104 | #endif | |
105 | ||
106 | wxInitializeStockLists(); | |
107 | ||
108 | wxBitmap::InitStandardHandlers(); | |
109 | ||
110 | return true; | |
111 | } | |
112 | ||
113 | // ---------------------------------------------------------------------------- | |
114 | // cleanup | |
115 | // ---------------------------------------------------------------------------- | |
116 | ||
117 | wxAppBase::~wxAppBase() | |
118 | { | |
119 | // this destructor is required for Darwin | |
120 | } | |
121 | ||
122 | void wxAppBase::CleanUp() | |
123 | { | |
124 | // clean up all the pending objects | |
125 | DeletePendingObjects(); | |
126 | ||
127 | // and any remaining TLWs (they remove themselves from wxTopLevelWindows | |
128 | // when destroyed, so iterate until none are left) | |
129 | while ( !wxTopLevelWindows.empty() ) | |
130 | { | |
131 | // do not use Destroy() here as it only puts the TLW in pending list | |
132 | // but we want to delete them now | |
133 | delete wxTopLevelWindows.GetFirst()->GetData(); | |
134 | } | |
135 | ||
136 | // undo everything we did in Initialize() above | |
137 | wxBitmap::CleanUpHandlers(); | |
138 | ||
139 | wxStockGDI::DeleteAll(); | |
140 | ||
141 | wxDeleteStockLists(); | |
142 | ||
143 | delete wxTheColourDatabase; | |
144 | wxTheColourDatabase = NULL; | |
145 | ||
146 | delete wxPendingEvents; | |
147 | wxPendingEvents = NULL; | |
148 | ||
149 | #if wxUSE_THREADS | |
150 | delete wxPendingEventsLocker; | |
151 | wxPendingEventsLocker = NULL; | |
152 | ||
153 | #if wxUSE_VALIDATORS | |
154 | // If we don't do the following, we get an apparent memory leak. | |
155 | ((wxEvtHandler&) wxDefaultValidator).ClearEventLocker(); | |
156 | #endif // wxUSE_VALIDATORS | |
157 | #endif // wxUSE_THREADS | |
158 | } | |
159 | ||
160 | // ---------------------------------------------------------------------------- | |
161 | ||
162 | wxWindow* wxAppBase::GetTopWindow() const | |
163 | { | |
164 | wxWindow* window = m_topWindow; | |
165 | if (window == NULL && wxTopLevelWindows.GetCount() > 0) | |
166 | window = wxTopLevelWindows.GetFirst()->GetData(); | |
167 | return window; | |
168 | } | |
169 | ||
170 | wxVideoMode wxAppBase::GetDisplayMode() const | |
171 | { | |
172 | return wxVideoMode(); | |
173 | } | |
174 | ||
175 | #if wxUSE_CMDLINE_PARSER | |
176 | ||
177 | // ---------------------------------------------------------------------------- | |
178 | // GUI-specific command line options handling | |
179 | // ---------------------------------------------------------------------------- | |
180 | ||
181 | #define OPTION_THEME _T("theme") | |
182 | #define OPTION_MODE _T("mode") | |
183 | ||
184 | void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser) | |
185 | { | |
186 | // first add the standard non GUI options | |
187 | wxAppConsole::OnInitCmdLine(parser); | |
188 | ||
189 | // the standard command line options | |
190 | static const wxCmdLineEntryDesc cmdLineGUIDesc[] = | |
191 | { | |
192 | #ifdef __WXUNIVERSAL__ | |
193 | { | |
194 | wxCMD_LINE_OPTION, | |
195 | wxEmptyString, | |
196 | OPTION_THEME, | |
197 | gettext_noop("specify the theme to use"), | |
198 | wxCMD_LINE_VAL_STRING, | |
199 | 0x0 | |
200 | }, | |
201 | #endif // __WXUNIVERSAL__ | |
202 | ||
203 | #if defined(__WXMGL__) | |
204 | // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports | |
205 | // should provide this option. That's why it is in common/appcmn.cpp | |
206 | // and not mgl/app.cpp | |
207 | { | |
208 | wxCMD_LINE_OPTION, | |
209 | wxEmptyString, | |
210 | OPTION_MODE, | |
211 | gettext_noop("specify display mode to use (e.g. 640x480-16)"), | |
212 | wxCMD_LINE_VAL_STRING, | |
213 | 0x0 | |
214 | }, | |
215 | #endif // __WXMGL__ | |
216 | ||
217 | // terminator | |
218 | { | |
219 | wxCMD_LINE_NONE, | |
220 | wxEmptyString, | |
221 | wxEmptyString, | |
222 | wxEmptyString, | |
223 | wxCMD_LINE_VAL_NONE, | |
224 | 0x0 | |
225 | } | |
226 | }; | |
227 | ||
228 | parser.SetDesc(cmdLineGUIDesc); | |
229 | } | |
230 | ||
231 | bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser) | |
232 | { | |
233 | #ifdef __WXUNIVERSAL__ | |
234 | wxString themeName; | |
235 | if ( parser.Found(OPTION_THEME, &themeName) ) | |
236 | { | |
237 | wxTheme *theme = wxTheme::Create(themeName); | |
238 | if ( !theme ) | |
239 | { | |
240 | wxLogError(_("Unsupported theme '%s'."), themeName.c_str()); | |
241 | return false; | |
242 | } | |
243 | ||
244 | // Delete the defaultly created theme and set the new theme. | |
245 | delete wxTheme::Get(); | |
246 | wxTheme::Set(theme); | |
247 | } | |
248 | #endif // __WXUNIVERSAL__ | |
249 | ||
250 | #if defined(__WXMGL__) | |
251 | wxString modeDesc; | |
252 | if ( parser.Found(OPTION_MODE, &modeDesc) ) | |
253 | { | |
254 | unsigned w, h, bpp; | |
255 | if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 ) | |
256 | { | |
257 | wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str()); | |
258 | return false; | |
259 | } | |
260 | ||
261 | if ( !SetDisplayMode(wxVideoMode(w, h, bpp)) ) | |
262 | return false; | |
263 | } | |
264 | #endif // __WXMGL__ | |
265 | ||
266 | return wxAppConsole::OnCmdLineParsed(parser); | |
267 | } | |
268 | ||
269 | #endif // wxUSE_CMDLINE_PARSER | |
270 | ||
271 | // ---------------------------------------------------------------------------- | |
272 | // main event loop implementation | |
273 | // ---------------------------------------------------------------------------- | |
274 | ||
275 | int wxAppBase::MainLoop() | |
276 | { | |
277 | wxEventLoopTiedPtr mainLoop(&m_mainLoop, new wxEventLoop); | |
278 | ||
279 | return m_mainLoop->Run(); | |
280 | } | |
281 | ||
282 | void wxAppBase::ExitMainLoop() | |
283 | { | |
284 | // we should exit from the main event loop, not just any currently active | |
285 | // (e.g. modal dialog) event loop | |
286 | if ( m_mainLoop && m_mainLoop->IsRunning() ) | |
287 | { | |
288 | m_mainLoop->Exit(0); | |
289 | } | |
290 | } | |
291 | ||
292 | bool wxAppBase::Pending() | |
293 | { | |
294 | // use the currently active message loop here, not m_mainLoop, because if | |
295 | // we're showing a modal dialog (with its own event loop) currently the | |
296 | // main event loop is not running anyhow | |
297 | wxEventLoop * const loop = wxEventLoop::GetActive(); | |
298 | ||
299 | return loop && loop->Pending(); | |
300 | } | |
301 | ||
302 | bool wxAppBase::Dispatch() | |
303 | { | |
304 | // see comment in Pending() | |
305 | wxEventLoop * const loop = wxEventLoop::GetActive(); | |
306 | ||
307 | return loop && loop->Dispatch(); | |
308 | } | |
309 | ||
310 | // ---------------------------------------------------------------------------- | |
311 | // OnXXX() hooks | |
312 | // ---------------------------------------------------------------------------- | |
313 | ||
314 | bool wxAppBase::OnInitGui() | |
315 | { | |
316 | #ifdef __WXUNIVERSAL__ | |
317 | if ( !wxTheme::Get() && !wxTheme::CreateDefault() ) | |
318 | return false; | |
319 | #endif // __WXUNIVERSAL__ | |
320 | ||
321 | return true; | |
322 | } | |
323 | ||
324 | int wxAppBase::OnRun() | |
325 | { | |
326 | // see the comment in ctor: if the initial value hasn't been changed, use | |
327 | // the default Yes from now on | |
328 | if ( m_exitOnFrameDelete == Later ) | |
329 | { | |
330 | m_exitOnFrameDelete = Yes; | |
331 | } | |
332 | //else: it has been changed, assume the user knows what he is doing | |
333 | ||
334 | return MainLoop(); | |
335 | } | |
336 | ||
337 | int wxAppBase::OnExit() | |
338 | { | |
339 | #ifdef __WXUNIVERSAL__ | |
340 | delete wxTheme::Set(NULL); | |
341 | #endif // __WXUNIVERSAL__ | |
342 | ||
343 | return wxAppConsole::OnExit(); | |
344 | } | |
345 | ||
346 | void wxAppBase::Exit() | |
347 | { | |
348 | ExitMainLoop(); | |
349 | } | |
350 | ||
351 | wxAppTraits *wxAppBase::CreateTraits() | |
352 | { | |
353 | return new wxGUIAppTraits; | |
354 | } | |
355 | ||
356 | // ---------------------------------------------------------------------------- | |
357 | // misc | |
358 | // ---------------------------------------------------------------------------- | |
359 | ||
360 | void wxAppBase::SetActive(bool active, wxWindow * WXUNUSED(lastFocus)) | |
361 | { | |
362 | if ( active == m_isActive ) | |
363 | return; | |
364 | ||
365 | m_isActive = active; | |
366 | ||
367 | wxActivateEvent event(wxEVT_ACTIVATE_APP, active); | |
368 | event.SetEventObject(this); | |
369 | ||
370 | (void)ProcessEvent(event); | |
371 | } | |
372 | ||
373 | // ---------------------------------------------------------------------------- | |
374 | // idle handling | |
375 | // ---------------------------------------------------------------------------- | |
376 | ||
377 | void wxAppBase::DeletePendingObjects() | |
378 | { | |
379 | wxList::compatibility_iterator node = wxPendingDelete.GetFirst(); | |
380 | while (node) | |
381 | { | |
382 | wxObject *obj = node->GetData(); | |
383 | ||
384 | // remove it from the list first so that if we get back here somehow | |
385 | // during the object deletion (e.g. wxYield called from its dtor) we | |
386 | // wouldn't try to delete it the second time | |
387 | if ( wxPendingDelete.Member(obj) ) | |
388 | wxPendingDelete.Erase(node); | |
389 | ||
390 | delete obj; | |
391 | ||
392 | // Deleting one object may have deleted other pending | |
393 | // objects, so start from beginning of list again. | |
394 | node = wxPendingDelete.GetFirst(); | |
395 | } | |
396 | } | |
397 | ||
398 | // Returns true if more time is needed. | |
399 | bool wxAppBase::ProcessIdle() | |
400 | { | |
401 | wxIdleEvent event; | |
402 | bool needMore = false; | |
403 | wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst(); | |
404 | while (node) | |
405 | { | |
406 | wxWindow* win = node->GetData(); | |
407 | if (SendIdleEvents(win, event)) | |
408 | needMore = true; | |
409 | node = node->GetNext(); | |
410 | } | |
411 | ||
412 | event.SetEventObject(this); | |
413 | (void) ProcessEvent(event); | |
414 | if (event.MoreRequested()) | |
415 | needMore = true; | |
416 | ||
417 | wxUpdateUIEvent::ResetUpdateTime(); | |
418 | ||
419 | return needMore; | |
420 | } | |
421 | ||
422 | // Send idle event to window and all subwindows | |
423 | bool wxAppBase::SendIdleEvents(wxWindow* win, wxIdleEvent& event) | |
424 | { | |
425 | bool needMore = false; | |
426 | ||
427 | win->OnInternalIdle(); | |
428 | ||
429 | if (wxIdleEvent::CanSend(win)) | |
430 | { | |
431 | event.SetEventObject(win); | |
432 | win->GetEventHandler()->ProcessEvent(event); | |
433 | ||
434 | if (event.MoreRequested()) | |
435 | needMore = true; | |
436 | } | |
437 | wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst(); | |
438 | while ( node ) | |
439 | { | |
440 | wxWindow *child = node->GetData(); | |
441 | if (SendIdleEvents(child, event)) | |
442 | needMore = true; | |
443 | ||
444 | node = node->GetNext(); | |
445 | } | |
446 | ||
447 | return needMore; | |
448 | } | |
449 | ||
450 | void wxAppBase::OnIdle(wxIdleEvent& WXUNUSED(event)) | |
451 | { | |
452 | // If there are pending events, we must process them: pending events | |
453 | // are either events to the threads other than main or events posted | |
454 | // with wxPostEvent() functions | |
455 | // GRG: I have moved this here so that all pending events are processed | |
456 | // before starting to delete any objects. This behaves better (in | |
457 | // particular, wrt wxPostEvent) and is coherent with wxGTK's current | |
458 | // behaviour. Changed Feb/2000 before 2.1.14 | |
459 | ProcessPendingEvents(); | |
460 | ||
461 | // 'Garbage' collection of windows deleted with Close(). | |
462 | DeletePendingObjects(); | |
463 | ||
464 | #if wxUSE_LOG | |
465 | // flush the logged messages if any | |
466 | wxLog::FlushActive(); | |
467 | #endif // wxUSE_LOG | |
468 | ||
469 | } | |
470 | ||
471 | // ---------------------------------------------------------------------------- | |
472 | // exceptions support | |
473 | // ---------------------------------------------------------------------------- | |
474 | ||
475 | #if wxUSE_EXCEPTIONS | |
476 | ||
477 | bool wxAppBase::OnExceptionInMainLoop() | |
478 | { | |
479 | throw; | |
480 | ||
481 | // some compilers are too stupid to know that we never return after throw | |
482 | #if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200) | |
483 | return false; | |
484 | #endif | |
485 | } | |
486 | ||
487 | #endif // wxUSE_EXCEPTIONS | |
488 | ||
489 | // ---------------------------------------------------------------------------- | |
490 | // wxGUIAppTraitsBase | |
491 | // ---------------------------------------------------------------------------- | |
492 | ||
493 | #if wxUSE_LOG | |
494 | ||
495 | wxLog *wxGUIAppTraitsBase::CreateLogTarget() | |
496 | { | |
497 | #if wxUSE_LOGGUI | |
498 | return new wxLogGui; | |
499 | #else | |
500 | // we must have something! | |
501 | return new wxLogStderr; | |
502 | #endif | |
503 | } | |
504 | ||
505 | #endif // wxUSE_LOG | |
506 | ||
507 | wxMessageOutput *wxGUIAppTraitsBase::CreateMessageOutput() | |
508 | { | |
509 | // The standard way of printing help on command line arguments (app --help) | |
510 | // is (according to common practice): | |
511 | // - console apps: to stderr (on any platform) | |
512 | // - GUI apps: stderr on Unix platforms (!) | |
513 | // message box under Windows and others | |
514 | #ifdef __UNIX__ | |
515 | return new wxMessageOutputStderr; | |
516 | #else // !__UNIX__ | |
517 | // wxMessageOutputMessageBox doesn't work under Motif | |
518 | #ifdef __WXMOTIF__ | |
519 | return new wxMessageOutputLog; | |
520 | #else | |
521 | return new wxMessageOutputMessageBox; | |
522 | #endif | |
523 | #endif // __UNIX__/!__UNIX__ | |
524 | } | |
525 | ||
526 | #if wxUSE_FONTMAP | |
527 | ||
528 | wxFontMapper *wxGUIAppTraitsBase::CreateFontMapper() | |
529 | { | |
530 | return new wxFontMapper; | |
531 | } | |
532 | ||
533 | #endif // wxUSE_FONTMAP | |
534 | ||
535 | wxRendererNative *wxGUIAppTraitsBase::CreateRenderer() | |
536 | { | |
537 | // use the default native renderer by default | |
538 | return NULL; | |
539 | } | |
540 | ||
541 | #ifdef __WXDEBUG__ | |
542 | ||
543 | bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString& msg) | |
544 | { | |
545 | // under MSW we prefer to use the base class version using ::MessageBox() | |
546 | // even if wxMessageBox() is available because it has less chances to | |
547 | // double fault our app than our wxMessageBox() | |
548 | #if defined(__WXMSW__) || !wxUSE_MSGDLG | |
549 | return wxAppTraitsBase::ShowAssertDialog(msg); | |
550 | #else // wxUSE_MSGDLG | |
551 | // this message is intentionally not translated -- it is for | |
552 | // developpers only | |
553 | wxString msgDlg(msg); | |
554 | msgDlg += wxT("\nDo you want to stop the program?\n") | |
555 | wxT("You can also choose [Cancel] to suppress ") | |
556 | wxT("further warnings."); | |
557 | ||
558 | switch ( wxMessageBox(msgDlg, wxT("wxWidgets Debug Alert"), | |
559 | wxYES_NO | wxCANCEL | wxICON_STOP ) ) | |
560 | { | |
561 | case wxYES: | |
562 | wxTrap(); | |
563 | break; | |
564 | ||
565 | case wxCANCEL: | |
566 | // no more asserts | |
567 | return true; | |
568 | ||
569 | //case wxNO: nothing to do | |
570 | } | |
571 | ||
572 | return false; | |
573 | #endif // !wxUSE_MSGDLG/wxUSE_MSGDLG | |
574 | } | |
575 | ||
576 | #endif // __WXDEBUG__ | |
577 | ||
578 | bool wxGUIAppTraitsBase::HasStderr() | |
579 | { | |
580 | // we consider that under Unix stderr always goes somewhere, even if the | |
581 | // user doesn't always see it under GUI desktops | |
582 | #ifdef __UNIX__ | |
583 | return true; | |
584 | #else | |
585 | return false; | |
586 | #endif | |
587 | } | |
588 | ||
589 | void wxGUIAppTraitsBase::ScheduleForDestroy(wxObject *object) | |
590 | { | |
591 | if ( !wxPendingDelete.Member(object) ) | |
592 | wxPendingDelete.Append(object); | |
593 | } | |
594 | ||
595 | void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject *object) | |
596 | { | |
597 | wxPendingDelete.DeleteObject(object); | |
598 | } | |
599 | ||
600 | #if wxUSE_SOCKETS | |
601 | ||
602 | #if defined(__WINDOWS__) | |
603 | #include "wx/msw/gsockmsw.h" | |
604 | #elif defined(__UNIX__) || defined(__DARWIN__) || defined(__OS2__) | |
605 | #include "wx/unix/gsockunx.h" | |
606 | #elif defined(__WXMAC__) | |
607 | #include <MacHeaders.c> | |
608 | #define OTUNIXERRORS 1 | |
609 | #include <OpenTransport.h> | |
610 | #include <OpenTransportProviders.h> | |
611 | #include <OpenTptInternet.h> | |
612 | ||
613 | #include "wx/mac/gsockmac.h" | |
614 | #else | |
615 | #error "Must include correct GSocket header here" | |
616 | #endif | |
617 | ||
618 | GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable() | |
619 | { | |
620 | #if defined(__WXMAC__) && !defined(__DARWIN__) | |
621 | // NB: wxMac CFM does not have any GUI-specific functions in gsocket.c and | |
622 | // so it doesn't need this table at all | |
623 | return NULL; | |
624 | #else // !__WXMAC__ || __DARWIN__ | |
625 | static GSocketGUIFunctionsTableConcrete table; | |
626 | return &table; | |
627 | #endif // !__WXMAC__ || __DARWIN__ | |
628 | } | |
629 | ||
630 | #endif |