- // these are outside the client area
- wxTopLevelWindowGTK* frame = (wxTopLevelWindowGTK*) parent;
- gtk_pizza_put( GTK_PIZZA(frame->m_mainWidget),
- GTK_WIDGET(child->m_widget),
- child->m_x,
- child->m_y,
- child->m_width,
- child->m_height );
- }
- else
- {
- // these are inside the client area
- gtk_pizza_put( GTK_PIZZA(parent->m_wxwindow),
- GTK_WIDGET(child->m_widget),
- child->m_x,
- child->m_y,
- child->m_width,
- child->m_height );
+ Atom xproperty;
+#if GTK_CHECK_VERSION(2, 2, 0)
+ if (gtk_check_version(2, 2, 0) == NULL)
+ {
+ xproperty = gdk_x11_atom_to_xatom_for_display(
+ gdk_drawable_get_display(event->window), property);
+ }
+ else
+#endif
+ {
+ xproperty = gdk_x11_atom_to_xatom(property);
+ }
+ Atom type;
+ int format;
+ gulong nitems, bytes_after;
+ long* data = NULL;
+ Status status = XGetWindowProperty(
+ gdk_x11_drawable_get_xdisplay(event->window),
+ gdk_x11_drawable_get_xid(event->window),
+ xproperty,
+ 0, 4, false, XA_CARDINAL,
+ &type, &format, &nitems, &bytes_after, (guchar**)&data);
+ if (status == Success && data && nitems == 4)
+ {
+ wxSize& decorSize = GetDecorSize(win->m_gdkDecor);
+ const wxSize size =
+ wxSize(int(data[0] + data[1]), int(data[2] + data[3]));
+ if (decorSize.x != size.x || decorSize.y != size.y)
+ {
+ // Update window size and frame extents cache
+ win->m_width += size.x - decorSize.x;
+ win->m_height += size.y - decorSize.y;
+ if (win->m_width < 0) win->m_width = 0;
+ if (win->m_height < 0) win->m_height = 0;
+ win->GtkUpdateSize();
+ decorSize = size;
+ }
+ }
+ if (data)
+ XFree(data);