# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([libgtkform], [0.4.1], [azagli@libero.it])
+AC_INIT([libgtkform], [0.5.0], [azagli@libero.it])
AC_CONFIG_SRCDIR([libgtkform/form.c])
AC_CONFIG_HEADER([config.h])
AM_CONDITIONAL(GLADEUI, test $GLADEUI_FOUND = yes)
-PKG_CHECK_MODULES(GTKFORM, [glib-2.0 >= 2.26
- gtk+-2.0 >= 2.12.0
- libxml-2.0 >= 2.0.0
- libgdaex >= 0.4.0
- libgda-4.0 >= 4.2.3])
+PKG_CHECK_MODULES(GTKFORM, [libxml-2.0 >= 2.0.0
+ libgdaex >= 0.5.0])
AC_SUBST(GTKFORM_CFLAGS)
AC_SUBST(GTKFORM_LIBS)
/*
* GtkFormDecoder widget for GTK+
*
- * Copyright (C) 2011-2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2013 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
object_class->set_property = gtk_form_decoder_set_property;
object_class->get_property = gtk_form_decoder_get_property;
- widget_class->size_request = gtk_form_decoder_size_request;
+ /*widget_class->size_request = gtk_form_decoder_size_request;*/
widget_class->size_allocate = gtk_form_decoder_size_allocate;
g_object_class_install_property (object_class, PROP_GDAEX,
GtkWidget *icon;
- priv->hbox = gtk_hbox_new (FALSE, 1);
+ priv->hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 1);
gtk_container_add (GTK_CONTAINER (decoder), priv->hbox);
gtk_widget_show (priv->hbox);
requisition->width = 0;
requisition->height = 0;
- if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+ if (gtk_bin_get_child (bin) && gtk_widget_get_visible (GTK_WIDGET (gtk_bin_get_child (bin))))
{
- gtk_widget_size_request (bin->child, &child_requisition);
+ gtk_widget_size_request (gtk_bin_get_child (bin), &child_requisition);
requisition->width += child_requisition.width;
requisition->height += child_requisition.height;
}
{
GtkFormDecoder *decoder;
GtkBin *bin;
+ GtkAllocation w_allocation;
GtkAllocation relative_allocation;
GtkAllocation child_allocation;
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
relative_allocation.x = border_width;
relative_allocation.y = border_width;
- relative_allocation.width = MAX (1, (gint)widget->allocation.width - relative_allocation.x * 2);
- relative_allocation.height = MAX (1, (gint)widget->allocation.height - relative_allocation.y * 2);
+ gtk_widget_get_allocation (widget, &w_allocation);
+ relative_allocation.width = MAX (1, w_allocation.width - relative_allocation.x * 2);
+ relative_allocation.height = MAX (1, w_allocation.height - relative_allocation.y * 2);
- if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+ if (gtk_bin_get_child (bin) && gtk_widget_get_visible (GTK_WIDGET (gtk_bin_get_child (bin))))
{
child_allocation.x = relative_allocation.x + allocation->x;
child_allocation.y = relative_allocation.y + allocation->y;
child_allocation.width = relative_allocation.width;
child_allocation.height = relative_allocation.height;
- gtk_widget_size_allocate (bin->child, &child_allocation);
+ gtk_widget_size_allocate (gtk_bin_get_child (bin), &child_allocation);
}
}
/*
- * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2013 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
g_signal_connect (G_OBJECT (w), "delete-event",
gtk_main_quit, NULL);
- vbox = gtk_vbox_new (FALSE, 5);
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5);
gtk_container_add (GTK_CONTAINER (w), vbox);
widget_qe = gdaex_query_editor_get_widget (qe);
gtk_box_pack_start (GTK_BOX (vbox), widget_qe, TRUE, TRUE, 5);
- hbtnbox = gtk_hbutton_box_new ();
+ hbtnbox = gtk_button_box_new (GTK_ORIENTATION_HORIZONTAL);
gtk_button_box_set_layout (GTK_BUTTON_BOX (hbtnbox), GTK_BUTTONBOX_END);
- gtk_button_box_set_spacing (GTK_BUTTON_BOX (hbtnbox), 5);
+ gtk_box_set_spacing (GTK_BOX (hbtnbox), 5);
gtk_box_pack_start (GTK_BOX (vbox), hbtnbox, FALSE, FALSE, 5);
btn_clean = gtk_button_new_from_stock ("gtk-clear");