1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "app.h"
19 #include "wx/gdicmn.h"
21 #include "wx/dialog.h"
23 #include "wx/module.h"
24 #include "wx/memory.h"
27 #include "wx/evtloop.h"
30 #include "wx/univ/theme.h"
31 #include "wx/univ/renderer.h"
33 #define ABS(a) (((a) < 0) ? -(a) : (a))
36 #include "wx/thread.h"
39 #if wxUSE_WX_RESOURCES
40 #include "wx/resource.h"
43 #include "wx/x11/private.h"
47 //------------------------------------------------------------------------
49 //------------------------------------------------------------------------
51 extern wxList wxPendingDelete
;
53 wxHashTable
*wxWidgetHashTable
= NULL
;
54 wxHashTable
*wxClientWidgetHashTable
= NULL
;
56 wxApp
*wxTheApp
= NULL
;
58 // This is set within wxEntryStart -- too early on
59 // to put these in wxTheApp
60 static int g_newArgc
= 0;
61 static wxChar
** g_newArgv
= NULL
;
62 static bool g_showIconic
= FALSE
;
63 static wxSize g_initialSize
= wxDefaultSize
;
65 // This is required for wxFocusEvent::SetWindow(). It will only
66 // work for focus events which we provoke ourselves (by calling
67 // SetFocus()). It will not work for those events, which X11
69 static wxWindow
*g_nextFocus
= NULL
;
70 static wxWindow
*g_prevFocus
= NULL
;
72 //------------------------------------------------------------------------
74 //------------------------------------------------------------------------
77 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
79 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
81 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
83 // just forward to the default handler for now
84 if (gs_pfnXErrorHandler
)
85 return gs_pfnXErrorHandler(dpy
, xevent
);
91 //------------------------------------------------------------------------
93 //------------------------------------------------------------------------
95 long wxApp::sm_lastMessageTime
= 0;
96 WXDisplay
*wxApp::ms_display
= NULL
;
98 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
100 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
101 EVT_IDLE(wxApp::OnIdle
)
104 bool wxApp::Initialize()
106 wxClassInfo::InitializeClasses();
108 // GL: I'm annoyed ... I don't know where to put this and I don't want to
109 // create a module for that as it's part of the core.
111 wxPendingEventsLocker
= new wxCriticalSection();
114 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
115 wxTheColourDatabase
->Initialize();
117 wxInitializeStockLists();
118 wxInitializeStockObjects();
120 #if wxUSE_WX_RESOURCES
121 wxInitializeResourceSystem();
124 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
125 wxClientWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
127 wxModule::RegisterModules();
128 if (!wxModule::InitializeModules()) return FALSE
;
133 void wxApp::CleanUp()
139 delete wxWidgetHashTable
;
140 wxWidgetHashTable
= NULL
;
141 delete wxClientWidgetHashTable
;
142 wxClientWidgetHashTable
= NULL
;
144 wxModule::CleanUpModules();
146 #if wxUSE_WX_RESOURCES
147 wxCleanUpResourceSystem();
150 delete wxTheColourDatabase
;
151 wxTheColourDatabase
= NULL
;
153 wxDeleteStockObjects();
155 wxDeleteStockLists();
160 wxClassInfo::CleanUpClasses();
163 delete wxPendingEvents
;
164 delete wxPendingEventsLocker
;
167 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
168 // At this point we want to check if there are any memory
169 // blocks that aren't part of the wxDebugContext itself,
170 // as a special case. Then when dumping we need to ignore
171 // wxDebugContext, too.
172 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
174 wxLogDebug("There were memory leaks.");
175 wxDebugContext::Dump();
176 wxDebugContext::PrintStatistics();
180 // do it as the very last thing because everything else can log messages
181 wxLog::DontCreateOnDemand();
182 // do it as the very last thing because everything else can log messages
183 delete wxLog::SetActiveTarget(NULL
);
186 // NB: argc and argv may be changed here, pass by reference!
187 int wxEntryStart( int& argc
, char *argv
[] )
191 // install the X error handler
192 gs_pfnXErrorHandler
= XSetErrorHandler( wxXErrorHandler
);
194 #endif // __WXDEBUG__
196 wxString displayName
;
197 bool syncDisplay
= FALSE
;
199 // Parse the arguments.
200 // We can't use wxCmdLineParser or OnInitCmdLine and friends because
201 // we have to create the Display earlier. If we can find a way to
202 // use the wxAppBase API then I'll be quite happy to change it.
203 g_newArgv
= new wxChar
*[argc
];
206 for (i
= 0; i
< argc
; i
++)
208 wxString
arg(argv
[i
]);
209 if (arg
== wxT("-display"))
214 displayName
= argv
[i
];
218 else if (arg
== wxT("-geometry"))
223 wxString windowGeometry
= argv
[i
];
225 if (wxSscanf(windowGeometry
.c_str(), _T("%dx%d"), &w
, &h
) != 2)
227 wxLogError(_("Invalid geometry specification '%s'"), windowGeometry
.c_str());
231 g_initialSize
= wxSize(w
, h
);
236 else if (arg
== wxT("-sync"))
241 else if (arg
== wxT("-iconic"))
248 // Not eaten by wxWindows, so pass through
249 g_newArgv
[g_newArgc
] = argv
[i
];
253 Display
* xdisplay
= NULL
;
254 if (displayName
.IsEmpty())
255 xdisplay
= XOpenDisplay(NULL
);
257 xdisplay
= XOpenDisplay((char*) displayName
.c_str());
261 wxLogError( _("wxWindows could not open display. Exiting.") );
267 XSynchronize(xdisplay
, True
);
270 wxApp::ms_display
= (WXDisplay
*) xdisplay
;
272 XSelectInput( xdisplay
, XDefaultRootWindow(xdisplay
), PropertyChangeMask
);
274 wxSetDetectableAutoRepeat( TRUE
);
276 if (!wxApp::Initialize())
286 if ( !wxTheApp
->OnInitGui() )
293 int wxEntry( int argc
, char *argv
[] )
295 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
296 // This seems to be necessary since there are 'rogue'
297 // objects present at this point (perhaps global objects?)
298 // Setting a checkpoint will ignore them as far as the
299 // memory checking facility is concerned.
300 // Of course you may argue that memory allocated in globals should be
301 // checked, but this is a reasonable compromise.
302 wxDebugContext::SetCheckpoint();
304 int err
= wxEntryStart(argc
, argv
);
310 if (!wxApp::GetInitializerFunction())
312 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
316 wxTheApp
= (wxApp
*) (* wxApp::GetInitializerFunction()) ();
321 printf( "wxWindows error: wxTheApp == NULL\n" );
325 wxTheApp
->SetClassName(wxFileNameFromPath(argv
[0]));
326 wxTheApp
->SetAppName(wxFileNameFromPath(argv
[0]));
328 // The command line may have been changed
329 // by stripping out -display etc.
332 wxTheApp
->argc
= g_newArgc
;
333 wxTheApp
->argv
= g_newArgv
;
337 wxTheApp
->argc
= argc
;
338 wxTheApp
->argv
= argv
;
340 wxTheApp
->m_showIconic
= g_showIconic
;
341 wxTheApp
->m_initialSize
= g_initialSize
;
344 retValue
= wxEntryInitGui();
346 // Here frames insert themselves automatically into wxTopLevelWindows by
347 // getting created in OnInit().
350 if ( !wxTheApp
->OnInit() )
356 if (wxTheApp
->Initialized()) retValue
= wxTheApp
->OnRun();
359 // flush the logged messages if any
360 wxLog
*pLog
= wxLog::GetActiveTarget();
361 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
364 delete wxLog::SetActiveTarget(new wxLogStderr
); // So dialog boxes aren't used
365 // for further messages
367 if (wxTheApp
->GetTopWindow())
369 delete wxTheApp
->GetTopWindow();
370 wxTheApp
->SetTopWindow(NULL
);
373 wxTheApp
->DeletePendingObjects();
382 // Static member initialization
383 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
390 m_wantDebugOutput
= TRUE
;
394 m_exitOnFrameDelete
= TRUE
;
395 m_mainColormap
= (WXColormap
) NULL
;
396 m_topLevelWidget
= (WXWindow
) NULL
;
397 m_maxRequestSize
= 0;
399 m_showIconic
= FALSE
;
400 m_initialSize
= wxDefaultSize
;
402 m_visualColormap
= NULL
;
411 if (m_visualColormap
)
412 delete [] (XColor
*)m_visualColormap
;
415 bool wxApp::Initialized()
423 int wxApp::MainLoop()
426 m_mainLoop
= new wxEventLoop
;
428 rt
= m_mainLoop
->Run();
436 //-----------------------------------------------------------------------
437 // X11 predicate function for exposure compression
438 //-----------------------------------------------------------------------
443 Bool found_non_matching
;
446 static Bool
expose_predicate (Display
*display
, XEvent
*xevent
, XPointer arg
)
448 wxExposeInfo
*info
= (wxExposeInfo
*) arg
;
450 if (info
->found_non_matching
)
453 if (xevent
->xany
.type
!= Expose
)
455 info
->found_non_matching
= TRUE
;
459 if (xevent
->xexpose
.window
!= info
->window
)
461 info
->found_non_matching
= TRUE
;
470 //-----------------------------------------------------------------------
471 // Processes an X event, returning TRUE if the event was processed.
472 //-----------------------------------------------------------------------
474 bool wxApp::ProcessXEvent(WXEvent
* _event
)
476 XEvent
* event
= (XEvent
*) _event
;
478 wxWindow
* win
= NULL
;
479 Window window
= XEventGetWindow(event
);
481 Window actualWindow
= window
;
484 // Find the first wxWindow that corresponds to this event window
485 // Because we're receiving events after a window
486 // has been destroyed, assume a 1:1 match between
487 // Window and wxWindow, so if it's not in the table,
488 // it must have been destroyed.
490 win
= wxGetWindowFromTable(window
);
493 #if wxUSE_TWO_WINDOWS
494 win
= wxGetClientWindowFromTable(window
);
501 wxString windowClass
= win
->GetClassInfo()->GetClassName();
508 #if wxUSE_TWO_WINDOWS
509 if (event
->xexpose
.window
!= (Window
)win
->GetClientWindow())
513 info
.window
= event
->xexpose
.window
;
514 info
.found_non_matching
= FALSE
;
515 while (XCheckIfEvent( wxGlobalDisplay(), &tmp_event
, expose_predicate
, (XPointer
) &info
))
517 // Don't worry about optimizing redrawing the border etc.
519 win
->NeedUpdateNcAreaInIdle();
524 win
->GetUpdateRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
525 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
526 win
->GetClearRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
527 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
532 info
.window
= event
->xexpose
.window
;
533 info
.found_non_matching
= FALSE
;
534 while (XCheckIfEvent( wxGlobalDisplay(), &tmp_event
, expose_predicate
, (XPointer
) &info
))
536 win
->GetUpdateRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
537 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
539 win
->GetClearRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
540 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
544 // This simplifies the expose and clear areas to simple
546 win
->GetUpdateRegion() = win
->GetUpdateRegion().GetBox();
547 win
->GetClearRegion() = win
->GetClearRegion().GetBox();
549 // If we only have one X11 window, always indicate
550 // that borders might have to be redrawn.
551 if (win
->GetMainWindow() == win
->GetClientWindow())
552 win
->NeedUpdateNcAreaInIdle();
554 // Only erase background, paint in idle time.
555 win
->SendEraseEvents();
565 // wxLogDebug( "GraphicsExpose from %s", win->GetName().c_str(),
566 // event->xgraphicsexpose.x, event->xgraphicsexpose.y,
567 // event->xgraphicsexpose.width, event->xgraphicsexpose.height);
569 win
->GetUpdateRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
570 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
572 win
->GetClearRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
573 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
575 if (event
->xgraphicsexpose
.count
== 0)
577 // Only erase background, paint in idle time.
578 win
->SendEraseEvents();
588 if (!win
->IsEnabled())
591 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
592 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
594 // wxLogDebug( "OnKey from %s", win->GetName().c_str() );
596 // We didn't process wxEVT_KEY_DOWN, so send wxEVT_CHAR
597 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
600 keyEvent
.SetEventType(wxEVT_CHAR
);
601 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
604 if ( (keyEvent
.m_keyCode
== WXK_TAB
) &&
605 win
->GetParent() && (win
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
607 wxNavigationKeyEvent new_event
;
608 new_event
.SetEventObject( win
->GetParent() );
609 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
610 new_event
.SetDirection( (keyEvent
.m_keyCode
== WXK_TAB
) );
611 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
612 new_event
.SetWindowChange( keyEvent
.ControlDown() );
613 new_event
.SetCurrentFocus( win
);
614 return win
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
621 if (!win
->IsEnabled())
624 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
625 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
627 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
629 case ConfigureNotify
:
632 if (event
->update
.utype
== GR_UPDATE_SIZE
)
635 if (win
->IsTopLevel())
637 wxTopLevelWindow
*tlw
= (wxTopLevelWindow
*) win
;
638 tlw
->SetConfigureGeometry( XConfigureEventGetX(event
), XConfigureEventGetY(event
),
639 XConfigureEventGetWidth(event
), XConfigureEventGetHeight(event
) );
642 if (win
->IsTopLevel() && win
->IsShown())
644 wxTopLevelWindowX11
*tlw
= (wxTopLevelWindowX11
*) win
;
645 tlw
->SetNeedResizeInIdle();
649 wxSizeEvent
sizeEvent( wxSize(XConfigureEventGetWidth(event
), XConfigureEventGetHeight(event
)), win
->GetId() );
650 sizeEvent
.SetEventObject( win
);
652 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
661 //wxLogDebug("PropertyNotify: %s", windowClass.c_str());
662 return HandlePropertyChange(_event
);
666 if (!win
->IsEnabled())
669 Atom wm_delete_window
= XInternAtom(wxGlobalDisplay(), "WM_DELETE_WINDOW", True
);
670 Atom wm_protocols
= XInternAtom(wxGlobalDisplay(), "WM_PROTOCOLS", True
);
672 if (event
->xclient
.message_type
== wm_protocols
)
674 if ((Atom
) (event
->xclient
.data
.l
[0]) == wm_delete_window
)
685 printf( "destroy from %s\n", win
->GetName().c_str() );
690 printf( "create from %s\n", win
->GetName().c_str() );
695 printf( "map request from %s\n", win
->GetName().c_str() );
700 printf( "resize request from %s\n", win
->GetName().c_str() );
702 Display
*disp
= (Display
*) wxGetDisplay();
707 while( XCheckTypedWindowEvent (disp
, actualWindow
, ResizeRequest
, &report
));
709 wxSize sz
= win
->GetSize();
710 wxSizeEvent
sizeEvent(sz
, win
->GetId());
711 sizeEvent
.SetEventObject(win
);
713 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
718 case GR_EVENT_TYPE_CLOSE_REQ
:
735 if (!win
->IsEnabled())
738 // Here we check if the top level window is
739 // disabled, which is one aspect of modality.
741 while (tlw
&& !tlw
->IsTopLevel())
742 tlw
= tlw
->GetParent();
743 if (tlw
&& !tlw
->IsEnabled())
746 if (event
->type
== ButtonPress
)
748 if ((win
!= wxWindow::FindFocus()) && win
->AcceptsFocus())
750 // This might actually be done in wxWindow::SetFocus()
751 // and not here. TODO.
752 g_prevFocus
= wxWindow::FindFocus();
760 if (event
->type
== LeaveNotify
|| event
->type
== EnterNotify
)
762 // Throw out NotifyGrab and NotifyUngrab
763 if (event
->xcrossing
.mode
!= NotifyNormal
)
767 wxMouseEvent wxevent
;
768 wxTranslateMouseEvent(wxevent
, win
, window
, event
);
769 return win
->GetEventHandler()->ProcessEvent( wxevent
);
774 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
775 (event
->xfocus
.mode
== NotifyNormal
))
778 // wxLogDebug( "FocusIn from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
780 wxFocusEvent
focusEvent(wxEVT_SET_FOCUS
, win
->GetId());
781 focusEvent
.SetEventObject(win
);
782 focusEvent
.SetWindow( g_prevFocus
);
785 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
793 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
794 (event
->xfocus
.mode
== NotifyNormal
))
797 // wxLogDebug( "FocusOut from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
799 wxFocusEvent
focusEvent(wxEVT_KILL_FOCUS
, win
->GetId());
800 focusEvent
.SetEventObject(win
);
801 focusEvent
.SetWindow( g_nextFocus
);
803 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
811 //wxString eventName = wxGetXEventName(XEvent& event);
812 //wxLogDebug(wxT("Event %s not handled"), eventName.c_str());
821 // Returns TRUE if more time is needed.
822 // Note that this duplicates wxEventLoopImpl::SendIdleEvent
823 // but ProcessIdle may be needed by apps, so is kept.
824 bool wxApp::ProcessIdle()
827 event
.SetEventObject(this);
830 return event
.MoreRequested();
833 void wxApp::ExitMainLoop()
839 // Is a message/event pending?
840 bool wxApp::Pending()
842 return wxEventLoop::GetActive()->Pending();
845 // Dispatch a message.
846 void wxApp::Dispatch()
848 wxEventLoop::GetActive()->Dispatch();
851 // This should be redefined in a derived class for
852 // handling property change events for XAtom IPC.
853 bool wxApp::HandlePropertyChange(WXEvent
*event
)
855 // by default do nothing special
856 // TODO: what to do for X11
857 // XtDispatchEvent((XEvent*) event);
861 void wxApp::OnIdle(wxIdleEvent
& event
)
863 static bool s_inOnIdle
= FALSE
;
865 // Avoid recursion (via ProcessEvent default case)
871 // Resend in the main thread events which have been prepared in other
873 ProcessPendingEvents();
875 // 'Garbage' collection of windows deleted with Close()
876 DeletePendingObjects();
878 // Send OnIdle events to all windows
879 bool needMore
= SendIdleEvents();
882 event
.RequestMore(TRUE
);
889 // **** please implement me! ****
890 // Wake up the idle handler processor, even if it is in another thread...
894 // Send idle event to all top-level windows
895 bool wxApp::SendIdleEvents()
897 bool needMore
= FALSE
;
899 wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
902 wxWindow
* win
= node
->GetData();
903 if (SendIdleEvents(win
))
905 node
= node
->GetNext();
911 // Send idle event to window and all subwindows
912 bool wxApp::SendIdleEvents(wxWindow
* win
)
914 bool needMore
= FALSE
;
917 event
.SetEventObject(win
);
919 win
->GetEventHandler()->ProcessEvent(event
);
921 win
->OnInternalIdle();
923 if (event
.MoreRequested())
926 wxNode
* node
= win
->GetChildren().First();
929 wxWindow
* win
= (wxWindow
*) node
->Data();
930 if (SendIdleEvents(win
))
939 void wxApp::DeletePendingObjects()
941 wxNode
*node
= wxPendingDelete
.First();
944 wxObject
*obj
= (wxObject
*)node
->Data();
948 if (wxPendingDelete
.Member(obj
))
951 // Deleting one object may have deleted other pending
952 // objects, so start from beginning of list again.
953 node
= wxPendingDelete
.First();
957 static void wxCalcPrecAndShift( unsigned long mask
, int *shift
, int *prec
)
962 while (!(mask
& 0x1))
975 // Create display, and other initialization
976 bool wxApp::OnInitGui()
978 // Eventually this line will be removed, but for
979 // now we don't want to try popping up a dialog
980 // for error messages.
981 delete wxLog::SetActiveTarget(new wxLogStderr
);
983 if (!wxAppBase::OnInitGui())
986 GetMainColormap( wxApp::GetDisplay() );
988 m_maxRequestSize
= XMaxRequestSize( (Display
*) wxApp::GetDisplay() );
990 // Get info about the current visual. It is enough
991 // to do this once here unless we support different
992 // visuals, displays and screens. Given that wxX11
993 // mostly for embedded things, that is no real
995 Display
*xdisplay
= (Display
*) wxApp::GetDisplay();
996 int xscreen
= DefaultScreen(xdisplay
);
997 Visual
* xvisual
= DefaultVisual(xdisplay
,xscreen
);
998 int xdepth
= DefaultDepth(xdisplay
, xscreen
);
1000 XVisualInfo vinfo_template
;
1001 vinfo_template
.visual
= xvisual
;
1002 vinfo_template
.visualid
= XVisualIDFromVisual( xvisual
);
1003 vinfo_template
.depth
= xdepth
;
1006 XVisualInfo
*vi
= XGetVisualInfo( xdisplay
, VisualIDMask
|VisualDepthMask
, &vinfo_template
, &nitem
);
1007 wxASSERT_MSG( vi
, wxT("No visual info") );
1009 m_visualType
= vi
->visual
->c_class
;
1010 m_visualScreen
= vi
->screen
;
1012 m_visualRedMask
= vi
->red_mask
;
1013 m_visualGreenMask
= vi
->green_mask
;
1014 m_visualBlueMask
= vi
->blue_mask
;
1016 if (m_visualType
!= GrayScale
&& m_visualType
!= PseudoColor
)
1018 wxCalcPrecAndShift( m_visualRedMask
, &m_visualRedShift
, &m_visualRedPrec
);
1019 wxCalcPrecAndShift( m_visualGreenMask
, &m_visualGreenShift
, &m_visualGreenPrec
);
1020 wxCalcPrecAndShift( m_visualBlueMask
, &m_visualBlueShift
, &m_visualBluePrec
);
1023 m_visualDepth
= xdepth
;
1025 xdepth
= m_visualRedPrec
+ m_visualGreenPrec
+ m_visualBluePrec
;
1027 m_visualColormapSize
= vi
->colormap_size
;
1031 if (m_visualDepth
> 8)
1034 m_visualColormap
= new XColor
[m_visualColormapSize
];
1035 XColor
* colors
= (XColor
*) m_visualColormap
;
1037 for (int i
= 0; i
< m_visualColormapSize
; i
++)
1038 colors
[i
].pixel
= i
;
1040 XQueryColors( xdisplay
, DefaultColormap(xdisplay
,xscreen
), colors
, m_visualColormapSize
);
1042 m_colorCube
= (unsigned char*)malloc(32 * 32 * 32);
1044 for (int r
= 0; r
< 32; r
++)
1046 for (int g
= 0; g
< 32; g
++)
1048 for (int b
= 0; b
< 32; b
++)
1050 int rr
= (r
<< 3) | (r
>> 2);
1051 int gg
= (g
<< 3) | (g
>> 2);
1052 int bb
= (b
<< 3) | (b
>> 2);
1058 int max
= 3 * 65536;
1060 for (int i
= 0; i
< m_visualColormapSize
; i
++)
1062 int rdiff
= ((rr
<< 8) - colors
[i
].red
);
1063 int gdiff
= ((gg
<< 8) - colors
[i
].green
);
1064 int bdiff
= ((bb
<< 8) - colors
[i
].blue
);
1065 int sum
= ABS (rdiff
) + ABS (gdiff
) + ABS (bdiff
);
1068 index
= i
; max
= sum
;
1074 // assume 8-bit true or static colors. this really exists
1075 index
= (r
>> (5 - m_visualRedPrec
)) << m_visualRedShift
;
1076 index
|= (g
>> (5 - m_visualGreenPrec
)) << m_visualGreenShift
;
1077 index
|= (b
>> (5 - m_visualBluePrec
)) << m_visualBlueShift
;
1079 m_colorCube
[ (r
*1024) + (g
*32) + b
] = index
;
1087 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
1089 if (!display
) /* Must be called first with non-NULL display */
1090 return m_mainColormap
;
1092 int defaultScreen
= DefaultScreen((Display
*) display
);
1093 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
1095 Colormap c
= DefaultColormapOfScreen(screen
);
1097 if (!m_mainColormap
)
1098 m_mainColormap
= (WXColormap
) c
;
1100 return (WXColormap
) c
;
1103 Window
wxGetWindowParent(Window window
)
1105 wxASSERT_MSG( window
, "invalid window" );
1109 Window parent
, root
= 0;
1113 unsigned int noChildren
= 0;
1115 Window
* children
= NULL
;
1117 // #define XQueryTree(d,w,r,p,c,nc) GrQueryTree(w,p,c,nc)
1122 XQueryTree((Display
*) wxGetDisplay(), window
, & root
, & parent
,
1123 & children
, & noChildren
);
1136 retValue
= wxTheApp
->OnExit();
1140 * Exit in some platform-specific way. Not recommended that the app calls this:
1141 * only for emergencies.
1146 // Yield to other processes
1148 bool wxApp::Yield(bool onlyIfNeeded
)
1150 bool s_inYield
= FALSE
;
1154 if ( !onlyIfNeeded
)
1156 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1164 // Make sure we have an event loop object,
1165 // or Pending/Dispatch will fail
1166 wxEventLoop
* eventLoop
= wxEventLoop::GetActive();
1167 wxEventLoop
* newEventLoop
= NULL
;
1170 newEventLoop
= new wxEventLoop
;
1171 wxEventLoop::SetActive(newEventLoop
);
1174 while (wxTheApp
&& wxTheApp
->Pending())
1175 wxTheApp
->Dispatch();
1178 wxTimer::NotifyTimers();
1184 wxEventLoop::SetActive(NULL
);
1185 delete newEventLoop
;
1193 void wxApp::OnAssert(const wxChar
*file
, int line
, const wxChar
*msg
)
1195 // While the GUI isn't working that well, just print out the
1198 wxAppBase::OnAssert(file
, line
, msg
);
1201 msg2
.Printf("At file %s:%d: %s", file
, line
, msg
);