Make sure the RTL variants are used for media icons update following the

2004-11-04  Bastien Nocera  <hadess@hadess.net>

	* gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
	variants are used for media icons
	* gtk/stock-icons/Makefile.am: update following the addition of
	the 2 Play icon RTL variants
	* gtk/stock-icons/stock_media_play_rtl_16.png: added
	* gtk/stock-icons/stock_media_play_rtl_24.png: added

2004-11-04  Bastien Nocera  <hadess@hadess.net>

	* gtk/tmpl/gtkstock.sgml: add RTL variants for all the media icons
	needing it
This commit is contained in:
Bastien Nocera 2004-11-04 14:49:44 +00:00 committed by Bastien Nocera
parent 2faeae4b33
commit 29008566b6
10 changed files with 71 additions and 15 deletions

View File

@ -1,3 +1,12 @@
2004-11-04 Bastien Nocera <hadess@hadess.net>
* gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
variants are used for media icons
* gtk/stock-icons/Makefile.am: update following the addition of
the 2 Play icon RTL variants
* gtk/stock-icons/stock_media_play_rtl_16.png: added
* gtk/stock-icons/stock_media_play_rtl_24.png: added
2004-11-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (new_folder_button_clicked):

View File

@ -1,3 +1,12 @@
2004-11-04 Bastien Nocera <hadess@hadess.net>
* gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
variants are used for media icons
* gtk/stock-icons/Makefile.am: update following the addition of
the 2 Play icon RTL variants
* gtk/stock-icons/stock_media_play_rtl_16.png: added
* gtk/stock-icons/stock_media_play_rtl_24.png: added
2004-11-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (new_folder_button_clicked):

View File

@ -1,3 +1,12 @@
2004-11-04 Bastien Nocera <hadess@hadess.net>
* gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
variants are used for media icons
* gtk/stock-icons/Makefile.am: update following the addition of
the 2 Play icon RTL variants
* gtk/stock-icons/stock_media_play_rtl_16.png: added
* gtk/stock-icons/stock_media_play_rtl_24.png: added
2004-11-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (new_folder_button_clicked):

View File

@ -1,3 +1,12 @@
2004-11-04 Bastien Nocera <hadess@hadess.net>
* gtk/gtkiconfactory.c: (get_default_icons): Make sure the RTL
variants are used for media icons
* gtk/stock-icons/Makefile.am: update following the addition of
the 2 Play icon RTL variants
* gtk/stock-icons/stock_media_play_rtl_16.png: added
* gtk/stock-icons/stock_media_play_rtl_24.png: added
2004-11-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (new_folder_button_clicked):

View File

@ -1,3 +1,8 @@
2004-11-04 Bastien Nocera <hadess@hadess.net>
* gtk/tmpl/gtkstock.sgml: add RTL variants for all the media icons
needing it
2004-11-03 Matthias Clasen <mclasen@redhat.com>
* gtk/migrating-GtkIconView.sgml: Add a first version of

View File

@ -506,6 +506,8 @@ The "Right" item.
<para>
The "Media Forward" item.
<inlinegraphic fileref="stock_media_forward_24.png" format="PNG"></inlinegraphic>
RTL variant
<inlinegraphic fileref="stock_media_rewind_24.png" format="PNG"></inlinegraphic>
</para>
@Since: 2.6
@ -515,6 +517,8 @@ The "Media Forward" item.
<para>
The "Media Next" item.
<inlinegraphic fileref="stock_media_next_24.png" format="PNG"></inlinegraphic>
RTL variant
<inlinegraphic fileref="stock_media_previous_24.png" format="PNG"></inlinegraphic>
</para>
@Since: 2.6
@ -534,6 +538,9 @@ The "Media Pause" item.
The "Media Play" item.
<inlinegraphic fileref="stock_media_play_24.png" format="PNG"></inlinegraphic>
</para>
RTL variant
<inlinegraphic fileref="stock_media_play_rtl_24.png" format="PNG"></inlinegraphic>
</para>
@Since: 2.6
@ -542,6 +549,8 @@ The "Media Play" item.
<para>
The "Media Previous" item.
<inlinegraphic fileref="stock_media_previous_24.png" format="PNG"></inlinegraphic>
RTL variant
<inlinegraphic fileref="stock_media_next_24.png" format="PNG"></inlinegraphic>
</para>
@Since: 2.6
@ -560,6 +569,8 @@ The "Media Record" item.
<para>
The "Media Rewind" item.
<inlinegraphic fileref="stock_media_rewind_24.png" format="PNG"></inlinegraphic>
RTL variant
<inlinegraphic fileref="stock_media_forward_24.png" format="PNG"></inlinegraphic>
</para>
@Since: 2.6

