• Home
  • Raw
  • Download

Lines Matching refs:boxes3

3196     GtkWidget *pb2vbox, *boxes, *boxes2, *panel, *boxes3;  in create_ui()  local
3329 boxes3 = gtk_grid_new (); in create_ui()
3330 gtk_grid_set_row_spacing (GTK_GRID (boxes3), 2); in create_ui()
3331 gtk_grid_set_row_homogeneous (GTK_GRID (boxes3), FALSE); in create_ui()
3332 gtk_grid_set_column_spacing (GTK_GRID (boxes3), 2); in create_ui()
3333 gtk_grid_set_column_homogeneous (GTK_GRID (boxes3), FALSE); in create_ui()
3336 gtk_grid_attach (GTK_GRID (boxes3), label, 0, 0, 1, 1); in create_ui()
3340 gtk_grid_attach (GTK_GRID (boxes3), app->video_sink_entry, 0, 1, 1, 1); in create_ui()
3343 gtk_grid_attach (GTK_GRID (boxes3), label, 1, 0, 1, 1); in create_ui()
3347 gtk_grid_attach (GTK_GRID (boxes3), app->audio_sink_entry, 1, 1, 1, 1); in create_ui()
3350 gtk_grid_attach (GTK_GRID (boxes3), label, 2, 0, 1, 1); in create_ui()
3354 gtk_grid_attach (GTK_GRID (boxes3), app->text_sink_entry, 2, 1, 1, 1); in create_ui()
3357 gtk_grid_attach (GTK_GRID (boxes3), label, 0, 2, 1, 1); in create_ui()
3362 gtk_grid_attach (GTK_GRID (boxes3), app->buffer_size_entry, 0, 3, 1, 1); in create_ui()
3365 gtk_grid_attach (GTK_GRID (boxes3), label, 1, 2, 1, 1); in create_ui()
3370 gtk_grid_attach (GTK_GRID (boxes3), app->buffer_duration_entry, 1, 3, 1, 1); in create_ui()
3373 gtk_grid_attach (GTK_GRID (boxes3), label, 2, 2, 1, 1); in create_ui()
3378 gtk_grid_attach (GTK_GRID (boxes3), app->ringbuffer_maxsize_entry, 2, 3, 1, in create_ui()
3382 gtk_grid_attach (GTK_GRID (boxes3), label, 3, 2, 1, 1); in create_ui()
3387 gtk_grid_attach (GTK_GRID (boxes3), app->connection_speed_entry, 3, 3, 1, in create_ui()
3391 gtk_grid_attach (GTK_GRID (boxes3), label, 4, 2, 1, 1); in create_ui()
3398 gtk_grid_attach (GTK_GRID (boxes3), app->av_offset_entry, 4, 3, 1, 1); in create_ui()
3401 gtk_grid_attach (GTK_GRID (boxes3), label, 5, 2, 1, 1); in create_ui()
3408 gtk_grid_attach (GTK_GRID (boxes3), app->text_offset_entry, 5, 3, 1, 1); in create_ui()
3411 gtk_grid_attach (GTK_GRID (boxes3), label, 0, 4, 1, 1); in create_ui()
3415 gtk_grid_attach (GTK_GRID (boxes3), app->subtitle_encoding_entry, 0, 5, 1, in create_ui()
3419 gtk_grid_attach (GTK_GRID (boxes3), label, 1, 4, 1, 1); in create_ui()
3423 gtk_grid_attach (GTK_GRID (boxes3), app->subtitle_fontdesc_button, 1, 5, 1, in create_ui()
3430 gtk_box_pack_start (GTK_BOX (pb2vbox), boxes3, FALSE, FALSE, 2); in create_ui()