wxTheColourDatabase = NULL;
wxDeleteStockObjects();
-
+
wxDeleteStockLists();
delete wxTheApp;
{
XSynchronize(xdisplay, True);
}
-
+
wxApp::ms_display = (WXDisplay*) xdisplay;
-
+
XSelectInput( xdisplay, XDefaultRootWindow(xdisplay), PropertyChangeMask);
-
+
wxSetDetectableAutoRepeat( TRUE );
if (!wxApp::Initialize())
static Bool expose_predicate (Display *display, XEvent *xevent, XPointer arg)
{
wxExposeInfo *info = (wxExposeInfo*) arg;
-
+
if (info->found_non_matching)
return FALSE;
-
+
if (xevent->xany.type != Expose)
{
info->found_non_matching = TRUE;
return FALSE;
}
-
+
if (xevent->xexpose.window != info->window)
{
info->found_non_matching = TRUE;
return FALSE;
}
-
+
return TRUE;
}
#endif
wxWindow* win = NULL;
Window window = XEventGetWindow(event);
+#if 0
Window actualWindow = window;
+#endif
// Find the first wxWindow that corresponds to this event window
// Because we're receiving events after a window
// has been destroyed, assume a 1:1 match between
// Window and wxWindow, so if it's not in the table,
// it must have been destroyed.
-
+
win = wxGetWindowFromTable(window);
if (!win)
{
#ifdef __WXDEBUG__
wxString windowClass = win->GetClassInfo()->GetClassName();
#endif
-
+
switch (event->type)
{
case Expose:
{
win->GetUpdateRegion().Union( tmp_event.xexpose.x, tmp_event.xexpose.y,
tmp_event.xexpose.width, tmp_event.xexpose.height );
-
+
win->GetClearRegion().Union( tmp_event.xexpose.x, tmp_event.xexpose.y,
tmp_event.xexpose.width, tmp_event.xexpose.height );
}
// rectangles.
win->GetUpdateRegion() = win->GetUpdateRegion().GetBox();
win->GetClearRegion() = win->GetClearRegion().GetBox();
-
+
// If we only have one X11 window, always indicate
- // that borders might have to be redrawn.
+ // that borders might have to be redrawn.
if (win->GetMainWindow() == win->GetClientWindow())
win->NeedUpdateNcAreaInIdle();
return TRUE;
}
-
+
#if !wxUSE_NANOX
case GraphicsExpose:
{
// wxLogDebug( "GraphicsExpose from %s", win->GetName().c_str(),
// event->xgraphicsexpose.x, event->xgraphicsexpose.y,
// event->xgraphicsexpose.width, event->xgraphicsexpose.height);
-
+
win->GetUpdateRegion().Union( event->xgraphicsexpose.x, event->xgraphicsexpose.y,
event->xgraphicsexpose.width, event->xgraphicsexpose.height);
-
+
win->GetClearRegion().Union( event->xgraphicsexpose.x, event->xgraphicsexpose.y,
event->xgraphicsexpose.width, event->xgraphicsexpose.height);
-
+
if (event->xgraphicsexpose.count == 0)
{
// Only erase background, paint in idle time.
wxKeyEvent keyEvent(wxEVT_KEY_DOWN);
wxTranslateKeyEvent(keyEvent, win, window, event);
-
+
// wxLogDebug( "OnKey from %s", win->GetName().c_str() );
-
+
// We didn't process wxEVT_KEY_DOWN, so send wxEVT_CHAR
if (win->GetEventHandler()->ProcessEvent( keyEvent ))
return TRUE;
-
+
keyEvent.SetEventType(wxEVT_CHAR);
if (win->GetEventHandler()->ProcessEvent( keyEvent ))
return TRUE;
-
+
if ( (keyEvent.m_keyCode == WXK_TAB) &&
win->GetParent() && (win->GetParent()->HasFlag( wxTAB_TRAVERSAL)) )
{
wxKeyEvent keyEvent(wxEVT_KEY_UP);
wxTranslateKeyEvent(keyEvent, win, window, event);
-
+
return win->GetEventHandler()->ProcessEvent( keyEvent );
}
case ConfigureNotify:
tlw->SetConfigureGeometry( XConfigureEventGetX(event), XConfigureEventGetY(event),
XConfigureEventGetWidth(event), XConfigureEventGetHeight(event) );
}
-
+
if (win->IsTopLevel() && win->IsShown())
{
wxTopLevelWindowX11 *tlw = (wxTopLevelWindowX11 *) win;
{
wxSizeEvent sizeEvent( wxSize(XConfigureEventGetWidth(event), XConfigureEventGetHeight(event)), win->GetId() );
sizeEvent.SetEventObject( win );
-
+
return win->GetEventHandler()->ProcessEvent( sizeEvent );
}
}
case ResizeRequest:
{
printf( "resize request from %s\n", win->GetName().c_str() );
-
+
Display *disp = (Display*) wxGetDisplay();
XEvent report;
-
+
// to avoid flicker
report = * event;
while( XCheckTypedWindowEvent (disp, actualWindow, ResizeRequest, &report));
-
+
wxSize sz = win->GetSize();
wxSizeEvent sizeEvent(sz, win->GetId());
sizeEvent.SetEventObject(win);
{
if (!win->IsEnabled())
return FALSE;
-
+
// Here we check if the top level window is
// disabled, which is one aspect of modality.
wxWindow *tlw = win;
tlw = tlw->GetParent();
if (tlw && !tlw->IsEnabled())
return FALSE;
-
+
if (event->type == ButtonPress)
{
if ((win != wxWindow::FindFocus()) && win->AcceptsFocus())
// and not here. TODO.
g_prevFocus = wxWindow::FindFocus();
g_nextFocus = win;
-
+
win->SetFocus();
}
}
-
+
#if !wxUSE_NANOX
if (event->type == LeaveNotify || event->type == EnterNotify)
{
#endif
{
// wxLogDebug( "FocusIn from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
-
+
wxFocusEvent focusEvent(wxEVT_SET_FOCUS, win->GetId());
focusEvent.SetEventObject(win);
focusEvent.SetWindow( g_prevFocus );
g_prevFocus = NULL;
-
+
return win->GetEventHandler()->ProcessEvent(focusEvent);
}
return FALSE;
#endif
{
// wxLogDebug( "FocusOut from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
-
+
wxFocusEvent focusEvent(wxEVT_KILL_FOCUS, win->GetId());
focusEvent.SetEventObject(win);
focusEvent.SetWindow( g_nextFocus );
node = node->Next();
}
-
+
return needMore;
}
// now we don't want to try popping up a dialog
// for error messages.
delete wxLog::SetActiveTarget(new wxLogStderr);
-
+
if (!wxAppBase::OnInitGui())
return FALSE;
-
+
GetMainColormap( wxApp::GetDisplay() );
m_maxRequestSize = XMaxRequestSize( (Display*) wxApp::GetDisplay() );
Window wxGetWindowParent(Window window)
{
wxASSERT_MSG( window, "invalid window" );
-
+
return (Window) 0;
Window parent, root = 0;
{
// While the GUI isn't working that well, just print out the
// message.
-#if 0
+#if 0
wxAppBase::OnAssert(file, line, msg);
#else
wxString msg2;