View File

@ -721,33 +721,33 @@ get_default_icons (GtkIconFactory *factory)
16, stock_edit_16,
24, stock_edit_24);
add_icon2 (factory, GTK_STOCK_MEDIA_FORWARD,
16, stock_media_forward_16,
24, stock_media_forward_24);
add_icon_bidi2 (factory, GTK_STOCK_MEDIA_FORWARD,
16, stock_media_forward_16, stock_media_rewind_16,
24, stock_media_forward_24, stock_media_rewind_24);
add_icon2 (factory, GTK_STOCK_MEDIA_NEXT,
16, stock_media_next_16,
24, stock_media_next_24);
add_icon_bidi2 (factory, GTK_STOCK_MEDIA_NEXT,
16, stock_media_next_16, stock_media_previous_16,
24, stock_media_next_24, stock_media_previous_24);
add_icon2 (factory, GTK_STOCK_MEDIA_PAUSE,
16, stock_media_pause_16,
24, stock_media_pause_24);
add_icon2 (factory, GTK_STOCK_MEDIA_PLAY,
16, stock_media_play_16,
24, stock_media_play_24);
add_icon_bidi2 (factory, GTK_STOCK_MEDIA_PLAY,
16, stock_media_play_16, stock_media_play_rtl_16,
24, stock_media_play_24, stock_media_play_rtl_24);
add_icon2 (factory, GTK_STOCK_MEDIA_PREVIOUS,
16, stock_media_previous_16,
24, stock_media_previous_24);
add_icon_bidi2 (factory, GTK_STOCK_MEDIA_PREVIOUS,
16, stock_media_previous_16, stock_media_next_16,
24, stock_media_previous_24, stock_media_next_24);
add_icon2 (factory, GTK_STOCK_MEDIA_RECORD,
16, stock_media_record_16,
24, stock_media_record_24);
add_icon2 (factory, GTK_STOCK_MEDIA_REWIND,
16, stock_media_rewind_16,
24, stock_media_rewind_24);
add_icon_bidi2 (factory, GTK_STOCK_MEDIA_REWIND,
16, stock_media_rewind_16, stock_media_forward_16,
24, stock_media_rewind_24, stock_media_forward_24);
add_icon2 (factory, GTK_STOCK_MEDIA_STOP,
16, stock_media_stop_16,

View File

@ -80,6 +80,8 @@ IMAGES = \
stock_media_pause_24.png \
stock_media_play_16.png \
stock_media_play_24.png \
stock_media_play_rtl_16.png \
stock_media_play_rtl_24.png \
stock_media_previous_16.png \
stock_media_previous_24.png \
stock_media_record_16.png \
@ -252,6 +254,8 @@ VARIABLES3 = \
stock_media_pause_24 $(srcdir)/stock_media_pause_24.png \
stock_media_play_16 $(srcdir)/stock_media_play_16.png \
stock_media_play_24 $(srcdir)/stock_media_play_24.png \
stock_media_play_rtl_16 $(srcdir)/stock_media_play_rtl_16.png \
stock_media_play_rtl_24 $(srcdir)/stock_media_play_24.png \
stock_media_previous_16 $(srcdir)/stock_media_previous_16.png \
stock_media_previous_24 $(srcdir)/stock_media_previous_24.png \
stock_media_record_16 $(srcdir)/stock_media_record_16.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B