diff options
author | Philip Withnall <pwithnall@svn.gnome.org> | 2007-06-15 15:36:09 +0000 |
---|---|---|
committer | Philip Withnall <pwithnall@src.gnome.org> | 2007-06-15 15:36:09 +0000 |
commit | 78baaff3e9c44f70e775b2bc7cf07ab590710507 (patch) | |
tree | 5ddabfce406b53b14fe3945d2e569836a68fe202 /data | |
parent | 23f2e8673505f61369b29d243a31f7d25dabcca6 (diff) |
Patch from Przemysław Grzegorczyk <pgrzegorczyk@gmail.com> to add support
2007-06-15 Philip Withnall <pwithnall@svn.gnome.org>
* data/properties.glade:
* src/backend/bacon-video-widget-gst-0.10.c:
(bacon_video_widget_get_metadata_string),
(bacon_video_widget_get_metadata):
* src/backend/bacon-video-widget-xine.c:
(bacon_video_widget_get_metadata_string),
(bacon_video_widget_get_metadata):
* src/backend/bacon-video-widget.h:
* src/plugins/properties/bacon-video-widget-properties.c:
(bacon_video_widget_properties_reset),
(bacon_video_widget_properties_update),
(bacon_video_widget_properties_new): Patch from Przemysław
Grzegorczyk
<pgrzegorczyk@gmail.com> to add support for displaying
MP3/Vorbis
comment tags in the properties view. (Closes: #430984)
svn path=/trunk/; revision=4375
Diffstat (limited to 'data')
-rw-r--r-- | data/properties.glade | 65 |
1 files changed, 64 insertions, 1 deletions
diff --git a/data/properties.glade b/data/properties.glade index b4634123..729f3a42 100644 --- a/data/properties.glade +++ b/data/properties.glade @@ -105,7 +105,7 @@ <child> <widget class="GtkTable" id="general"> <property name="visible">True</property> - <property name="n_rows">5</property> + <property name="n_rows">6</property> <property name="n_columns">2</property> <property name="homogeneous">False</property> <property name="row_spacing">6</property> @@ -425,6 +425,69 @@ <property name="y_options"></property> </packing> </child> + + <child> + <widget class="GtkLabel" id="comment_label"> + <property name="visible">True</property> + <property name="label" translatable="yes">Comment:</property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + <accessibility> + <atkrelation target="comment" type="label-for"/> + </accessibility> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + <property name="x_options">fill</property> + <property name="y_options"></property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="comment"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">Unknown</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">True</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_END</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + <accessibility> + <atkrelation target="comment_label" type="labelled-by"/> + </accessibility> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">5</property> + <property name="bottom_attach">6</property> + <property name="x_options">expand|shrink|fill</property> + <property name="y_options"></property> + </packing> + </child> </widget> </child> </widget> |