test-bind: Fix colors and set the name of the boxes

This commit is contained in:
Emmanuele Bassi 2010-09-17 12:08:52 +01:00
parent 8ca47e3b20
commit bdcac5617b

View File

@ -8,7 +8,7 @@
static ClutterActor *rects[N_COLORS] = { NULL, }; static ClutterActor *rects[N_COLORS] = { NULL, };
static const gchar *colors[N_COLORS] = { static const gchar *colors[N_COLORS] = {
"#cc0000", "#3465a4", "#73d216" "#cc0000", "#73d216", "#3465a4"
}; };
static gboolean is_expanded = FALSE; static gboolean is_expanded = FALSE;
@ -83,6 +83,7 @@ test_bind_main (int argc, char *argv[])
clutter_actor_add_constraint_with_name (rects[1], "green-x", constraint); clutter_actor_add_constraint_with_name (rects[1], "green-x", constraint);
constraint = clutter_bind_constraint_new (rects[0], CLUTTER_BIND_Y, 0.0); constraint = clutter_bind_constraint_new (rects[0], CLUTTER_BIND_Y, 0.0);
clutter_actor_add_constraint_with_name (rects[1], "green-y", constraint); clutter_actor_add_constraint_with_name (rects[1], "green-y", constraint);
clutter_actor_set_name (rects[1], "green rect");
/* third rectangle */ /* third rectangle */
clutter_color_from_string (&color, colors[2]); clutter_color_from_string (&color, colors[2]);
@ -94,6 +95,7 @@ test_bind_main (int argc, char *argv[])
clutter_actor_add_constraint_with_name (rects[2], "blue-x", constraint); clutter_actor_add_constraint_with_name (rects[2], "blue-x", constraint);
constraint = clutter_bind_constraint_new (rects[0], CLUTTER_BIND_Y, 0.0); constraint = clutter_bind_constraint_new (rects[0], CLUTTER_BIND_Y, 0.0);
clutter_actor_add_constraint_with_name (rects[2], "blue-y", constraint); clutter_actor_add_constraint_with_name (rects[2], "blue-y", constraint);
clutter_actor_set_name (rects[2], "blue rect");
/* add everything to the stage */ /* add everything to the stage */
clutter_container_add (CLUTTER_CONTAINER (stage), clutter_container_add (CLUTTER_CONTAINER (stage),