~walkerlee/totem/pre-interview

« back to all changes in this revision

Viewing changes to data/totem.ui

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-05-26 00:07:51 UTC
  • mfrom: (1.6.1) (24.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130526000751-kv8ap3x1di4qq8j2
Tags: 3.8.2-0ubuntu1
* Sync with Debian. Remaining changes: 
* debian/control.in:
  - Drop build-depends on libepc-ui-dev and libgrilo-0.2-dev (in universe)
  - Drop libxtst-dev build-depends so that the (redundant) fake key presses
    for inhibiting the screensaver are disabled (LP: #1007438)
  - Build-depend on libzeitgeist-dev
  - Suggest rather than recommend gstreamer components in universe
  - Add totem-plugins-extra
  - Add XB-Npp-Description and XB-Npp-Filename header to the 
    totem-mozilla package to improve ubufox/ubuntu plugin db integration 
  - Refer to Firefox in totem-mozilla description instead of Iceweasel
  - Don't have totem-mozilla recommend any particular browser
  - Drop obsolete python library dependencies since iplayer is no longer
    included
* debian/totem-common.install, debian/source_totem.py:
  - Install Ubuntu apport debugging hook
* debian/totem-plugins-extra.install:
  - Universe plugins split out of totem-plugins (currently only gromit)
* debian/totem-plugins.install:    
  - Skip the plugins split to -extra and add the zeitgeist plugin
* debian/rules:
  - Build with --fail-missing, to ensure we install everything. 
    + Ignore libtotem.{,l}a since we delibrately don't install these.
  - Re-enable hardening, make sure both PIE and BINDNOW are used
    by setting hardening=+all. (LP: #1039604)
* debian/patches/91_quicklist_entries.patch:
  - Add static quicklist
* debian/patches/92_gst-plugins-good.patch:
  - Build without unnecessary gstreamer1.0-bad dependency
* debian/patches/93_grilo_optional.patch:
  - Allow building without grilo while grilo MIR is still pending
* debian/patches/correct_desktop_mimetypes.patch:
  - Don't list the mimetypes after the unity lists
* debian/patches/revert_shell_menu.patch: 
  - revert the use of a shell menu until indicator-appmenu can handle
    the mixed shell/traditional menus itself
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
<!--*- mode: xml -*--><!DOCTYPE glade-interface
3
3
  SYSTEM 'http://glade.gnome.org/glade-2.0.dtd'>
4
4
<interface>
5
 
<requires lib="gtk+" version="2.20"/>
 
5
<requires lib="gtk+" version="3.0"/>
6
6
 
7
7
<object class="GtkUIManager" id="totem-ui-manager">
8
8
   <child>
116
116
         </child>
117
117
         <child>
118
118
            <object class="GtkAction" id="zoom-1-2">
119
 
               <property name="label" translatable="yes">_Resize 1:2</property>
 
119
               <property name="label" translatable="yes">_Resize 1∶2</property>
120
120
               <property name="tooltip" translatable="yes">Resize to half the original video size</property>
121
121
               <signal name="activate" handler="zoom_1_2_action_callback"/>
122
122
            </object>
123
123
         </child>
124
124
         <child>
125
125
            <object class="GtkAction" id="zoom-1-1">
126
 
               <property name="label" translatable="yes">Resize _1:1</property>
 
126
               <property name="label" translatable="yes">Resize _1∶1</property>
127
127
               <property name="tooltip" translatable="yes">Resize to the original video size</property>
128
128
               <signal name="activate" handler="zoom_1_1_action_callback"/>
129
129
            </object>
130
130
         </child>
131
131
         <child>
132
132
            <object class="GtkAction" id="zoom-2-1">
133
 
               <property name="label" translatable="yes">Resize _2:1</property>
 
133
               <property name="label" translatable="yes">Resize _2∶1</property>
134
134
               <property name="tooltip" translatable="yes">Resize to double the original video size</property>
135
135
               <signal name="activate" handler="zoom_2_1_action_callback"/>
136
136
            </object>
316
316
         </child>
317
317
         <child>
318
318
            <object class="GtkRadioAction" id="aspect-ratio-fbt">
319
 
               <property name="label" translatable="yes">4:3 (TV)</property>
320
 
               <property name="tooltip" translatable="yes">Sets 4:3 (TV) aspect ratio</property>
 
319
               <property name="label" translatable="yes">4∶3 (TV)</property>
 
320
               <property name="tooltip" translatable="yes">Sets 4∶3 (TV) aspect ratio</property>
321
321
               <!-- BVW_RATIO_FOURBYTHREE -->
322
322
               <property name="group">aspect-ratio-auto</property>
323
323
               <property name="value">2</property>
325
325
         </child>
326
326
         <child>
327
327
            <object class="GtkRadioAction" id="aspect-ratio-anamorphic">
328
 
               <property name="label" translatable="yes">16:9 (Widescreen)</property>
329
 
               <property name="tooltip" translatable="yes">Sets 16:9 (widescreen) aspect ratio</property>
 
328
               <property name="label" translatable="yes">16∶9 (Widescreen)</property>
 
329
               <property name="tooltip" translatable="yes">Sets 16∶9 (widescreen) aspect ratio</property>
330
330
               <!-- BVW_RATIO_ANAMORPHIC -->
331
331
               <property name="group">aspect-ratio-auto</property>
332
332
               <property name="value">3</property>
334
334
         </child>
335
335
         <child>
336
336
            <object class="GtkRadioAction" id="aspect-ratio-dvb">
337
 
               <property name="label" translatable="yes">2.11:1 (DVB)</property>
338
 
               <property name="tooltip" translatable="yes">Sets 2.11:1 (DVB) aspect ratio</property>
 
337
               <property name="label" translatable="yes">2.11∶1 (DVB)</property>
 
338
               <property name="tooltip" translatable="yes">Sets 2.11∶1 (DVB) aspect ratio</property>
339
339
               <!-- BVW_RATIO_DVB -->
340
340
               <property name="group">aspect-ratio-auto</property>
341
341
               <property name="value">4</property>
402
402
            <menuitem name="open" action="open"/>
403
403
            <menuitem name="open-location" action="open-location"/>
404
404
            <placeholder name="save-placeholder"/>
405
 
            <placeholder name="devices-placeholder"/>
406
405
            <separator name="recent-separator"/>
407
406
            <placeholder name="recent-placeholder"/>
408
407
            <separator/>
500
499
   </ui>
501
500
</object>
502
501
 
503
 
<object class="GtkListStore" id="tpw_speed_liststore">
504
 
  <columns>
505
 
    <column type="gchararray"/>
506
 
  </columns>
507
 
  <data>
508
 
    <row>
509
 
      <col id="0" translatable="yes">14.4 Kbps Modem</col>
510
 
    </row>
511
 
    <row>
512
 
      <col id="0" translatable="yes">19.2 Kbps Modem</col>
513
 
    </row>
514
 
    <row>
515
 
      <col id="0" translatable="yes">28.8 Kbps Modem</col>
516
 
    </row>
517
 
    <row>
518
 
      <col id="0" translatable="yes">33.6 Kbps Modem</col>
519
 
    </row>
520
 
    <row>
521
 
      <col id="0" translatable="yes">34.4 Kbps Modem</col>
522
 
    </row>
523
 
    <row>
524
 
      <col id="0" translatable="yes">56 Kbps Modem/ISDN</col>
525
 
    </row>
526
 
    <row>
527
 
      <col id="0" translatable="yes">112 Kbps Dual ISDN/DSL</col>
528
 
    </row>
529
 
    <row>
530
 
      <col id="0" translatable="yes">256 Kbps DSL/Cable</col>
531
 
    </row>
532
 
    <row>
533
 
      <col id="0" translatable="yes">384 Kbps DSL/Cable</col>
534
 
    </row>
535
 
    <row>
536
 
      <col id="0" translatable="yes">512 Kbps DSL/Cable</col>
537
 
    </row>
538
 
    <row>
539
 
      <col id="0" translatable="yes">1.5 Mbps T1/Intranet/LAN</col>
540
 
    </row>
541
 
    <row>
542
 
      <col id="0" translatable="yes">Intranet/LAN</col>
543
 
    </row>
544
 
  </data>
545
 
</object>
546
 
 
547
 
<object class="GtkListStore" id="tpw_visuals_size_liststore">
548
 
  <columns>
549
 
    <column type="gchararray"/>
550
 
  </columns>
551
 
  <data>
552
 
    <row>
553
 
      <col id="0" translatable="yes" comments="Audio visualization dimensions">Normal</col>
554
 
    </row>
555
 
    <row>
556
 
      <col id="0" translatable="yes" comments="Audio visualization dimensions">Large</col>
557
 
    </row>
558
 
    <row>
559
 
      <col id="0" translatable="yes" comments="Audio visualization dimensions">Extra Large</col>
560
 
    </row>
561
 
  </data>
562
 
</object>
563
 
 
564
 
<object class="GtkListStore" id="tpw_visuals_type_liststore">
565
 
  <columns>
566
 
    <column type="gchararray"/>
567
 
  </columns>
568
 
  <data>
569
 
  </data>
570
 
</object>
571
 
 
572
 
<object class="GtkListStore" id="tpw_sound_output_liststore">
573
 
  <columns>
574
 
    <column type="gchararray"/>
575
 
  </columns>
576
 
  <data>
577
 
    <row>
578
 
      <col id="0" translatable="yes">Stereo</col>
579
 
    </row>
580
 
    <row>
581
 
      <col id="0" translatable="yes">4-channel</col>
582
 
    </row>
583
 
    <row>
584
 
      <col id="0" translatable="yes">4.1-channel</col>
585
 
    </row>
586
 
    <row>
587
 
      <col id="0" translatable="yes">5.0-channel</col>
588
 
    </row>
589
 
    <row>
590
 
      <col id="0" translatable="yes">5.1-channel</col>
591
 
    </row>
592
 
    <row>
593
 
      <col id="0" translatable="yes">AC3 Passthrough</col>
594
 
    </row>
595
 
  </data>
596
 
</object>
597
 
 
598
 
<object class="GtkAdjustment" id="tpw_bright_adjustment">
599
 
  <property name="lower">0</property>
600
 
  <property name="upper">65535</property>
601
 
  <property name="step-increment">1000</property>
602
 
  <property name="page-increment">2000</property>
603
 
  <property name="page-size">250</property>
604
 
  <property name="value">32767</property>
605
 
</object>
606
 
 
607
 
<object class="GtkAdjustment" id="tpw_contrast_adjustment">
608
 
  <property name="lower">0</property>
609
 
  <property name="upper">65535</property>
610
 
  <property name="step-increment">1000</property>
611
 
  <property name="page-increment">2000</property>
612
 
  <property name="page-size">250</property>
613
 
  <property name="value">32767</property>
614
 
</object>
615
 
 
616
 
<object class="GtkAdjustment" id="tpw_saturation_adjustment">
617
 
  <property name="lower">0</property>
618
 
  <property name="upper">65535</property>
619
 
  <property name="step-increment">1000</property>
620
 
  <property name="page-increment">2000</property>
621
 
  <property name="page-size">250</property>
622
 
  <property name="value">32767</property>
623
 
</object>
624
 
 
625
 
<object class="GtkAdjustment" id="tpw_hue_adjustment">
626
 
  <property name="lower">0</property>
627
 
  <property name="upper">65535</property>
628
 
  <property name="step-increment">1000</property>
629
 
  <property name="page-increment">2000</property>
630
 
  <property name="page-size">250</property>
631
 
  <property name="value">32767</property>
632
 
</object>
633
 
 
634
502
<object class="GtkAdjustment" id="tmw_seek_adjustment">
635
503
  <property name="lower">0</property>
636
504
  <property name="upper">0</property>
641
509
  <signal name="value-changed" handler="seek_slider_changed_cb"/>
642
510
</object>
643
511
 
644
 
<object class="GtkDialog" id="totem_preferences_window">
645
 
  <property name="border_width">5</property>
646
 
  <property name="title" translatable="yes">Totem Preferences</property>
647
 
  <property name="type">GTK_WINDOW_TOPLEVEL</property>
648
 
  <property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property>
649
 
  <property name="modal">False</property>
650
 
  <property name="resizable">False</property>
651
 
  <property name="destroy_with_parent">False</property>
652
 
  <property name="decorated">True</property>
653
 
  <property name="skip_taskbar_hint">False</property>
654
 
  <property name="skip_pager_hint">False</property>
655
 
  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
656
 
  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
657
 
  <property name="focus_on_map">True</property>
658
 
  <property name="urgency_hint">False</property>
659
 
 
660
 
  <child internal-child="vbox">
661
 
    <object class="GtkVBox" id="tpw_dialog_vbox">
662
 
      <property name="visible">True</property>
663
 
      <property name="homogeneous">False</property>
664
 
      <property name="spacing">2</property>
665
 
      <property name="orientation">vertical</property>
666
 
 
667
 
      <child internal-child="action_area">
668
 
        <object class="GtkHButtonBox" id="tpw_dialog_action_area">
669
 
          <property name="visible">True</property>
670
 
          <property name="layout_style">GTK_BUTTONBOX_END</property>
671
 
 
672
 
          <child>
673
 
            <object class="GtkButton" id="tpw_close_button">
674
 
              <property name="visible">True</property>
675
 
              <property name="can_default">True</property>
676
 
              <property name="can_focus">True</property>
677
 
              <property name="label">gtk-close</property>
678
 
              <property name="use_stock">True</property>
679
 
              <property name="relief">GTK_RELIEF_NORMAL</property>
680
 
              <property name="focus_on_click">True</property>
681
 
              
682
 
            </object>
683
 
          </child>
684
 
        </object>
685
 
        <packing>
686
 
          <property name="padding">0</property>
687
 
          <property name="expand">False</property>
688
 
          <property name="fill">True</property>
689
 
          <property name="pack_type">GTK_PACK_END</property>
690
 
        </packing>
691
 
      </child>
692
 
 
693
 
      <child>
694
 
        <object class="GtkNotebook" id="tpw_notebook">
695
 
          <property name="border_width">5</property>
696
 
          <property name="visible">True</property>
697
 
          <property name="can_focus">True</property>
698
 
          <property name="show_tabs">True</property>
699
 
          <property name="show_border">True</property>
700
 
          <property name="tab_pos">GTK_POS_TOP</property>
701
 
          <property name="scrollable">False</property>
702
 
          <property name="enable_popup">False</property>
703
 
 
704
 
          <child>
705
 
            <object class="GtkVBox" id="tpw_general_vbox">
706
 
              <property name="border_width">12</property>
707
 
              <property name="visible">True</property>
708
 
              <property name="homogeneous">False</property>
709
 
              <property name="spacing">18</property>
710
 
              <property name="orientation">vertical</property>
711
 
 
712
 
              <child>
713
 
                <object class="GtkVBox" id="vbox2">
714
 
                  <property name="visible">True</property>
715
 
                  <property name="homogeneous">False</property>
716
 
                  <property name="spacing">6</property>
717
 
                  <property name="orientation">vertical</property>
718
 
 
719
 
                  <child>
720
 
                    <object class="GtkLabel" id="tpw_playback_label">
721
 
                      <property name="visible">True</property>
722
 
                      <property name="label" translatable="yes">Playback</property>
723
 
                      <property name="use_underline">False</property>
724
 
                      <property name="use_markup">True</property>
725
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
726
 
                      <property name="wrap">False</property>
727
 
                      <property name="selectable">False</property>
728
 
                      <property name="xalign">0</property>
729
 
                      <property name="yalign">0.5</property>
730
 
                      <property name="xpad">0</property>
731
 
                      <property name="ypad">0</property>
732
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
733
 
                      <property name="width_chars">-1</property>
734
 
                      <property name="single_line_mode">False</property>
735
 
                      <property name="angle">0</property>
736
 
                      <attributes>
737
 
                        <attribute name="weight" value="bold"/>
738
 
                      </attributes>
739
 
                    </object>
740
 
                    <packing>
741
 
                      <property name="padding">0</property>
742
 
                      <property name="expand">False</property>
743
 
                      <property name="fill">False</property>
744
 
                    </packing>
745
 
                  </child>
746
 
 
747
 
                  <child>
748
 
                    <object class="GtkAlignment" id="alignment2">
749
 
                      <property name="visible">True</property>
750
 
                      <property name="xalign">0.5</property>
751
 
                      <property name="yalign">0.5</property>
752
 
                      <property name="xscale">1</property>
753
 
                      <property name="yscale">1</property>
754
 
                      <property name="top_padding">0</property>
755
 
                      <property name="bottom_padding">0</property>
756
 
                      <property name="left_padding">12</property>
757
 
                      <property name="right_padding">0</property>
758
 
 
759
 
                      <child>
760
 
                            <object class="GtkCheckButton" id="tpw_remember_position_checkbutton">
761
 
                              <property name="visible">True</property>
762
 
                              <property name="can_focus">True</property>
763
 
                              <property name="label" translatable="yes">Start playing files from last position</property>
764
 
                              <property name="use_underline">True</property>
765
 
                              <property name="relief">GTK_RELIEF_NORMAL</property>
766
 
                              <property name="focus_on_click">True</property>
767
 
                              <property name="active">False</property>
768
 
                              <property name="inconsistent">False</property>
769
 
                              <property name="draw_indicator">True</property>
770
 
                        </object>
771
 
                      </child>
772
 
                    </object>
773
 
                    <packing>
774
 
                      <property name="padding">0</property>
775
 
                      <property name="expand">False</property>
776
 
                      <property name="fill">True</property>
777
 
                    </packing>
778
 
                  </child>
779
 
                </object>
780
 
                <packing>
781
 
                  <property name="padding">0</property>
782
 
                  <property name="expand">False</property>
783
 
                  <property name="fill">True</property>
784
 
                </packing>
785
 
              </child><child>
786
 
                <object class="GtkVBox" id="vbox3">
787
 
                  <property name="visible">True</property>
788
 
                  <property name="homogeneous">False</property>
789
 
                  <property name="spacing">6</property>
790
 
                  <property name="orientation">vertical</property>
791
 
 
792
 
                  <child>
793
 
                    <object class="GtkLabel" id="tpw_network_label">
794
 
                      <property name="visible">True</property>
795
 
                      <property name="label" translatable="yes">Networking</property>
796
 
                      <property name="use_underline">False</property>
797
 
                      <property name="use_markup">True</property>
798
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
799
 
                      <property name="wrap">False</property>
800
 
                      <property name="selectable">False</property>
801
 
                      <property name="xalign">0</property>
802
 
                      <property name="yalign">0.5</property>
803
 
                      <property name="xpad">0</property>
804
 
                      <property name="ypad">0</property>
805
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
806
 
                      <property name="width_chars">-1</property>
807
 
                      <property name="single_line_mode">False</property>
808
 
                      <property name="angle">0</property>
809
 
                      <attributes>
810
 
                        <attribute name="weight" value="bold"/>
811
 
                      </attributes>
812
 
                    </object>
813
 
                    <packing>
814
 
                      <property name="padding">0</property>
815
 
                      <property name="expand">False</property>
816
 
                      <property name="fill">False</property>
817
 
                    </packing>
818
 
                  </child>
819
 
 
820
 
                  <child>
821
 
                    <object class="GtkAlignment" id="alignment1">
822
 
                      <property name="visible">True</property>
823
 
                      <property name="xalign">0.5</property>
824
 
                      <property name="yalign">0.5</property>
825
 
                      <property name="xscale">1</property>
826
 
                      <property name="yscale">1</property>
827
 
                      <property name="top_padding">0</property>
828
 
                      <property name="bottom_padding">0</property>
829
 
                      <property name="left_padding">12</property>
830
 
                      <property name="right_padding">0</property>
831
 
 
832
 
                      <child>
833
 
                        <object class="GtkHBox" id="hbox6">
834
 
                          <property name="visible">True</property>
835
 
                          <property name="homogeneous">False</property>
836
 
                          <property name="spacing">12</property>
837
 
 
838
 
                          <child>
839
 
                            <object class="GtkLabel" id="tpw_speed_label">
840
 
                              <property name="visible">True</property>
841
 
                              <property name="label" translatable="yes">Connection _speed:</property>
842
 
                              <property name="use_underline">True</property>
843
 
                              <property name="use_markup">False</property>
844
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
845
 
                              <property name="wrap">False</property>
846
 
                              <property name="selectable">False</property>
847
 
                              <property name="xalign">0</property>
848
 
                              <property name="yalign">0.5</property>
849
 
                              <property name="xpad">0</property>
850
 
                              <property name="ypad">0</property>
851
 
                              <property name="mnemonic_widget">tpw_speed_combobox</property>
852
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
853
 
                              <property name="width_chars">-1</property>
854
 
                              <property name="single_line_mode">False</property>
855
 
                              <property name="angle">0</property>
856
 
                            </object>
857
 
                            <packing>
858
 
                              <property name="padding">0</property>
859
 
                              <property name="expand">False</property>
860
 
                              <property name="fill">False</property>
861
 
                            </packing>
862
 
                          </child>
863
 
 
864
 
                          <child>
865
 
                            <object class="GtkComboBox" id="tpw_speed_combobox">
866
 
                              <property name="visible">True</property>
867
 
                              <property name="model">tpw_speed_liststore</property>
868
 
                              <property name="add_tearoffs">False</property>
869
 
                              <property name="focus_on_click">True</property>
870
 
                              <child>
871
 
                                <object class="GtkCellRendererText" id="tpw_speed_cell"/>
872
 
                                <attributes>
873
 
                                  <attribute name="text">0</attribute>
874
 
                                </attributes>
875
 
                              </child>
876
 
                            </object>
877
 
                            <packing>
878
 
                              <property name="padding">0</property>
879
 
                              <property name="expand">False</property>
880
 
                              <property name="fill">True</property>
881
 
                            </packing>
882
 
                          </child>
883
 
                        </object>
884
 
                      </child>
885
 
                    </object>
886
 
                    <packing>
887
 
                      <property name="padding">0</property>
888
 
                      <property name="expand">False</property>
889
 
                      <property name="fill">True</property>
890
 
                    </packing>
891
 
                  </child>
892
 
                </object>
893
 
                <packing>
894
 
                  <property name="padding">0</property>
895
 
                  <property name="expand">False</property>
896
 
                  <property name="fill">True</property>
897
 
                </packing>
898
 
              </child>
899
 
 
900
 
              <child>
901
 
                <object class="GtkVBox" id="vbox6">
902
 
                  <property name="visible">True</property>
903
 
                  <property name="homogeneous">False</property>
904
 
                  <property name="spacing">6</property>
905
 
                  <property name="orientation">vertical</property>
906
 
 
907
 
                  <child>
908
 
                    <object class="GtkLabel" id="tpw_text_subtitles_label">
909
 
                      <property name="visible">True</property>
910
 
                      <property name="label" translatable="yes">Text Subtitles</property>
911
 
                      <property name="use_underline">False</property>
912
 
                      <property name="use_markup">True</property>
913
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
914
 
                      <property name="wrap">False</property>
915
 
                      <property name="selectable">False</property>
916
 
                      <property name="xalign">0</property>
917
 
                      <property name="yalign">0.5</property>
918
 
                      <property name="xpad">0</property>
919
 
                      <property name="ypad">0</property>
920
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
921
 
                      <property name="width_chars">-1</property>
922
 
                      <property name="single_line_mode">False</property>
923
 
                      <property name="angle">0</property>
924
 
                      <attributes>
925
 
                        <attribute name="weight" value="bold"/>
926
 
                      </attributes>
927
 
                    </object>
928
 
                    <packing>
929
 
                      <property name="padding">0</property>
930
 
                      <property name="expand">False</property>
931
 
                      <property name="fill">False</property>
932
 
                    </packing>
933
 
                  </child>
934
 
 
935
 
                  <child>
936
 
                    <object class="GtkAlignment" id="alignment3">
937
 
                      <property name="visible">True</property>
938
 
                      <property name="xalign">0.5</property>
939
 
                      <property name="yalign">0.5</property>
940
 
                      <property name="xscale">1</property>
941
 
                      <property name="yscale">1</property>
942
 
                      <property name="top_padding">0</property>
943
 
                      <property name="bottom_padding">0</property>
944
 
                      <property name="left_padding">12</property>
945
 
                      <property name="right_padding">0</property>
946
 
 
947
 
                      <child>
948
 
                        <object class="GtkTable" id="table3">
949
 
                          <property name="visible">True</property>
950
 
                          <property name="n_rows">3</property>
951
 
                          <property name="n_columns">2</property>
952
 
                          <property name="homogeneous">False</property>
953
 
                          <property name="row_spacing">6</property>
954
 
                          <property name="column_spacing">12</property>
955
 
 
956
 
                          <child>
957
 
                            <object class="GtkCheckButton" id="tpw_auto_subtitles_checkbutton">
958
 
                              <property name="visible">True</property>
959
 
                              <property name="can_focus">True</property>
960
 
                              <property name="label" translatable="yes">_Load subtitle files when movie is loaded</property>
961
 
                              <property name="use_underline">True</property>
962
 
                              <property name="relief">GTK_RELIEF_NORMAL</property>
963
 
                              <property name="focus_on_click">True</property>
964
 
                              <property name="active">False</property>
965
 
                              <property name="inconsistent">False</property>
966
 
                              <property name="draw_indicator">True</property>
967
 
                            </object>
968
 
                            <packing>
969
 
                              <property name="left_attach">0</property>
970
 
                              <property name="right_attach">2</property>
971
 
                              <property name="top_attach">0</property>
972
 
                              <property name="bottom_attach">1</property>
973
 
                              <property name="x_options">fill</property>
974
 
                              <property name="y_options"/>
975
 
                            </packing>
976
 
                          </child>
977
 
 
978
 
                          <child>
979
 
                            <object class="GtkLabel" id="label32">
980
 
                              <property name="visible">True</property>
981
 
                              <property name="label" translatable="yes">_Font:</property>
982
 
                              <property name="use_underline">True</property>
983
 
                              <property name="use_markup">False</property>
984
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
985
 
                              <property name="wrap">False</property>
986
 
                              <property name="selectable">False</property>
987
 
                              <property name="xalign">0</property>
988
 
                              <property name="yalign">0.5</property>
989
 
                              <property name="xpad">0</property>
990
 
                              <property name="ypad">0</property>
991
 
                              <property name="mnemonic_widget">font_sel_button</property>
992
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
993
 
                              <property name="width_chars">-1</property>
994
 
                              <property name="single_line_mode">False</property>
995
 
                              <property name="angle">0</property>
996
 
                            </object>
997
 
                            <packing>
998
 
                              <property name="left_attach">0</property>
999
 
                              <property name="right_attach">1</property>
1000
 
                              <property name="top_attach">1</property>
1001
 
                              <property name="bottom_attach">2</property>
1002
 
                              <property name="x_options">fill</property>
1003
 
                              <property name="y_options"/>
1004
 
                            </packing>
1005
 
                          </child>
1006
 
 
1007
 
                          <child>
1008
 
                            <object class="GtkLabel" id="label35">
1009
 
                              <property name="visible">True</property>
1010
 
                              <property name="label" translatable="yes">_Encoding:</property>
1011
 
                              <property name="use_underline">True</property>
1012
 
                              <property name="use_markup">False</property>
1013
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
1014
 
                              <property name="wrap">False</property>
1015
 
                              <property name="selectable">False</property>
1016
 
                              <property name="xalign">0</property>
1017
 
                              <property name="yalign">0.5</property>
1018
 
                              <property name="xpad">0</property>
1019
 
                              <property name="ypad">0</property>
1020
 
                              <property name="mnemonic_widget">subtitle_encoding_combo</property>
1021
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1022
 
                              <property name="width_chars">-1</property>
1023
 
                              <property name="single_line_mode">False</property>
1024
 
                              <property name="angle">0</property>
1025
 
                            </object>
1026
 
                            <packing>
1027
 
                              <property name="left_attach">0</property>
1028
 
                              <property name="right_attach">1</property>
1029
 
                              <property name="top_attach">2</property>
1030
 
                              <property name="bottom_attach">3</property>
1031
 
                              <property name="x_options">fill</property>
1032
 
                              <property name="y_options"/>
1033
 
                            </packing>
1034
 
                          </child>
1035
 
 
1036
 
                          <child>
1037
 
                            <object class="GtkComboBox" id="subtitle_encoding_combo">
1038
 
                              <property name="visible">True</property>
1039
 
                              <property name="add_tearoffs">False</property>
1040
 
                              <property name="focus_on_click">True</property>
1041
 
                              <signal name="changed" handler="encoding_set_cb"/>
1042
 
                            </object>
1043
 
                            <packing>
1044
 
                              <property name="left_attach">1</property>
1045
 
                              <property name="right_attach">2</property>
1046
 
                              <property name="top_attach">2</property>
1047
 
                              <property name="bottom_attach">3</property>
1048
 
                              <property name="x_options">fill</property>
1049
 
                              <property name="y_options">fill</property>
1050
 
                            </packing>
1051
 
                          </child>
1052
 
 
1053
 
                          <child>
1054
 
                            <object class="GtkFontButton" id="font_sel_button">
1055
 
                              <property name="visible">True</property>
1056
 
                              <property name="can_focus">True</property>
1057
 
                              <property name="show_style">True</property>
1058
 
                              <property name="show_size">True</property>
1059
 
                              <property name="use_font">False</property>
1060
 
                              <property name="use_size">False</property>
1061
 
                              <property name="focus_on_click">True</property>
1062
 
                              <signal name="font-set" handler="font_set_cb"/>
1063
 
                            </object>
1064
 
                            <packing>
1065
 
                              <property name="left_attach">1</property>
1066
 
                              <property name="right_attach">2</property>
1067
 
                              <property name="top_attach">1</property>
1068
 
                              <property name="bottom_attach">2</property>
1069
 
                              <property name="y_options"/>
1070
 
                            </packing>
1071
 
                          </child>
1072
 
                        </object>
1073
 
                      </child>
1074
 
                    </object>
1075
 
                    <packing>
1076
 
                      <property name="padding">0</property>
1077
 
                      <property name="expand">False</property>
1078
 
                      <property name="fill">True</property>
1079
 
                    </packing>
1080
 
                  </child>
1081
 
                </object>
1082
 
                <packing>
1083
 
                  <property name="padding">0</property>
1084
 
                  <property name="expand">False</property>
1085
 
                  <property name="fill">True</property>
1086
 
                </packing>
1087
 
              </child>
1088
 
 
1089
 
              <child>
1090
 
                <object class="GtkVBox" id="vbox7">
1091
 
                  <property name="visible">True</property>
1092
 
                  <property name="homogeneous">False</property>
1093
 
                  <property name="spacing">6</property>
1094
 
                  <property name="orientation">vertical</property>
1095
 
 
1096
 
                  <child>
1097
 
                    <object class="GtkLabel" id="tpw_ext_chapters_label">
1098
 
                      <property name="visible">True</property>
1099
 
                      <property name="label" translatable="yes">External Chapters</property>
1100
 
                      <property name="use_underline">False</property>
1101
 
                      <property name="use_markup">True</property>
1102
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
1103
 
                      <property name="wrap">False</property>
1104
 
                      <property name="selectable">False</property>
1105
 
                      <property name="xalign">0</property>
1106
 
                      <property name="yalign">0.5</property>
1107
 
                      <property name="xpad">0</property>
1108
 
                      <property name="ypad">0</property>
1109
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1110
 
                      <property name="width_chars">-1</property>
1111
 
                      <property name="single_line_mode">False</property>
1112
 
                      <property name="angle">0</property>
1113
 
                      <attributes>
1114
 
                        <attribute name="weight" value="bold"/>
1115
 
                      </attributes>
1116
 
                    </object>
1117
 
                    <packing>
1118
 
                      <property name="padding">0</property>
1119
 
                      <property name="expand">False</property>
1120
 
                      <property name="fill">False</property>
1121
 
                    </packing>
1122
 
                  </child>
1123
 
 
1124
 
                  <child>
1125
 
                    <object class="GtkAlignment" id="alignment3_2">
1126
 
                      <property name="visible">True</property>
1127
 
                      <property name="xalign">0.5</property>
1128
 
                      <property name="yalign">0.5</property>
1129
 
                      <property name="xscale">1</property>
1130
 
                      <property name="yscale">1</property>
1131
 
                      <property name="top_padding">0</property>
1132
 
                      <property name="bottom_padding">0</property>
1133
 
                      <property name="left_padding">12</property>
1134
 
                      <property name="right_padding">0</property>
1135
 
 
1136
 
                      <child>
1137
 
                        <object class="GtkTable" id="table3_2">
1138
 
                          <property name="visible">True</property>
1139
 
                          <property name="n_rows">1</property>
1140
 
                          <property name="n_columns">2</property>
1141
 
                          <property name="homogeneous">False</property>
1142
 
                          <property name="row_spacing">6</property>
1143
 
                          <property name="column_spacing">12</property>
1144
 
 
1145
 
                          <child>
1146
 
                            <object class="GtkCheckButton" id="tpw_auto_chapters_checkbutton">
1147
 
                              <property name="visible">True</property>
1148
 
                              <property name="can_focus">True</property>
1149
 
                              <property name="label" translatable="yes">Load _chapter files when movie is loaded</property>
1150
 
                              <property name="use_underline">True</property>
1151
 
                              <property name="relief">GTK_RELIEF_NORMAL</property>
1152
 
                              <property name="focus_on_click">True</property>
1153
 
                              <property name="active">False</property>
1154
 
                              <property name="inconsistent">False</property>
1155
 
                              <property name="draw_indicator">True</property>
1156
 
                            </object>
1157
 
                            <packing>
1158
 
                              <property name="left_attach">0</property>
1159
 
                              <property name="right_attach">2</property>
1160
 
                              <property name="top_attach">0</property>
1161
 
                              <property name="bottom_attach">1</property>
1162
 
                              <property name="x_options">fill</property>
1163
 
                              <property name="y_options"/>
1164
 
                            </packing>
1165
 
                          </child>
1166
 
                        </object>
1167
 
                      </child>
1168
 
                    </object>
1169
 
                    <packing>
1170
 
                      <property name="padding">0</property>
1171
 
                      <property name="expand">False</property>
1172
 
                      <property name="fill">True</property>
1173
 
                    </packing>
1174
 
                  </child>
1175
 
                </object>
1176
 
                <packing>
1177
 
                  <property name="padding">0</property>
1178
 
                  <property name="expand">False</property>
1179
 
                  <property name="fill">True</property>
1180
 
                </packing>
1181
 
              </child>
1182
 
            </object>
1183
 
            <packing>
1184
 
              <property name="tab_expand">False</property>
1185
 
              <property name="tab_fill">True</property>
1186
 
            </packing>
1187
 
          </child>
1188
 
 
1189
 
          <child type="tab">
1190
 
            <object class="GtkLabel" id="tpw_general_notebook_label">
1191
 
              <property name="visible">True</property>
1192
 
              <property name="label" translatable="yes">General</property>
1193
 
              <property name="use_underline">True</property>
1194
 
              <property name="use_markup">False</property>
1195
 
              <property name="justify">GTK_JUSTIFY_LEFT</property>
1196
 
              <property name="wrap">False</property>
1197
 
              <property name="selectable">False</property>
1198
 
              <property name="xalign">0.5</property>
1199
 
              <property name="yalign">0.5</property>
1200
 
              <property name="xpad">0</property>
1201
 
              <property name="ypad">0</property>
1202
 
              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1203
 
              <property name="width_chars">-1</property>
1204
 
              <property name="single_line_mode">False</property>
1205
 
              <property name="angle">0</property>
1206
 
            </object>
1207
 
            
1208
 
          </child>
1209
 
 
1210
 
          <child>
1211
 
            <object class="GtkVBox" id="vbox1">
1212
 
              <property name="border_width">12</property>
1213
 
              <property name="visible">True</property>
1214
 
              <property name="homogeneous">False</property>
1215
 
              <property name="spacing">18</property>
1216
 
              <property name="orientation">vertical</property>
1217
 
 
1218
 
              <child>
1219
 
                <object class="GtkVBox" id="tpw_visuals_display_vbox">
1220
 
                  <property name="visible">True</property>
1221
 
                  <property name="homogeneous">False</property>
1222
 
                  <property name="spacing">6</property>
1223
 
                  <property name="orientation">vertical</property>
1224
 
 
1225
 
                  <child>
1226
 
                    <object class="GtkLabel" id="tpw_display_label">
1227
 
                      <property name="visible">True</property>
1228
 
                      <property name="label" translatable="yes" comments="Tab label in the Preferences dialogue">Display</property>
1229
 
                      <property name="use_underline">False</property>
1230
 
                      <property name="use_markup">True</property>
1231
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
1232
 
                      <property name="wrap">False</property>
1233
 
                      <property name="selectable">False</property>
1234
 
                      <property name="xalign">0</property>
1235
 
                      <property name="yalign">0.5</property>
1236
 
                      <property name="xpad">0</property>
1237
 
                      <property name="ypad">0</property>
1238
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1239
 
                      <property name="width_chars">-1</property>
1240
 
                      <property name="single_line_mode">False</property>
1241
 
                      <property name="angle">0</property>
1242
 
                      <attributes>
1243
 
                        <attribute name="weight" value="bold"/>
1244
 
                      </attributes>
1245
 
                    </object>
1246
 
                    <packing>
1247
 
                      <property name="padding">0</property>
1248
 
                      <property name="expand">False</property>
1249
 
                      <property name="fill">False</property>
1250
 
                    </packing>
1251
 
                  </child>
1252
 
 
1253
 
                  <child>
1254
 
                    <object class="GtkAlignment" id="alignment4">
1255
 
                      <property name="visible">True</property>
1256
 
                      <property name="xalign">0.5</property>
1257
 
                      <property name="yalign">0.5</property>
1258
 
                      <property name="xscale">1</property>
1259
 
                      <property name="yscale">1</property>
1260
 
                      <property name="top_padding">0</property>
1261
 
                      <property name="bottom_padding">0</property>
1262
 
                      <property name="left_padding">12</property>
1263
 
                      <property name="right_padding">0</property>
1264
 
 
1265
 
                      <child>
1266
 
                        <object class="GtkCheckButton" id="tpw_display_checkbutton">
1267
 
                          <property name="visible">True</property>
1268
 
                          <property name="can_focus">True</property>
1269
 
                          <property name="label" translatable="yes">_Resize the window when a new video is loaded</property>
1270
 
                          <property name="use_underline">True</property>
1271
 
                          <property name="relief">GTK_RELIEF_NORMAL</property>
1272
 
                          <property name="focus_on_click">True</property>
1273
 
                          <property name="active">False</property>
1274
 
                          <property name="inconsistent">False</property>
1275
 
                          <property name="draw_indicator">True</property>
1276
 
                        </object>
1277
 
                      </child>
1278
 
                    </object>
1279
 
                    <packing>
1280
 
                      <property name="padding">0</property>
1281
 
                      <property name="expand">False</property>
1282
 
                      <property name="fill">False</property>
1283
 
                    </packing>
1284
 
            </child>
1285
 
                  <child>
1286
 
                          <object class="GtkAlignment" id="alignment9">
1287
 
                                  <property name="visible">True</property>
1288
 
                                  <property name="left_padding">12</property>
1289
 
                                  <child>
1290
 
                                          <object class="GtkCheckButton" id="tpw_no_deinterlace_checkbutton">
1291
 
                                                  <property name="label" translatable="yes">Disable _deinterlacing of interlaced videos</property>
1292
 
                                                  <property name="visible">True</property>
1293
 
                                                  <property name="can_focus">False</property>
1294
 
                                                  <property name="receives_default">False</property>
1295
 
                                                  <property name="use_action_appearance">False</property>
1296
 
                                                  <property name="use_underline">True</property>
1297
 
                                                  <property name="draw_indicator">True</property>
1298
 
                                          </object>
1299
 
                                  </child>
1300
 
                          </object>
1301
 
                          <packing>
1302
 
                                  <property name="expand">False</property>
1303
 
                                  <property name="fill">False</property>
1304
 
                                  <property name="position">3</property>
1305
 
                          </packing>
1306
 
                  </child>
1307
 
                    <child>
1308
 
                      <object class="GtkAlignment" id="alignment8">
1309
 
                        <property name="visible">True</property>
1310
 
                        <property name="left_padding">12</property>
1311
 
                        <child>
1312
 
                          <object class="GtkHBox" id="hbox1">
1313
 
                            <property name="visible">True</property>
1314
 
                            <child>
1315
 
                              <object class="GtkLabel" id="label1">
1316
 
                                <property name="visible">True</property>
1317
 
                                <property name="label" translatable="yes">Disable screensaver when playing </property>
1318
 
                              </object>
1319
 
                              <packing>
1320
 
                                <property name="position">0</property>
1321
 
                              </packing>
1322
 
                            </child>
1323
 
                            <child>
1324
 
                              <object class="GtkRadioButton" id="tpw_video_toggle_button">
1325
 
                                <property name="label" translatable="yes">Video</property>
1326
 
                                <property name="visible">True</property>
1327
 
                                <property name="can_focus">True</property>
1328
 
                                <property name="receives_default">False</property>
1329
 
                                <property name="use_action_appearance">False</property>
1330
 
                                <property name="draw_indicator">True</property>
1331
 
                                <property name="group">tpw_audio_toggle_button</property>
1332
 
                              </object>
1333
 
                              <packing>
1334
 
                                <property name="position">1</property>
1335
 
                              </packing>
1336
 
                            </child>
1337
 
                            <child>
1338
 
                              <object class="GtkRadioButton" id="tpw_audio_toggle_button">
1339
 
                                <property name="label" translatable="yes">Video or Audio</property>
1340
 
                                <property name="visible">True</property>
1341
 
                                <property name="can_focus">True</property>
1342
 
                                <property name="receives_default">False</property>
1343
 
                                <property name="use_action_appearance">False</property>
1344
 
                                <property name="active">True</property>
1345
 
                                <property name="draw_indicator">True</property>
1346
 
                                <signal name="toggled" handler="audio_screensaver_button_toggled_cb"/>
1347
 
                              </object>
1348
 
                              <packing>
1349
 
                                <property name="position">2</property>
1350
 
                              </packing>
1351
 
                            </child>
1352
 
                          </object>
1353
 
                        </child>
1354
 
                      </object>
1355
 
                      <packing>
1356
 
                        <property name="expand">False</property>
1357
 
                        <property name="fill">False</property>
1358
 
                        <property name="position">3</property>
1359
 
                      </packing>
1360
 
                    </child>
1361
 
 
1362
 
 
1363
 
                </object>
1364
 
                <packing>
1365
 
                  <property name="padding">0</property>
1366
 
                  <property name="expand">False</property>
1367
 
                  <property name="fill">True</property>
1368
 
                </packing>
1369
 
              </child>
1370
 
 
1371
 
              <child>
1372
 
                <object class="GtkVBox" id="tpw_visuals_effects_vbox">
1373
 
                  <property name="visible">True</property>
1374
 
                  <property name="homogeneous">False</property>
1375
 
                  <property name="spacing">6</property>
1376
 
                  <property name="orientation">vertical</property>
1377
 
 
1378
 
                  <child>
1379
 
                    <object class="GtkLabel" id="tpw_visuals_label">
1380
 
                      <property name="visible">True</property>
1381
 
                      <property name="label" translatable="yes">Visual Effects</property>
1382
 
                      <property name="use_underline">False</property>
1383
 
                      <property name="use_markup">True</property>
1384
 
                      <property name="justify">GTK_JUSTIFY_LEFT</property>
1385
 
                      <property name="wrap">False</property>
1386
 
                      <property name="selectable">False</property>
1387
 
                      <property name="xalign">0</property>
1388
 
                      <property name="yalign">0.5</property>
1389
 
                      <property name="xpad">0</property>
1390
 
                      <property name="ypad">0</property>
1391
 
                      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1392
 
                      <property name="width_chars">-1</property>
1393
 
                      <property name="single_line_mode">False</property>
1394
 
                      <property name="angle">0</property>
1395
 
                      <attributes>
1396
 
                        <attribute name="weight" value="bold"/>
1397
 
                      </attributes>
1398
 
                    </object>
1399
 
                    <packing>
1400
 
                      <property name="padding">0</property>
1401
 
                      <property name="expand">False</property>
1402
 
                      <property name="fill">False</property>
1403
 
                    </packing>
1404
 
                  </child>
1405
 
 
1406
 
                  <child>
1407
 
                    <object class="GtkAlignment" id="alignment5">
1408
 
                      <property name="visible">True</property>
1409
 
                      <property name="xalign">0.5</property>
1410
 
                      <property name="yalign">0.5</property>
1411
 
                      <property name="xscale">1</property>
1412
 
                      <property name="yscale">1</property>
1413
 
                      <property name="top_padding">0</property>
1414
 
                      <property name="bottom_padding">0</property>
1415
 
                      <property name="left_padding">12</property>
1416
 
                      <property name="right_padding">0</property>
1417
 
 
1418
 
                      <child>
1419
 
                        <object class="GtkVBox" id="vbox9">
1420
 
                          <property name="visible">True</property>
1421
 
                          <property name="homogeneous">False</property>
1422
 
                          <property name="spacing">6</property>
1423
 
                          <property name="orientation">vertical</property>
1424
 
 
1425
 
                          <child>
1426
 
                            <object class="GtkCheckButton" id="tpw_visuals_checkbutton">
1427
 
                              <property name="visible">True</property>
1428
 
                              <property name="can_focus">True</property>
1429
 
                              <property name="label" translatable="yes">Show _visual effects when an audio file is played</property>
1430
 
                              <property name="use_underline">True</property>
1431
 
                              <property name="relief">GTK_RELIEF_NORMAL</property>
1432
 
                              <property name="focus_on_click">True</property>
1433
 
                              <property name="active">False</property>
1434
 
                              <property name="inconsistent">False</property>
1435
 
                              <property name="draw_indicator">True</property>
1436
 
                              <signal name="toggled" handler="checkbutton2_toggled_cb"/>
1437
 
                            </object>
1438
 
                            <packing>
1439
 
                              <property name="padding">0</property>
1440
 
                              <property name="expand">False</property>
1441
 
                              <property name="fill">False</property>
1442
 
                            </packing>
1443
 
                          </child>
1444
 
 
1445
 
                          <child>
1446
 
                            <object class="GtkTable" id="table1">
1447
 
                              <property name="visible">True</property>
1448
 
                              <property name="n_rows">2</property>
1449
 
                              <property name="n_columns">2</property>
1450
 
                              <property name="homogeneous">False</property>
1451
 
                              <property name="row_spacing">6</property>
1452
 
                              <property name="column_spacing">12</property>
1453
 
 
1454
 
                              <child>
1455
 
                                <object class="GtkLabel" id="tpw_visuals_type_label">
1456
 
                                  <property name="visible">True</property>
1457
 
                                  <property name="label" translatable="yes">_Type of visualization:</property>
1458
 
                                  <property name="use_underline">True</property>
1459
 
                                  <property name="use_markup">False</property>
1460
 
                                  <property name="justify">GTK_JUSTIFY_LEFT</property>
1461
 
                                  <property name="wrap">False</property>
1462
 
                                  <property name="selectable">False</property>
1463
 
                                  <property name="xalign">0</property>
1464
 
                                  <property name="yalign">0.5</property>
1465
 
                                  <property name="xpad">0</property>
1466
 
                                  <property name="ypad">0</property>
1467
 
                                  <property name="mnemonic_widget">tpw_visuals_type_combobox</property>
1468
 
                                  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1469
 
                                  <property name="width_chars">-1</property>
1470
 
                                  <property name="single_line_mode">False</property>
1471
 
                                  <property name="angle">0</property>
1472
 
                                </object>
1473
 
                                <packing>
1474
 
                                  <property name="left_attach">0</property>
1475
 
                                  <property name="right_attach">1</property>
1476
 
                                  <property name="top_attach">0</property>
1477
 
                                  <property name="bottom_attach">1</property>
1478
 
                                  <property name="x_options">fill</property>
1479
 
                                  <property name="y_options"/>
1480
 
                                </packing>
1481
 
                              </child>
1482
 
 
1483
 
                              <child>
1484
 
                                <object class="GtkLabel" id="tpw_visuals_size_label">
1485
 
                                  <property name="visible">True</property>
1486
 
                                  <property name="label" translatable="yes">Visualization _size:</property>
1487
 
                                  <property name="use_underline">True</property>
1488
 
                                  <property name="use_markup">False</property>
1489
 
                                  <property name="justify">GTK_JUSTIFY_LEFT</property>
1490
 
                                  <property name="wrap">False</property>
1491
 
                                  <property name="selectable">False</property>
1492
 
                                  <property name="xalign">0</property>
1493
 
                                  <property name="yalign">0.5</property>
1494
 
                                  <property name="xpad">0</property>
1495
 
                                  <property name="ypad">0</property>
1496
 
                                  <property name="mnemonic_widget">tpw_visuals_size_combobox</property>
1497
 
                                  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1498
 
                                  <property name="width_chars">-1</property>
1499
 
                                  <property name="single_line_mode">False</property>
1500
 
                                  <property name="angle">0</property>
1501
 
                                </object>
1502
 
                                <packing>
1503
 
                                  <property name="left_attach">0</property>
1504
 
                                  <property name="right_attach">1</property>
1505
 
                                  <property name="top_attach">1</property>
1506
 
                                  <property name="bottom_attach">2</property>
1507
 
                                  <property name="x_options">fill</property>
1508
 
                                  <property name="y_options"/>
1509
 
                                </packing>
1510
 
                              </child>
1511
 
 
1512
 
                              <child>
1513
 
                                <object class="GtkComboBox" id="tpw_visuals_size_combobox">
1514
 
                                  <property name="visible">True</property>
1515
 
                                  <property name="model">tpw_visuals_size_liststore</property>
1516
 
                                  <property name="add_tearoffs">False</property>
1517
 
                                  <property name="focus_on_click">True</property>
1518
 
                                  <child>
1519
 
                                    <object class="GtkCellRendererText" id="tpw_visuals_size_cell"/>
1520
 
                                    <attributes>
1521
 
                                      <attribute name="text">0</attribute>
1522
 
                                    </attributes>
1523
 
                                  </child>
1524
 
                                </object>
1525
 
                                <packing>
1526
 
                                  <property name="left_attach">1</property>
1527
 
                                  <property name="right_attach">2</property>
1528
 
                                  <property name="top_attach">1</property>
1529
 
                                  <property name="bottom_attach">2</property>
1530
 
                                  <property name="x_options">fill</property>
1531
 
                                  <property name="y_options">fill</property>
1532
 
                                </packing>
1533
 
                              </child>
1534
 
 
1535
 
                              <child>
1536
 
                                <object class="GtkComboBox" id="tpw_visuals_type_combobox">
1537
 
                                  <property name="visible">True</property>
1538
 
                                  <property name="add_tearoffs">False</property>
1539
 
                                  <property name="focus_on_click">True</property>
1540
 
                                  <property name="model">tpw_visuals_type_liststore</property>
1541
 
                                  <signal name="changed" handler="visual_menu_changed"/>
1542
 
                                  <child>
1543
 
                                    <object class="GtkCellRendererText" id="renderer1"/>
1544
 
                                    <attributes>
1545
 
                                      <attribute name="text">0</attribute>
1546
 
                                    </attributes>
1547
 
                                  </child>
1548
 
                                </object>
1549
 
                                <packing>
1550
 
                                  <property name="left_attach">1</property>
1551
 
                                  <property name="right_attach">2</property>
1552
 
                                  <property name="top_attach">0</property>
1553
 
                                  <property name="bottom_attach">1</property>
1554
 
                                  <property name="y_options">fill</property>
1555
 
                                </packing>
1556
 
                              </child>
1557
 
                            </object>
1558
 
                            <packing>
1559
 
                              <property name="padding">0</property>
1560
 
                              <property name="expand">False</property>
1561
 
                              <property name="fill">True</property>
1562
 
                            </packing>
1563
 
                          </child>
1564
 
                        </object>
1565
 
                      </child>
1566
 
                    </object>
1567
 
                    <packing>
1568
 
                      <property name="padding">0</property>
1569
 
                      <property name="expand">False</property>
1570
 
                      <property name="fill">True</property>
1571
 
                    </packing>
1572
 
                  </child>
1573
 
                </object>
1574
 
                <packing>
1575
 
                  <property name="padding">0</property>
1576
 
                  <property name="expand">False</property>
1577
 
                  <property name="fill">True</property>
1578
 
                </packing>
1579
 
              </child>
1580
 
 
1581
 
              <child>
1582
 
                <object class="GtkVBox" id="tpw_bright_contr_vbox">
1583
 
                  <property name="visible">True</property>
1584
 
                  <property name="homogeneous">False</property>
1585
 
                  <property name="spacing">6</property>
1586
 
                  <property name="orientation">vertical</property>
1587
 
 
1588
 
                  <child>
1589
 
                    <object class="GtkHBox" id="hbox14">
1590
 
                      <property name="visible">True</property>
1591
 
                      <property name="homogeneous">False</property>
1592
 
                      <property name="spacing">6</property>
1593
 
 
1594
 
                      <child>
1595
 
                        <object class="GtkLabel" id="tpw_color_balance_label">
1596
 
                          <property name="visible">True</property>
1597
 
                          <property name="label" translatable="yes">Color Balance</property>
1598
 
                          <property name="use_underline">False</property>
1599
 
                          <property name="use_markup">True</property>
1600
 
                          <property name="justify">GTK_JUSTIFY_LEFT</property>
1601
 
                          <property name="wrap">False</property>
1602
 
                          <property name="selectable">False</property>
1603
 
                          <property name="xalign">0</property>
1604
 
                          <property name="yalign">0.5</property>
1605
 
                          <property name="xpad">0</property>
1606
 
                          <property name="ypad">0</property>
1607
 
                          <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1608
 
                          <property name="width_chars">-1</property>
1609
 
                          <property name="single_line_mode">False</property>
1610
 
                          <property name="angle">0</property>
1611
 
                          <attributes>
1612
 
                            <attribute name="weight" value="bold"/>
1613
 
                          </attributes>
1614
 
                        </object>
1615
 
                        <packing>
1616
 
                          <property name="padding">0</property>
1617
 
                          <property name="expand">False</property>
1618
 
                          <property name="fill">False</property>
1619
 
                        </packing>
1620
 
                      </child>
1621
 
                    </object>
1622
 
                    <packing>
1623
 
                      <property name="padding">0</property>
1624
 
                      <property name="expand">False</property>
1625
 
                      <property name="fill">False</property>
1626
 
                    </packing>
1627
 
                  </child>
1628
 
 
1629
 
                  <child>
1630
 
                    <object class="GtkAlignment" id="alignment6">
1631
 
                      <property name="visible">True</property>
1632
 
                      <property name="xalign">0.5</property>
1633
 
                      <property name="yalign">0.5</property>
1634
 
                      <property name="xscale">1</property>
1635
 
                      <property name="yscale">1</property>
1636
 
                      <property name="top_padding">0</property>
1637
 
                      <property name="bottom_padding">0</property>
1638
 
                      <property name="left_padding">12</property>
1639
 
                      <property name="right_padding">0</property>
1640
 
 
1641
 
                      <child>
1642
 
                        <object class="GtkTable" id="table2">
1643
 
                          <property name="visible">True</property>
1644
 
                          <property name="n_rows">5</property>
1645
 
                          <property name="n_columns">2</property>
1646
 
                          <property name="homogeneous">False</property>
1647
 
                          <property name="row_spacing">6</property>
1648
 
                          <property name="column_spacing">12</property>
1649
 
 
1650
 
                          <child>
1651
 
                            <object class="GtkLabel" id="tpw_brightness_label">
1652
 
                              <property name="visible">True</property>
1653
 
                              <property name="label" translatable="yes">_Brightness:</property>
1654
 
                              <property name="use_underline">True</property>
1655
 
                              <property name="use_markup">False</property>
1656
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
1657
 
                              <property name="wrap">False</property>
1658
 
                              <property name="selectable">False</property>
1659
 
                              <property name="xalign">0</property>
1660
 
                              <property name="yalign">0.5</property>
1661
 
                              <property name="xpad">0</property>
1662
 
                              <property name="ypad">0</property>
1663
 
                              <property name="mnemonic_widget">tpw_bright_scale</property>
1664
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1665
 
                              <property name="width_chars">-1</property>
1666
 
                              <property name="single_line_mode">False</property>
1667
 
                              <property name="angle">0</property>
1668
 
                            </object>
1669
 
                            <packing>
1670
 
                              <property name="left_attach">0</property>
1671
 
                              <property name="right_attach">1</property>
1672
 
                              <property name="top_attach">0</property>
1673
 
                              <property name="bottom_attach">1</property>
1674
 
                              <property name="x_options">fill</property>
1675
 
                              <property name="y_options"/>
1676
 
                            </packing>
1677
 
                          </child>
1678
 
 
1679
 
                          <child>
1680
 
                            <object class="GtkLabel" id="tpw_contrast_label">
1681
 
                              <property name="visible">True</property>
1682
 
                              <property name="label" translatable="yes">Co_ntrast:</property>
1683
 
                              <property name="use_underline">True</property>
1684
 
                              <property name="use_markup">False</property>
1685
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
1686
 
                              <property name="wrap">False</property>
1687
 
                              <property name="selectable">False</property>
1688
 
                              <property name="xalign">0</property>
1689
 
                              <property name="yalign">0.5</property>
1690
 
                              <property name="xpad">0</property>
1691
 
                              <property name="ypad">0</property>
1692
 
                              <property name="mnemonic_widget">tpw_contrast_scale</property>
1693
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1694
 
                              <property name="width_chars">-1</property>
1695
 
                              <property name="single_line_mode">False</property>
1696
 
                              <property name="angle">0</property>
1697
 
                            </object>
1698
 
                            <packing>
1699
 
                              <property name="left_attach">0</property>
1700
 
                              <property name="right_attach">1</property>
1701
 
                              <property name="top_attach">1</property>
1702
 
                              <property name="bottom_attach">2</property>
1703
 
                              <property name="x_options">fill</property>
1704
 
                              <property name="y_options"/>
1705
 
                            </packing>
1706
 
                          </child>
1707
 
 
1708
 
                          <child>
1709
 
                            <object class="GtkHScale" id="tpw_bright_scale">
1710
 
                              <property name="visible">True</property>
1711
 
                              <property name="can_focus">True</property>
1712
 
                              <property name="draw_value">False</property>
1713
 
                              <property name="value_pos">GTK_POS_TOP</property>
1714
 
                              <property name="digits">1</property>
1715
 
                              <property name="inverted">False</property>
1716
 
                              <property name="adjustment">tpw_bright_adjustment</property>
1717
 
                            </object>
1718
 
                            <packing>
1719
 
                              <property name="left_attach">1</property>
1720
 
                              <property name="right_attach">2</property>
1721
 
                              <property name="top_attach">0</property>
1722
 
                              <property name="bottom_attach">1</property>
1723
 
                              <property name="y_options"/>
1724
 
                            </packing>
1725
 
                          </child>
1726
 
 
1727
 
                          <child>
1728
 
                            <object class="GtkHScale" id="tpw_contrast_scale">
1729
 
                              <property name="visible">True</property>
1730
 
                              <property name="can_focus">True</property>
1731
 
                              <property name="draw_value">False</property>
1732
 
                              <property name="value_pos">GTK_POS_TOP</property>
1733
 
                              <property name="digits">1</property>
1734
 
                              <property name="inverted">False</property>
1735
 
                              <property name="adjustment">tpw_contrast_adjustment</property>
1736
 
                            </object>
1737
 
                            <packing>
1738
 
                              <property name="left_attach">1</property>
1739
 
                              <property name="right_attach">2</property>
1740
 
                              <property name="top_attach">1</property>
1741
 
                              <property name="bottom_attach">2</property>
1742
 
                              <property name="x_options">fill</property>
1743
 
                              <property name="y_options">fill</property>
1744
 
                            </packing>
1745
 
                          </child>
1746
 
 
1747
 
                          <child>
1748
 
                            <object class="GtkLabel" id="tpw_saturation_label">
1749
 
                              <property name="visible">True</property>
1750
 
                              <property name="label" translatable="yes">Sat_uration:</property>
1751
 
                              <property name="use_underline">True</property>
1752
 
                              <property name="use_markup">False</property>
1753
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
1754
 
                              <property name="wrap">False</property>
1755
 
                              <property name="selectable">False</property>
1756
 
                              <property name="xalign">0</property>
1757
 
                              <property name="yalign">0.5</property>
1758
 
                              <property name="xpad">0</property>
1759
 
                              <property name="ypad">0</property>
1760
 
                              <property name="mnemonic_widget">tpw_saturation_scale</property>
1761
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1762
 
                              <property name="width_chars">-1</property>
1763
 
                              <property name="single_line_mode">False</property>
1764
 
                              <property name="angle">0</property>
1765
 
                            </object>
1766
 
                            <packing>
1767
 
                              <property name="left_attach">0</property>
1768
 
                              <property name="right_attach">1</property>
1769
 
                              <property name="top_attach">2</property>
1770
 
                              <property name="bottom_attach">3</property>
1771
 
                              <property name="x_options">fill</property>
1772
 
                              <property name="y_options"/>
1773
 
                            </packing>
1774
 
                          </child>
1775
 
 
1776
 
                          <child>
1777
 
                            <object class="GtkLabel" id="tpw_hue_label">
1778
 
                              <property name="visible">True</property>
1779
 
                              <property name="label" translatable="yes">_Hue:</property>
1780
 
                              <property name="use_underline">True</property>
1781
 
                              <property name="use_markup">False</property>
1782
 
                              <property name="justify">GTK_JUSTIFY_LEFT</property>
1783
 
                              <property name="wrap">False</property>
1784
 
                              <property name="selectable">False</property>
1785
 
                              <property name="xalign">0</property>
1786
 
                              <property name="yalign">0.5</property>
1787
 
                              <property name="xpad">0</property>
1788
 
                              <property name="ypad">0</property>
1789
 
                              <property name="mnemonic_widget">tpw_hue_scale</property>
1790
 
                              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1791
 
                              <property name="width_chars">-1</property>
1792
 
                              <property name="single_line_mode">False</property>
1793
 
                              <property name="angle">0</property>
1794
 
                            </object>
1795
 
                            <packing>
1796
 
                              <property name="left_attach">0</property>
1797
 
                              <property name="right_attach">1</property>
1798
 
                              <property name="top_attach">3</property>
1799
 
                              <property name="bottom_attach">4</property>
1800
 
                              <property name="x_options">fill</property>
1801
 
                              <property name="y_options"/>
1802
 
                            </packing>
1803
 
                          </child>
1804
 
 
1805
 
                          <child>
1806
 
                            <object class="GtkHScale" id="tpw_saturation_scale">
1807
 
                              <property name="visible">True</property>
1808
 
                              <property name="can_focus">True</property>
1809
 
                              <property name="draw_value">False</property>
1810
 
                              <property name="value_pos">GTK_POS_TOP</property>
1811
 
                              <property name="digits">1</property>
1812
 
                              <property name="inverted">False</property>
1813
 
                              <property name="adjustment">tpw_saturation_adjustment</property>
1814
 
                            </object>
1815
 
                            <packing>
1816
 
                              <property name="left_attach">1</property>
1817
 
                              <property name="right_attach">2</property>
1818
 
                              <property name="top_attach">2</property>
1819
 
                              <property name="bottom_attach">3</property>
1820
 
                              <property name="x_options">fill</property>
1821
 
                              <property name="y_options">fill</property>
1822
 
                            </packing>
1823
 
                          </child>
1824
 
 
1825
 
                          <child>
1826
 
                            <object class="GtkHScale" id="tpw_hue_scale">
1827
 
                              <property name="visible">True</property>
1828
 
                              <property name="can_focus">True</property>
1829
 
                              <property name="draw_value">False</property>
1830
 
                              <property name="value_pos">GTK_POS_TOP</property>
1831
 
                              <property name="digits">1</property>
1832
 
                              <property name="inverted">False</property>
1833
 
                              <property name="adjustment">tpw_hue_adjustment</property>
1834
 
                            </object>
1835
 
                            <packing>
1836
 
                              <property name="left_attach">1</property>
1837
 
                              <property name="right_attach">2</property>
1838
 
                              <property name="top_attach">3</property>
1839
 
                              <property name="bottom_attach">4</property>
1840
 
                              <property name="x_options">fill</property>
1841
 
                              <property name="y_options">fill</property>
1842
 
                            </packing>
1843
 
                          </child>
1844
 
 
1845
 
                          <child>
1846
 
                            <object class="GtkHButtonBox" id="hbox23">
1847
 
                              <property name="visible">True</property>
1848
 
                              <property name="homogeneous">False</property>
1849
 
                              <property name="spacing">0</property>
1850
 
                              <property name="layout_style">GTK_BUTTONBOX_END</property>
1851
 
 
1852
 
                              <child>
1853
 
                                <object class="GtkButton" id="tpw_color_reset">
1854
 
                                  <property name="visible">True</property>
1855
 
                                  <property name="can_focus">True</property>
1856
 
                                  <property name="label" translatable="yes">Reset to _Defaults</property>
1857
 
                                  <property name="use_underline">True</property>
1858
 
                                  <property name="relief">GTK_RELIEF_NORMAL</property>
1859
 
                                  <property name="focus_on_click">True</property>
1860
 
                                  <signal name="clicked" handler="tpw_color_reset_clicked_cb"/>
1861
 
                                </object>
1862
 
                                <packing>
1863
 
                                  <property name="padding">0</property>
1864
 
                                  <property name="expand">False</property>
1865
 
                                  <property name="fill">False</property>
1866
 
                                </packing>
1867
 
                              </child>
1868
 
                            </object>
1869
 
                            <packing>
1870
 
                              <property name="left_attach">1</property>
1871
 
                              <property name="right_attach">2</property>
1872
 
                              <property name="top_attach">4</property>
1873
 
                              <property name="bottom_attach">5</property>
1874
 
                              <property name="x_options">shrink|fill</property>
1875
 
                            </packing>
1876
 
                          </child>
1877
 
                        </object>
1878
 
                      </child>
1879
 
                    </object>
1880
 
                    <packing>
1881
 
                      <property name="padding">0</property>
1882
 
                      <property name="expand">False</property>
1883
 
                      <property name="fill">True</property>
1884
 
                    </packing>
1885
 
                  </child>
1886
 
                </object>
1887
 
                <packing>
1888
 
                  <property name="padding">0</property>
1889
 
                  <property name="expand">False</property>
1890
 
                  <property name="fill">True</property>
1891
 
                </packing>
1892
 
              </child>
1893
 
            </object>
1894
 
            <packing>
1895
 
              <property name="tab_expand">False</property>
1896
 
              <property name="tab_fill">True</property>
1897
 
            </packing>
1898
 
          </child>
1899
 
 
1900
 
          <child type="tab">
1901
 
            <object class="GtkLabel" id="tpw_visuals_notebook_label">
1902
 
              <property name="visible">True</property>
1903
 
              <property name="label" translatable="yes">Display</property>
1904
 
              <property name="use_underline">True</property>
1905
 
              <property name="use_markup">False</property>
1906
 
              <property name="justify">GTK_JUSTIFY_LEFT</property>
1907
 
              <property name="wrap">False</property>
1908
 
              <property name="selectable">False</property>
1909
 
              <property name="xalign">0.5</property>
1910
 
              <property name="yalign">0.5</property>
1911
 
              <property name="xpad">0</property>
1912
 
              <property name="ypad">0</property>
1913
 
              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1914
 
              <property name="width_chars">-1</property>
1915
 
              <property name="single_line_mode">False</property>
1916
 
              <property name="angle">0</property>
1917
 
            </object>
1918
 
            
1919
 
          </child>
1920
 
 
1921
 
          <child>
1922
 
            <object class="GtkVBox" id="vbox12">
1923
 
              <property name="border_width">12</property>
1924
 
              <property name="visible">True</property>
1925
 
              <property name="homogeneous">False</property>
1926
 
              <property name="spacing">18</property>
1927
 
              <property name="orientation">vertical</property>
1928
 
 
1929
 
              <child>
1930
 
                <object class="GtkVBox" id="vbox13">
1931
 
                  <property name="visible">True</property>
1932
 
                  <property name="homogeneous">False</property>
1933
 
                  <property name="spacing">0</property>
1934
 
                  <property name="orientation">vertical</property>
1935
 
 
1936
 
                  <child>
1937
 
                    <object class="GtkVBox" id="vbox22">
1938
 
                      <property name="visible">True</property>
1939
 
                      <property name="homogeneous">False</property>
1940
 
                      <property name="spacing">6</property>
1941
 
                      <property name="orientation">vertical</property>
1942
 
 
1943
 
                      <child>
1944
 
                        <object class="GtkLabel" id="tpw_audio_output_label">
1945
 
                          <property name="visible">True</property>
1946
 
                          <property name="label" translatable="yes">Audio Output</property>
1947
 
                          <property name="use_underline">False</property>
1948
 
                          <property name="use_markup">True</property>
1949
 
                          <property name="justify">GTK_JUSTIFY_LEFT</property>
1950
 
                          <property name="wrap">False</property>
1951
 
                          <property name="selectable">False</property>
1952
 
                          <property name="xalign">0</property>
1953
 
                          <property name="yalign">0.5</property>
1954
 
                          <property name="xpad">0</property>
1955
 
                          <property name="ypad">0</property>
1956
 
                          <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
1957
 
                          <property name="width_chars">-1</property>
1958
 
                          <property name="single_line_mode">False</property>
1959
 
                          <property name="angle">0</property>
1960
 
                          <attributes>
1961
 
                            <attribute name="weight" value="bold"/>
1962
 
                          </attributes>
1963
 
                        </object>
1964
 
                        <packing>
1965
 
                          <property name="padding">0</property>
1966
 
                          <property name="expand">False</property>
1967
 
                          <property name="fill">False</property>
1968
 
                        </packing>
1969
 
                      </child>
1970
 
 
1971
 
                      <child>
1972
 
                        <object class="GtkAlignment" id="alignment7">
1973
 
                          <property name="visible">True</property>
1974
 
                          <property name="xalign">0.5</property>
1975
 
                          <property name="yalign">0.5</property>
1976
 
                          <property name="xscale">1</property>
1977
 
                          <property name="yscale">1</property>
1978
 
                          <property name="top_padding">0</property>
1979
 
                          <property name="bottom_padding">0</property>
1980
 
                          <property name="left_padding">12</property>
1981
 
                          <property name="right_padding">0</property>
1982
 
 
1983
 
                          <child>
1984
 
                            <object class="GtkHBox" id="hbox22">
1985
 
                              <property name="visible">True</property>
1986
 
                              <property name="homogeneous">False</property>
1987
 
                              <property name="spacing">12</property>
1988
 
 
1989
 
                              <child>
1990
 
                                <object class="GtkLabel" id="tpw_audio_output_type_label">
1991
 
                                  <property name="visible">True</property>
1992
 
                                  <property name="label" translatable="yes">_Audio output type:</property>
1993
 
                                  <property name="use_underline">True</property>
1994
 
                                  <property name="use_markup">False</property>
1995
 
                                  <property name="justify">GTK_JUSTIFY_LEFT</property>
1996
 
                                  <property name="wrap">False</property>
1997
 
                                  <property name="selectable">False</property>
1998
 
                                  <property name="xalign">0</property>
1999
 
                                  <property name="yalign">0.5</property>
2000
 
                                  <property name="xpad">0</property>
2001
 
                                  <property name="ypad">0</property>
2002
 
                                  <property name="mnemonic_widget">tpw_sound_output_combobox</property>
2003
 
                                  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
2004
 
                                  <property name="width_chars">-1</property>
2005
 
                                  <property name="single_line_mode">False</property>
2006
 
                                  <property name="angle">0</property>
2007
 
                                </object>
2008
 
                                <packing>
2009
 
                                  <property name="padding">0</property>
2010
 
                                  <property name="expand">False</property>
2011
 
                                  <property name="fill">False</property>
2012
 
                                </packing>
2013
 
                              </child>
2014
 
 
2015
 
                              <child>
2016
 
                                <object class="GtkComboBox" id="tpw_sound_output_combobox">
2017
 
                                  <property name="visible">True</property>
2018
 
                                  <property name="model">tpw_sound_output_liststore</property>
2019
 
                                  <property name="add_tearoffs">False</property>
2020
 
                                  <property name="focus_on_click">True</property>
2021
 
                                  <child>
2022
 
                                    <object class="GtkCellRendererText" id="tpw_sound_output_cell"/>
2023
 
                                    <attributes>
2024
 
                                      <attribute name="text">0</attribute>
2025
 
                                    </attributes>
2026
 
                                  </child>
2027
 
                                </object>
2028
 
                                <packing>
2029
 
                                  <property name="padding">0</property>
2030
 
                                  <property name="expand">False</property>
2031
 
                                  <property name="fill">True</property>
2032
 
                                </packing>
2033
 
                              </child>
2034
 
                            </object>
2035
 
                          </child>
2036
 
                        </object>
2037
 
                        <packing>
2038
 
                          <property name="padding">0</property>
2039
 
                          <property name="expand">False</property>
2040
 
                          <property name="fill">True</property>
2041
 
                        </packing>
2042
 
                      </child>
2043
 
                    </object>
2044
 
                    <packing>
2045
 
                      <property name="padding">0</property>
2046
 
                      <property name="expand">False</property>
2047
 
                      <property name="fill">False</property>
2048
 
                    </packing>
2049
 
                  </child>
2050
 
 
2051
 
                  <!--Placeholder-->
2052
 
                </object>
2053
 
                <packing>
2054
 
                  <property name="padding">0</property>
2055
 
                  <property name="expand">False</property>
2056
 
                  <property name="fill">True</property>
2057
 
                </packing>
2058
 
              </child>
2059
 
            </object>
2060
 
            <packing>
2061
 
              <property name="tab_expand">False</property>
2062
 
              <property name="tab_fill">True</property>
2063
 
            </packing>
2064
 
          </child>
2065
 
 
2066
 
          <child type="tab">
2067
 
            <object class="GtkLabel" id="label11">
2068
 
              <property name="visible">True</property>
2069
 
              <property name="label" translatable="yes">Audio</property>
2070
 
              <property name="use_underline">True</property>
2071
 
              <property name="use_markup">False</property>
2072
 
              <property name="justify">GTK_JUSTIFY_LEFT</property>
2073
 
              <property name="wrap">False</property>
2074
 
              <property name="selectable">False</property>
2075
 
              <property name="xalign">0.5</property>
2076
 
              <property name="yalign">0.5</property>
2077
 
              <property name="xpad">0</property>
2078
 
              <property name="ypad">0</property>
2079
 
              <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
2080
 
              <property name="width_chars">-1</property>
2081
 
              <property name="single_line_mode">False</property>
2082
 
              <property name="angle">0</property>
2083
 
            </object>
2084
 
            
2085
 
          </child>
2086
 
        </object>
2087
 
        <packing>
2088
 
          <property name="padding">0</property>
2089
 
          <property name="expand">False</property>
2090
 
          <property name="fill">True</property>
2091
 
        </packing>
2092
 
      </child>
2093
 
    </object>
2094
 
  </child>
2095
 
<action-widgets><action-widget response="-7">tpw_close_button</action-widget></action-widgets></object>
2096
 
 
2097
512
<object class="GtkWindow" id="totem_main_window">
2098
 
  <property name="title" translatable="yes">Movie Player</property>
 
513
  <property name="title" translatable="yes">Videos</property>
2099
514
  <property name="type">GTK_WINDOW_TOPLEVEL</property>
2100
515
  <property name="window_position">GTK_WIN_POS_NONE</property>
2101
516
  <property name="modal">False</property>
2112
527
  <signal name="window-state-event" handler="window_state_event_cb"/>
2113
528
  <signal name="key-press-event" handler="window_key_press_event_cb"/>
2114
529
  <signal name="key-release-event" handler="window_key_press_event_cb"/>
2115
 
  <signal name="scroll-event" handler="window_scroll_event_cb"/>
2116
530
 
2117
531
  <child>
2118
532
    <object class="GtkVBox" id="totem_main_vbox">
2157
571
              <property name="homogeneous">False</property>
2158
572
              <property name="spacing">0</property>
2159
573
              <property name="orientation">vertical</property>
 
574
              <signal name="scroll-event" handler="window_scroll_event_cb"/>
2160
575
 
2161
576
              <child>
2162
577
                <object class="GtkEventBox" id="tmw_bvw_box">