• Home
  • Raw
  • Download

Lines Matching refs:hbox

535 	GtkWidget *dialog, *box, *vbox, *hbox, *frame, *pentry;  in get_connection_details()  local
556 hbox = gtk_hbox_new(TRUE, 10); in get_connection_details()
557 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0); in get_connection_details()
560 gtk_box_pack_start(GTK_BOX(hbox), cw.hentry, TRUE, TRUE, 0); in get_connection_details()
567 hbox = gtk_hbox_new(TRUE, 4); in get_connection_details()
568 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0); in get_connection_details()
569 pentry = create_spinbutton(hbox, 1, 65535, FIO_NET_PORT); in get_connection_details()
576 hbox = gtk_hbox_new(TRUE, 4); in get_connection_details()
577 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0); in get_connection_details()
585 gtk_container_add(GTK_CONTAINER(hbox), cw.combo); in get_connection_details()
592 hbox = gtk_hbox_new(TRUE, 4); in get_connection_details()
593 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0); in get_connection_details()
598 gtk_box_pack_start(GTK_BOX(hbox), cw.button, FALSE, FALSE, 6); in get_connection_details()
1124 GtkWidget *hbox, *spin, *entry, *spin_int; in preferences() local
1141 hbox = gtk_hbox_new(FALSE, 5); in preferences()
1142 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); in preferences()
1144 gtk_box_pack_start(GTK_BOX(hbox), entry, TRUE, TRUE, 5); in preferences()
1147 gtk_box_pack_start(GTK_BOX(hbox), font, FALSE, FALSE, 5); in preferences()
1152 hbox = gtk_hbox_new(FALSE, 5); in preferences()
1153 gtk_box_pack_start(GTK_BOX(box), hbox, TRUE, TRUE, 5); in preferences()
1155 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 5); in preferences()
1157 spin = create_spinbutton(hbox, 10, 1000000, gfio_graph_limit); in preferences()
1162 hbox = gtk_hbox_new(FALSE, 5); in preferences()
1163 gtk_box_pack_start(GTK_BOX(box), hbox, TRUE, TRUE, 5); in preferences()
1165 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 5); in preferences()
1167 spin_int = create_spinbutton(hbox, 100, 100000, gfio_client_ops.eta_msec); in preferences()