mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
tests-prop-editor:gtk_misc_set_alignment replacing
Replacing the function gtk_misc_set_alignment () with gtk_widget_set_halign () and gtk_widget_set_valign () in tests/prop-editor.c https://bugzilla.gnome.org/show_bug.cgi?id=650762
This commit is contained in:
parent
173cc862a1
commit
ca317c6798
@ -936,7 +936,8 @@ property_widget (GObject *object,
|
||||
g_type_name (G_PARAM_SPEC_TYPE (spec)));
|
||||
prop_edit = gtk_label_new (msg);
|
||||
g_free (msg);
|
||||
gtk_misc_set_alignment (GTK_MISC (prop_edit), 0.0, 0.5);
|
||||
gtk_widget_set_halign (prop_edit, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (prop_edit, GTK_ALIGN_CENTER);
|
||||
}
|
||||
|
||||
if (!can_modify)
|
||||
@ -1007,7 +1008,8 @@ properties_from_type (GObject *object,
|
||||
}
|
||||
|
||||
label = gtk_label_new (g_param_spec_get_nick (spec));
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (label, GTK_ALIGN_CENTER);
|
||||
gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, i, i + 1);
|
||||
|
||||
prop_edit = property_widget (object, spec, can_modify);
|
||||
@ -1080,7 +1082,8 @@ child_properties_from_object (GObject *object)
|
||||
}
|
||||
|
||||
label = gtk_label_new (g_param_spec_get_nick (spec));
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (label, GTK_ALIGN_CENTER);
|
||||
gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, i, i + 1);
|
||||
|
||||
mark_child_property (spec);
|
||||
@ -1136,7 +1139,8 @@ children_from_object (GObject *object)
|
||||
object = c->data;
|
||||
|
||||
label = gtk_label_new ("Child");
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (label, GTK_ALIGN_CENTER);
|
||||
gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, i, i + 1);
|
||||
|
||||
prop_edit = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
|
||||
@ -1191,7 +1195,8 @@ cells_from_object (GObject *object)
|
||||
object = c->data;
|
||||
|
||||
label = gtk_label_new ("Cell");
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (label, GTK_ALIGN_CENTER);
|
||||
gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, i, i + 1);
|
||||
|
||||
prop_edit = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
|
||||
|
Loading…
Reference in New Issue
Block a user