From 9fcdcfbca2f04083c9bd3f79338c872e2d9d6f37 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Wed, 5 Dec 2007 04:47:56 +0000 Subject: [PATCH] fix deferred show when min size has been set git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50477 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/toplevel.cpp | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 4bcfa18638..8d08c1a516 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -405,35 +405,48 @@ static gboolean property_notify_event( wxSize(int(data[0] + data[1]), int(data[2] + data[3])); if (win->m_decorSize != decorSize) { - const wxSize diff = win->m_decorSize - decorSize; + const wxSize diff = decorSize - win->m_decorSize; win->m_decorSize = decorSize; - if (!win->m_deferShow) + bool resized = false; + if (win->m_deferShow) + { + // keep overall size unchanged by shrinking m_widget, + // if min size will allow it + const wxSize minSize = win->GetMinSize(); + int w, h; + win->GTKDoGetSize(&w, &h); + if (w >= minSize.x && h >= minSize.y) + { + gtk_window_resize(GTK_WINDOW(win->m_widget), w, h); + resized = true; + } + } + if (!resized) { // adjust overall size to match change in frame extents - win->m_width -= diff.x; - win->m_height -= diff.y; + win->m_width += diff.x; + win->m_height += diff.y; if (win->m_width < 0) win->m_width = 0; if (win->m_height < 0) win->m_height = 0; - win->m_oldClientWidth = 0; - gtk_widget_queue_resize(win->m_wxwindow); - } - else - { - // Window not yet visible, adjust client size. This would - // cause an obvious size change if window was visible. - int w, h; - win->GTKDoGetSize(&w, &h); - gtk_window_resize(GTK_WINDOW(win->m_widget), w, h); + if (!win->m_deferShow) + { + win->m_oldClientWidth = 0; + gtk_widget_queue_resize(win->m_wxwindow); + } } } if (win->m_deferShow) { // gtk_widget_show() was deferred, do it now win->m_deferShow = false; + win->GetClientSize( + &win->m_oldClientWidth, &win->m_oldClientHeight); wxSizeEvent sizeEvent(win->GetSize(), win->GetId()); sizeEvent.SetEventObject(win); win->HandleWindowEvent(sizeEvent); + gtk_widget_show(win->m_widget); + wxShowEvent showEvent(win->GetId(), true); showEvent.SetEventObject(win); win->HandleWindowEvent(showEvent); -- 2.45.2