mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 18:00:09 +00:00
Revert "Implement extended layout for GtkBin"
This reverts commit 5e8045b14d
.
Conflicts:
gtk/gtkbin.c
This commit is contained in:
parent
24ed2f8aa1
commit
52eabce3c4
62
gtk/gtkbin.c
62
gtk/gtkbin.c
@ -26,7 +26,6 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "gtkbin.h"
|
||||
#include "gtkextendedlayout.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkalias.h"
|
||||
|
||||
@ -40,15 +39,8 @@ static void gtk_bin_forall (GtkContainer *container,
|
||||
gpointer callback_data);
|
||||
static GType gtk_bin_child_type (GtkContainer *container);
|
||||
|
||||
static void gtk_bin_extended_layout_interface_init (GtkExtendedLayoutIface *iface);
|
||||
|
||||
|
||||
static GtkExtendedLayoutIface *parent_extended_layout_iface;
|
||||
|
||||
G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GtkBin, gtk_bin, GTK_TYPE_CONTAINER,
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_EXTENDED_LAYOUT,
|
||||
gtk_bin_extended_layout_interface_init))
|
||||
|
||||
G_DEFINE_ABSTRACT_TYPE (GtkBin, gtk_bin, GTK_TYPE_CONTAINER)
|
||||
|
||||
static void
|
||||
gtk_bin_class_init (GtkBinClass *class)
|
||||
@ -154,57 +146,5 @@ gtk_bin_get_child (GtkBin *bin)
|
||||
return bin->child;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_bin_extended_layout_get_desired_size (GtkExtendedLayout *layout,
|
||||
GtkRequisition *minimum_size,
|
||||
GtkRequisition *natural_size)
|
||||
{
|
||||
GtkBin *bin = GTK_BIN (layout);
|
||||
|
||||
if (bin->child && gtk_widget_get_visible (bin->child))
|
||||
gtk_widget_get_desired_size (bin->child, minimum_size, natural_size);
|
||||
else
|
||||
/* Just let GtkWidgetClass clear the values */
|
||||
parent_extended_layout_iface->get_desired_size (layout, minimum_size, natural_size);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_bin_extended_layout_get_width_for_height (GtkExtendedLayout *layout,
|
||||
gint height,
|
||||
gint *minimum_width,
|
||||
gint *natural_width)
|
||||
{
|
||||
GtkWidget *child;
|
||||
|
||||
child = gtk_bin_get_child (GTK_BIN (layout));
|
||||
|
||||
gtk_extended_layout_get_width_for_height (GTK_EXTENDED_LAYOUT (child),
|
||||
height, minimum_width, natural_width);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_bin_extended_layout_get_height_for_width (GtkExtendedLayout *layout,
|
||||
gint width,
|
||||
gint *minimum_height,
|
||||
gint *natural_height)
|
||||
{
|
||||
GtkWidget *child;
|
||||
|
||||
child = gtk_bin_get_child (GTK_BIN (layout));
|
||||
|
||||
gtk_extended_layout_get_height_for_width (GTK_EXTENDED_LAYOUT (child),
|
||||
width, minimum_height, natural_height);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_bin_extended_layout_interface_init (GtkExtendedLayoutIface *iface)
|
||||
{
|
||||
parent_extended_layout_iface = g_type_interface_peek_parent (iface);
|
||||
|
||||
iface->get_desired_size = gtk_bin_extended_layout_get_desired_size;
|
||||
iface->get_height_for_width = gtk_bin_extended_layout_get_height_for_width;
|
||||
iface->get_width_for_height = gtk_bin_extended_layout_get_width_for_height;
|
||||
}
|
||||
|
||||
#define __GTK_BIN_C__
|
||||
#include "gtkaliasdef.c"
|
||||
|
Loading…
Reference in New Issue
Block a user