~ubuntu-branches/debian/sid/brasero/sid

« back to all changes in this revision

Viewing changes to src/brasero-song-control.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2011-11-19 14:00:13 UTC
  • mfrom: (5.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20111119140013-9dnkj4de9z9lzceo
Tags: 3.2.0-2
* Upload to unstable.
* debian/control.in:
  - Make libbrasero-media3-dev depend on gir1.2-brasero-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
511
511
        gst_object_unref (bus);
512
512
 
513
513
        /* Widget itself */
514
 
        vbox = gtk_vbox_new (FALSE, 0);
 
514
        vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
515
515
        gtk_widget_show (vbox);
516
516
        gtk_container_set_border_width (GTK_CONTAINER (vbox), 0);
517
517
        gtk_container_add (GTK_CONTAINER (object), vbox);
518
518
 
519
519
        /* first line title */
520
 
        hbox = gtk_hbox_new (FALSE, 12);
 
520
        hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
521
521
        gtk_widget_show (hbox);
522
522
        gtk_box_pack_start (GTK_BOX (vbox),
523
523
                            hbox,
547
547
                          0);
548
548
        
549
549
        /* second line : play, progress, volume button */
550
 
        hbox = gtk_hbox_new (FALSE, 12);
 
550
        hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
551
551
        gtk_widget_show (hbox);
552
552
        gtk_box_pack_start (GTK_BOX (vbox),
553
553
                            hbox,
575
575
                          G_CALLBACK (brasero_song_control_button_clicked_cb),
576
576
                          object);
577
577
 
578
 
        priv->progress = gtk_hscale_new_with_range (0, 1, 500000000);
 
578
        priv->progress = gtk_scale_new_with_range (GTK_ORIENTATION_HORIZONTAL, 0, 1, 500000000);
579
579
        gtk_widget_show (priv->progress);
580
580
        gtk_scale_set_digits (GTK_SCALE (priv->progress), 0);
581
581
        gtk_scale_set_draw_value (GTK_SCALE (priv->progress), FALSE);