Lines Matching refs:box
596 GtkWidget *box; in menu_item_new() local
605 box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 20); in menu_item_new()
606 gtk_box_set_homogeneous(GTK_BOX(box), FALSE); in menu_item_new()
608 box = gtk_hbox_new(FALSE, 20); in menu_item_new()
617 gtk_box_pack_start(GTK_BOX(box), menu->label, FALSE, FALSE, 0); in menu_item_new()
623 gtk_box_pack_end(GTK_BOX(box), in menu_item_new()
630 gtk_container_add(GTK_CONTAINER(menu->id), box); in menu_item_new()
2111 GtkWidget *box; in create_image_button() local
2118 box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 3); in create_image_button()
2119 gtk_box_set_homogeneous(GTK_BOX(box), FALSE); in create_image_button()
2121 box = gtk_hbox_new(FALSE, 3); in create_image_button()
2125 gtk_box_pack_start(GTK_BOX(box), in create_image_button()
2129 gtk_box_pack_start(GTK_BOX(box), in create_image_button()
2136 gtk_widget_set_halign(GTK_WIDGET(box), GTK_ALIGN_CENTER); in create_image_button()
2137 gtk_widget_set_valign(GTK_WIDGET(box), GTK_ALIGN_CENTER); in create_image_button()
2138 gtk_widget_set_hexpand(GTK_WIDGET(box), TRUE); in create_image_button()
2139 gtk_widget_set_vexpand(GTK_WIDGET(box), TRUE); in create_image_button()
2146 gtk_container_add(GTK_CONTAINER(alignment), box); in create_image_button()