Home | History | Annotate | Download | only in gtk

Lines Matching defs:child1

53   GtkWidget* child1 = gtk_fixed_new();
55 gtk_container_add(GTK_CONTAINER(expanded_), child1);
56 ASSERT_TRUE(FindChild(child1));
60 ASSERT_TRUE(FindChild(child1));
62 gtk_container_remove(GTK_CONTAINER(expanded_), child1);
63 ASSERT_FALSE(FindChild(child1));
71 GtkWidget* child1 = gtk_fixed_new();
73 gtk_container_add(GTK_CONTAINER(expanded_), child1);
81 EXPECT_EQ(0, child1->allocation.x);
82 EXPECT_EQ(0, child1->allocation.y);
83 EXPECT_EQ(50, child1->allocation.width);
84 EXPECT_EQ(100, child1->allocation.height);
95 EXPECT_EQ(10, child1->allocation.x);
96 EXPECT_EQ(20, child1->allocation.y);