X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/75f661bbc8f9d44f6899aca0fd3afa98224ecf4d..b42468496c00cc7384234093227c03edcf04d84c:/src/gtk/win_gtk.cpp?ds=sidebyside diff --git a/src/gtk/win_gtk.cpp b/src/gtk/win_gtk.cpp index 62bf3e424b..6869fbde37 100644 --- a/src/gtk/win_gtk.cpp +++ b/src/gtk/win_gtk.cpp @@ -30,6 +30,14 @@ For RTL, child widget positions are mirrored in size_allocate. static GtkWidgetClass* parent_class; +static inline GdkWindow* get_backing_window(GtkWidget* widget) +{ + GdkWindow* w = NULL; + if (widget->window && WX_PIZZA(widget)->m_is_scrollable) + w = gdk_window_get_parent(widget->window); + return w; +} + extern "C" { struct wxPizzaClass @@ -47,8 +55,6 @@ static void size_allocate(GtkWidget* widget, GtkAllocation* alloc) widget->allocation.x != alloc->x || widget->allocation.y != alloc->y; - widget->allocation = *alloc; - wxPizza* pizza = WX_PIZZA(widget); int border_x, border_y; pizza->get_border_widths(border_x, border_y); @@ -63,7 +69,8 @@ static void size_allocate(GtkWidget* widget, GtkAllocation* alloc) if (pizza->m_is_scrollable) { // two windows, both same size - gdk_window_move_resize(pizza->m_backing_window, + GdkWindow* backing_window = gdk_window_get_parent(widget->window); + gdk_window_move_resize(backing_window, alloc->x + border_x, alloc->y + border_y, w, h); if (is_resize) gdk_window_resize(widget->window, w, h); @@ -73,14 +80,31 @@ static void size_allocate(GtkWidget* widget, GtkAllocation* alloc) // one window gdk_window_move_resize(widget->window, alloc->x + border_x, alloc->y + border_y, w, h); + + if (is_resize && (border_x || border_y)) + { + // old and new border areas need to be invalidated, + // otherwise they will not be erased/redrawn properly + const GtkAllocation& a1 = widget->allocation; + const GtkAllocation& a2 = *alloc; + GdkRectangle r1 = { a1.x, a1.y, a1.width, a1.height }; + GdkRectangle r2 = { a2.x, a2.y, a2.width, a2.height }; + gdk_window_invalidate_rect(widget->parent->window, &r1, false); + gdk_window_invalidate_rect(widget->parent->window, &r2, false); + } } } + + widget->allocation = *alloc; + // adjust child positions for (const GList* list = pizza->m_fixed.children; list; list = list->next) { const GtkFixedChild* child = static_cast(list->data); if (GTK_WIDGET_VISIBLE(child->widget)) { + GtkAllocation child_old_alloc = child->widget->allocation; + GtkAllocation child_alloc; // note that child positions do not take border into // account, they need to be relative to widget->window, @@ -92,9 +116,7 @@ static void size_allocate(GtkWidget* widget, GtkAllocation* alloc) child_alloc.width = req.width; child_alloc.height = req.height; if (gtk_widget_get_direction(widget) == GTK_TEXT_DIR_RTL) - { child_alloc.x = w - child_alloc.x - child_alloc.width; - } gtk_widget_size_allocate(child->widget, &child_alloc); } } @@ -129,19 +151,19 @@ static void realize(GtkWidget* widget) attr.colormap = gtk_widget_get_colormap(widget); attr.window_type = GDK_WINDOW_CHILD; - pizza->m_backing_window = gdk_window_new( + GdkWindow* backing_window = gdk_window_new( gdk_window_get_parent(widget->window), &attr, GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP); - gdk_window_set_user_data(pizza->m_backing_window, widget); - gdk_window_reparent(widget->window, pizza->m_backing_window, 0, 0); + gdk_window_set_user_data(backing_window, widget); + gdk_window_reparent(widget->window, backing_window, 0, 0); gdk_window_resize(widget->window, w, h); - // Parts of m_backing_window may be exposed temporarily while + // Parts of backing window may be exposed temporarily while // resizing. Setting the backing pixmap to None prevents those // areas from being briefly painted black. - gdk_window_set_back_pixmap(pizza->m_backing_window, NULL, false); + gdk_window_set_back_pixmap(backing_window, NULL, false); } else gdk_window_move_resize(widget->window, x, y, w, h); @@ -150,33 +172,34 @@ static void realize(GtkWidget* widget) static void unrealize(GtkWidget* widget) { + GdkWindow* backing_window = get_backing_window(widget); + parent_class->unrealize(widget); - wxPizza* pizza = WX_PIZZA(widget); - if (pizza->m_backing_window) + if (backing_window) { - gdk_window_set_user_data(pizza->m_backing_window, NULL); - gdk_window_destroy(pizza->m_backing_window); - pizza->m_backing_window = NULL; + gdk_window_set_user_data(backing_window, NULL); + gdk_window_destroy(backing_window); } } static void map(GtkWidget* widget) { - parent_class->map(widget); + GdkWindow* backing_window = get_backing_window(widget); + if (backing_window) + gdk_window_show(backing_window); - wxPizza* pizza = WX_PIZZA(widget); - if (pizza->m_backing_window) - gdk_window_show(pizza->m_backing_window); + parent_class->map(widget); } static void unmap(GtkWidget* widget) { + GdkWindow* backing_window = get_backing_window(widget); + parent_class->unmap(widget); - wxPizza* pizza = WX_PIZZA(widget); - if (pizza->m_backing_window) - gdk_window_hide(pizza->m_backing_window); + if (backing_window) + gdk_window_hide(backing_window); } // not used, but needs to exist so gtk_widget_set_scroll_adjustments will work @@ -273,7 +296,6 @@ GtkWidget* wxPizza::New(long windowStyle) { GtkWidget* widget = GTK_WIDGET(g_object_new(type(), NULL)); wxPizza* pizza = WX_PIZZA(widget); - pizza->m_backing_window = NULL; pizza->m_scroll_x = 0; pizza->m_scroll_y = 0; pizza->m_is_scrollable = (windowStyle & (wxHSCROLL | wxVSCROLL)) != 0; @@ -326,10 +348,11 @@ extern "C" { static void scroll_adjust(GtkWidget* widget, void* data) { const AdjustData* p = static_cast(data); + widget->allocation.x += p->dx; + widget->allocation.y += p->dy; + if (widget->window == p->window) { - widget->allocation.x += p->dx; - widget->allocation.y += p->dy; // GtkFrame requires a queue_resize, otherwise parts of // the frame newly exposed by the scroll are not drawn. // To be safe, do it for all widgets. @@ -360,16 +383,30 @@ void wxPizza::scroll(int dx, int dy) void wxPizza::get_border_widths(int& x, int& y) { x = y = 0; + if (m_border_style == 0) + return; + #ifndef __WXUNIVERSAL__ if (m_border_style & wxBORDER_SIMPLE) x = y = 1; - else if (m_border_style) + else if (m_is_scrollable /* || (m_border_style & wxBORDER_THEME) */) { - GtkWidget *entry_widget = wxGTKPrivate::GetEntryWidget(); - if (entry_widget->style) + GtkWidget *style_widget = wxGTKPrivate::GetTreeWidget(); + + if (style_widget->style) + { + x = style_widget->style->xthickness; + y = style_widget->style->ythickness; + } + } + else + { + GtkWidget *style_widget = wxGTKPrivate::GetEntryWidget(); + + if (style_widget->style) { - x = entry_widget->style->xthickness; - y = entry_widget->style->ythickness; + x = style_widget->style->xthickness; + y = style_widget->style->ythickness; } } #endif