- // in order to clip the label widget, we must connect to the size allocate
- // signal of this GtkFrame after the default GTK+'s allocate size function
- g_signal_connect_after (m_widget, "size_allocate",
- G_CALLBACK (gtk_frame_size_allocate), this);
+ if (gtk_check_version(2, 12, 0))
+ {
+ // we connect this signal to perform label-clipping as GTK >= 2.12 does
+ g_signal_connect(m_widget, "size_allocate", G_CALLBACK(size_allocate), NULL);
+ }
+
+ return true;
+}
+
+void wxStaticBox::AddChild( wxWindowBase *child )
+{
+ if (!m_wxwindow)
+ {
+ // make this window a container of other wxWindows by instancing a wxPizza
+ // and packing it into the GtkFrame:
+ m_wxwindow = wxPizza::New();
+ gtk_widget_show( m_wxwindow );
+ gtk_container_add( GTK_CONTAINER (m_widget), m_wxwindow );
+ }