X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/59db9cfaa723f0dad93226b5ca858e087e291635..588b8b7037d2b1c736863c43952b4d3a05c6cf2f:/src/x11/toplevel.cpp diff --git a/src/x11/toplevel.cpp b/src/x11/toplevel.cpp index f1981aeb72..e63799559c 100644 --- a/src/x11/toplevel.cpp +++ b/src/x11/toplevel.cpp @@ -62,7 +62,7 @@ void wxTopLevelWindowX11::Init() m_fsIsMaximized = FALSE; m_fsIsShowing = FALSE; - m_focusWidget = NULL; + m_needResizeInIdle = FALSE; } bool wxTopLevelWindowX11::Create(wxWindow *parent, @@ -127,7 +127,9 @@ bool wxTopLevelWindowX11::Create(wxWindow *parent, // TODO: if we want no border, caption etc., // I think we set this to True to remove decorations // No. RR. - xattributes.override_redirect = False; + // Yes :-) JACS (because some WMs don't respect + // the hints) + xattributes.override_redirect = (style & wxNO_BORDER) ? True : False; #endif #if wxUSE_NANOX @@ -225,6 +227,20 @@ wxTopLevelWindowX11::~wxTopLevelWindowX11() } } +void wxTopLevelWindowX11::OnInternalIdle() +{ + wxWindow::OnInternalIdle(); + + if (m_needResizeInIdle) + { + wxSizeEvent event( GetClientSize(), GetId() ); + event.SetEventObject( this ); + GetEventHandler()->ProcessEvent( event ); + + m_needResizeInIdle = FALSE; + } +} + // ---------------------------------------------------------------------------- // wxTopLevelWindowX11 showing // ---------------------------------------------------------------------------- @@ -235,12 +251,28 @@ bool wxTopLevelWindowX11::Show(bool show) // else there's no initial size. #if wxUSE_NANOX if (show) +#else + if (show && m_needResizeInIdle) +#endif { wxSizeEvent event(GetSize(), GetId()); event.SetEventObject(this); GetEventHandler()->ProcessEvent(event); + + m_needResizeInIdle = FALSE; + } + + if (show) + { + // This does the layout _before_ the + // window is shown, else the items are + // drawn first at the wrong positions, + // then at the correct positions. + if (GetAutoLayout()) + { + Layout(); + } } -#endif return wxWindowX11::Show(show); } @@ -497,7 +529,7 @@ bool wxSetWMDecorations(Window w, long style) hints.decorations |= MWM_DECOR_TITLE; } - if ((style & wxTHICK_FRAME) || (style & wxSIMPLE_BORDER) || (style & wxCAPTION)) + if ((style & wxTHICK_FRAME) || (style & wxCAPTION)) { // wxLogDebug("MWM_DECOR_BORDER"); hints.flags |= MWM_HINTS_DECORATIONS; @@ -572,6 +604,7 @@ void wxTopLevelWindowX11::DoSetClientSize(int width, int height) { wxWindowX11::DoSetClientSize(width, height); +#if !wxUSE_NANOX // Set the top-level window size XSizeHints size_hints; wxSize oldSize = GetSize(); @@ -594,34 +627,70 @@ void wxTopLevelWindowX11::DoSetClientSize(int width, int height) wxSize newSize = GetSize(); wxLogDebug("New size is %d, %d", (int) newSize.x, (int) newSize.y); #endif - +#endif +} + +void wxTopLevelWindowX11::DoSetSize(int x, int y, int width, int height, int sizeFlags) +{ #if 0 - if (!GetMainWindow()) - return; + // wxLogDebug( "Setting pos: %d, %d", x, y ); + wxWindowX11::DoSetSize(x, y, width, height, sizeFlags); +#endif + XSync(wxGlobalDisplay(), False); + Window window = (Window) m_mainWidget; + if (!window) + return ; + + Display *display = (Display*) GetXDisplay(); + Window root = RootWindowOfScreen(DefaultScreenOfDisplay(display)); + Window parent_window = window, + next_parent = window; + + // search for the parent that is child of ROOT, because the WM may + // reparent twice and notify only the next parent (like FVWM) + while (next_parent != root) { + Window *theChildren; +#if wxUSE_NANOX + GR_COUNT n; +#else + unsigned int n; +#endif + parent_window = next_parent; + XQueryTree(display, parent_window, &root, + &next_parent, &theChildren, &n); + XFree(theChildren); // not needed + } XWindowChanges windowChanges; - int valueMask = 0; + windowChanges.x = x; + windowChanges.y = y; + windowChanges.width = width; + windowChanges.height = height; + windowChanges.stack_mode = 0; + int valueMask = CWX | CWY | CWWidth | CWHeight; + if (x != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) + { + valueMask |= CWX; + } + if (y != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) + { + valueMask |= CWY; + } if (width != -1) { - windowChanges.width = width ; + windowChanges.width = wxMax(1, width); valueMask |= CWWidth; } if (height != -1) { - windowChanges.height = height ; + windowChanges.height = wxMax(1, height); valueMask |= CWHeight; } - XConfigureWindow(wxGlobalDisplay(), (Window) GetMainWindow(), - valueMask, & windowChanges); -#endif -} -void wxTopLevelWindowX11::DoSetSize(int x, int y, int width, int height, int sizeFlags) -{ - // wxLogDebug( "Setting pos: %d, %d", x, y ); - wxWindowX11::DoSetSize(x, y, width, height, sizeFlags); + XConfigureWindow( display, parent_window, valueMask, &windowChanges ); +#if !wxUSE_NANOX XSizeHints size_hints; size_hints.flags = 0; if (x > -1 && y > -1) @@ -640,62 +709,6 @@ void wxTopLevelWindowX11::DoSetSize(int x, int y, int width, int height, int siz // box of the minimal sample probably won't be resized right. XSync(wxGlobalDisplay(), False); XSync(wxGlobalDisplay(), False); - -#if 0 - wxLogDebug("DoSetSize: Tried to set size to %d, %d", (int) size_hints.width, (int) size_hints.height); - - XSync(wxGlobalDisplay(), False); - wxSize newSize = GetSize(); - wxLogDebug("New size is %d, %d", (int) newSize.x, (int) newSize.y); -#endif - -#if 0 - wxPoint pt = GetPosition(); - // wxLogDebug( "After, pos: %d, %d", pt.x, pt.y ); - - XSync(wxGlobalDisplay(), False); - int w, h; - GetSize(& w, & h); - wxString msg; - msg.Printf("Before setting size: %d, %d", w, h); - wxLogDebug(msg); - if (!GetMainWindow()) - return; - - XWindowChanges windowChanges; - int valueMask = 0; - - if (x != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) - { - int yy = 0; - AdjustForParentClientOrigin( x, yy, sizeFlags); - windowChanges.x = x; - valueMask |= CWX; - } - if (y != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) - { - int xx = 0; - AdjustForParentClientOrigin( xx, y, sizeFlags); - windowChanges.y = y; - valueMask |= CWY; - } - if (width != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) - { - windowChanges.width = width /* - m_borderSize*2 */; - valueMask |= CWWidth; - } - if (height != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) - { - windowChanges.height = height /* -m_borderSize*2*/; - valueMask |= CWHeight; - } - - XConfigureWindow(wxGlobalDisplay(), (Window) GetMainWindow(), - valueMask, & windowChanges); - XSync(wxGlobalDisplay(), False); - GetSize(& w, & h); - msg.Printf("Tried to set to %d, %d. After setting size: %d, %d", width, height, w, h); - wxLogDebug(msg); #endif } @@ -703,28 +716,46 @@ void wxTopLevelWindowX11::DoGetPosition(int *x, int *y) const { XSync(wxGlobalDisplay(), False); Window window = (Window) m_mainWidget; - if (window) - { - int offsetX = 0; - int offsetY = 0; - -#if !wxUSE_NANOX - // wxLogDebug("Translating..."); - Window childWindow; - XTranslateCoordinates(wxGlobalDisplay(), window, XDefaultRootWindow(wxGlobalDisplay()), - 0, 0, & offsetX, & offsetY, & childWindow); - - // wxLogDebug("Offset: %d, %d", offsetX, offsetY); + if (!window) + return ; + + Display *display = (Display*) GetXDisplay(); + Window root = RootWindowOfScreen(DefaultScreenOfDisplay(display)); + Window parent_window = window, + next_parent = window; + + // search for the parent that is child of ROOT, because the WM may + // reparent twice and notify only the next parent (like FVWM) + while (next_parent != root) { + Window *theChildren; +#if wxUSE_NANOX + GR_COUNT n; +#else + unsigned int n; #endif - - XWindowAttributes attr; - Status status = XGetWindowAttributes(wxGlobalDisplay(), window, & attr); - wxASSERT(status); - - if (status) - { - *x = attr.x + offsetX; - *y = attr.y + offsetY; - } + parent_window = next_parent; + XQueryTree(display, parent_window, &root, + &next_parent, &theChildren, &n); + XFree(theChildren); // not needed } +#if 0 + int xx, yy; unsigned int dummy; + XGetGeometry(display, parent_window, &root, + &xx, &yy, &dummy, &dummy, &dummy, &dummy); + if (x) *x = xx; + if (y) *y = yy; +#else + XWindowAttributes attr; + Status status = XGetWindowAttributes((Display*) GetXDisplay(), parent_window, & attr); + if (status) + { + if (x) *x = attr.x; + if (y) *y = attr.y; + } + else + { + if (x) *x = 0; + if (y) *y = 0; + } +#endif }