summaryrefslogtreecommitdiff
path: root/tests/testoverlaystyleclass.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-05 12:15:36 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-06 14:27:45 -0400
commit82e92582bd1d852f6e9762609a3ee5a53f4a65d0 (patch)
tree645331928383eaeb7b503f4d3bf5367691f832eb /tests/testoverlaystyleclass.c
parent92bcf4c7a7c783b4cc01c8371e340efbea1b2e9e (diff)
downloadgtk+-82e92582bd1d852f6e9762609a3ee5a53f4a65d0.tar.gz
tests: Stop using ::size-allocate
Diffstat (limited to 'tests/testoverlaystyleclass.c')
-rw-r--r--tests/testoverlaystyleclass.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/testoverlaystyleclass.c b/tests/testoverlaystyleclass.c
index 8d61b57158..37a8e08c33 100644
--- a/tests/testoverlaystyleclass.c
+++ b/tests/testoverlaystyleclass.c
@@ -1,22 +1,5 @@
#include <gtk/gtk.h>
-static void
-child_size_allocate (GtkWidget *child,
- GdkRectangle *allocation,
- gint baseline,
- gpointer user_data)
-{
- GtkStyleContext *context;
- context = gtk_widget_get_style_context (child);
-
- g_print ("Child %p\nHas left? %d\nHas right? %d\nHas top? %d\nHas bottom? %d\n",
- child,
- gtk_style_context_has_class (context, "left"),
- gtk_style_context_has_class (context, "right"),
- gtk_style_context_has_class (context, "top"),
- gtk_style_context_has_class (context, "bottom"));
-}
-
static gboolean
overlay_get_child_position (GtkOverlay *overlay,
GtkWidget *child,
@@ -94,9 +77,6 @@ main (int argc, char *argv[])
gtk_widget_set_valign (child, GTK_ALIGN_END);
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), child);
- g_signal_connect (child, "size-allocate",
- G_CALLBACK (child_size_allocate), overlay);
-
child = gtk_label_new (NULL);
str = g_strdup_printf ("%p", child);
gtk_label_set_text (GTK_LABEL (child), str);
@@ -106,9 +86,6 @@ main (int argc, char *argv[])
gtk_widget_set_valign (child, GTK_ALIGN_START);
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), child);
- g_signal_connect (child, "size-allocate",
- G_CALLBACK (child_size_allocate), overlay);
-
child = gtk_label_new (NULL);
str = g_strdup_printf ("%p", child);
gtk_label_set_text (GTK_LABEL (child), str);
@@ -118,9 +95,6 @@ main (int argc, char *argv[])
gtk_widget_set_valign (child, GTK_ALIGN_CENTER);
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), child);
- g_signal_connect (child, "size-allocate",
- G_CALLBACK (child_size_allocate), overlay);
-
child = gtk_label_new (NULL);
str = g_strdup_printf ("%p", child);
gtk_label_set_text (GTK_LABEL (child), str);
@@ -132,9 +106,6 @@ main (int argc, char *argv[])
gtk_widget_set_valign (child, GTK_ALIGN_START);
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), child);
- g_signal_connect (child, "size-allocate",
- G_CALLBACK (child_size_allocate), overlay);
-
child = gtk_label_new (NULL);
str = g_strdup_printf ("%p", child);
gtk_label_set_text (GTK_LABEL (child), str);
@@ -144,8 +115,6 @@ main (int argc, char *argv[])
gtk_widget_set_valign (child, GTK_ALIGN_START);
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), child);
- g_signal_connect (child, "size-allocate",
- G_CALLBACK (child_size_allocate), overlay);
g_signal_connect (overlay, "get-child-position",
G_CALLBACK (overlay_get_child_position), child);