Add some new stock items. (#166480, Kristof Vansant)
2005-06-25 Matthias Clasen <mclasen@redhat.com> Add some new stock items. (#166480, Kristof Vansant) * gtk/stock-icons/stock_fullscreen_16.png: * gtk/stock-icons/stock_fullscreen_24.png: * gtk/stock-icons/stock_leave_fullscreen_16.png: * gtk/stock-icons/stock_leave_fullscreen_24.png: * gtk/stock-icons/stock_info_16.png: * gtk/stock-icons/stock_info_24.png: New icons. * gtk/stock-icons/Makefile.am: Add new icons. * gtk/gtkstock.h: Define names for the new icons. * gtk/gtkstock.c (builtin_items): Register new stock items. * gtk/gtkiconfactory.c (get_default_icons): Register new stock icons.
This commit is contained in:
committed by
Matthias Clasen
parent
458d71a96a
commit
effe3785cf
20
ChangeLog
20
ChangeLog
@ -1,3 +1,23 @@
|
||||
2005-06-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Add some new stock items. (#166480, Kristof Vansant)
|
||||
|
||||
* gtk/stock-icons/stock_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_info_16.png:
|
||||
* gtk/stock-icons/stock_info_24.png: New icons.
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add new icons.
|
||||
|
||||
* gtk/gtkstock.h: Define names for the new icons.
|
||||
|
||||
* gtk/gtkstock.c (builtin_items): Register new stock items.
|
||||
|
||||
* gtk/gtkiconfactory.c (get_default_icons): Register new
|
||||
stock icons.
|
||||
|
||||
2005-06-24 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
|
||||
|
||||
@ -1,3 +1,23 @@
|
||||
2005-06-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Add some new stock items. (#166480, Kristof Vansant)
|
||||
|
||||
* gtk/stock-icons/stock_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_info_16.png:
|
||||
* gtk/stock-icons/stock_info_24.png: New icons.
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add new icons.
|
||||
|
||||
* gtk/gtkstock.h: Define names for the new icons.
|
||||
|
||||
* gtk/gtkstock.c (builtin_items): Register new stock items.
|
||||
|
||||
* gtk/gtkiconfactory.c (get_default_icons): Register new
|
||||
stock icons.
|
||||
|
||||
2005-06-24 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
|
||||
|
||||
@ -1,3 +1,23 @@
|
||||
2005-06-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Add some new stock items. (#166480, Kristof Vansant)
|
||||
|
||||
* gtk/stock-icons/stock_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_16.png:
|
||||
* gtk/stock-icons/stock_leave_fullscreen_24.png:
|
||||
* gtk/stock-icons/stock_info_16.png:
|
||||
* gtk/stock-icons/stock_info_24.png: New icons.
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add new icons.
|
||||
|
||||
* gtk/gtkstock.h: Define names for the new icons.
|
||||
|
||||
* gtk/gtkstock.c (builtin_items): Register new stock items.
|
||||
|
||||
* gtk/gtkiconfactory.c (get_default_icons): Register new
|
||||
stock icons.
|
||||
|
||||
2005-06-24 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
|
||||
|
||||
@ -544,6 +544,14 @@ get_default_icons (GtkIconFactory *factory)
|
||||
16, stock_font_16,
|
||||
24, stock_font_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_FULLSCREEN,
|
||||
16, stock_fullscreen_16,
|
||||
24, stock_fullscreen_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_LEAVE_FULLSCREEN,
|
||||
16, stock_leave_fullscreen_16,
|
||||
24, stock_leave_fullscreen_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_HARDDISK,
|
||||
16, stock_harddisk_16,
|
||||
24, stock_harddisk_24);
|
||||
@ -556,6 +564,10 @@ get_default_icons (GtkIconFactory *factory)
|
||||
16, stock_home_16,
|
||||
24, stock_home_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_INFO,
|
||||
16, stock_info_16,
|
||||
24, stock_info_24);
|
||||
|
||||
add_icon_bidi2 (factory, GTK_STOCK_JUMP_TO,
|
||||
16, stock_jump_to_16, stock_jump_to_rtl_16,
|
||||
24, stock_jump_to_24, stock_jump_to_rtl_24);
|
||||
|
||||
@ -330,6 +330,8 @@ static const GtkStockItem builtin_items [] =
|
||||
{ GTK_STOCK_FIND, N_("_Find"), GDK_CONTROL_MASK, 'f', GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_FIND_AND_REPLACE, N_("Find and _Replace"), GDK_CONTROL_MASK, 'r', GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_FLOPPY, N_("_Floppy"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_FULLSCREEN, N_("_Fullscreen"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_LEAVE_FULLSCREEN, N_("_Leave Fullscreen"), 0, 0, GETTEXT_PACKAGE },
|
||||
/* translators, strip the prefix up to and including the first | */
|
||||
{ GTK_STOCK_GOTO_BOTTOM, N_("Navigation|_Bottom"), 0, 0, GETTEXT_PACKAGE },
|
||||
/* translators, strip the prefix up to and including the first | */
|
||||
@ -352,6 +354,7 @@ static const GtkStockItem builtin_items [] =
|
||||
{ GTK_STOCK_INDENT, N_("Increase Indent"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_UNINDENT, N_("Decrease Indent"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_INDEX, N_("_Index"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_INFO, N_("_Information"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_ITALIC, N_("_Italic"), 0, 0, GETTEXT_PACKAGE },
|
||||
{ GTK_STOCK_JUMP_TO, N_("_Jump to"), 0, 0, GETTEXT_PACKAGE },
|
||||
/* translators, strip the prefix up to and including the first | */
|
||||
|
||||
@ -97,6 +97,7 @@ void gtk_stock_set_translate_func (const gchar *domain,
|
||||
#define GTK_STOCK_FIND "gtk-find"
|
||||
#define GTK_STOCK_FIND_AND_REPLACE "gtk-find-and-replace"
|
||||
#define GTK_STOCK_FLOPPY "gtk-floppy"
|
||||
#define GTK_STOCK_FULLSCREEN "gtk-fullscreen"
|
||||
#define GTK_STOCK_GOTO_BOTTOM "gtk-goto-bottom"
|
||||
#define GTK_STOCK_GOTO_FIRST "gtk-goto-first"
|
||||
#define GTK_STOCK_GOTO_LAST "gtk-goto-last"
|
||||
@ -110,6 +111,7 @@ void gtk_stock_set_translate_func (const gchar *domain,
|
||||
#define GTK_STOCK_HOME "gtk-home"
|
||||
#define GTK_STOCK_INDEX "gtk-index"
|
||||
#define GTK_STOCK_INDENT "gtk-indent"
|
||||
#define GTK_STOCK_INFO "gtk-info"
|
||||
#define GTK_STOCK_UNINDENT "gtk-unindent"
|
||||
#define GTK_STOCK_ITALIC "gtk-italic"
|
||||
#define GTK_STOCK_JUMP_TO "gtk-jump-to"
|
||||
@ -117,6 +119,7 @@ void gtk_stock_set_translate_func (const gchar *domain,
|
||||
#define GTK_STOCK_JUSTIFY_FILL "gtk-justify-fill"
|
||||
#define GTK_STOCK_JUSTIFY_LEFT "gtk-justify-left"
|
||||
#define GTK_STOCK_JUSTIFY_RIGHT "gtk-justify-right"
|
||||
#define GTK_STOCK_LEAVE_FULLSCREEN "gtk-leave-fullscreen"
|
||||
#define GTK_STOCK_MISSING_IMAGE "gtk-missing-image"
|
||||
#define GTK_STOCK_MEDIA_FORWARD "gtk-media-forward"
|
||||
#define GTK_STOCK_MEDIA_NEXT "gtk-media-next"
|
||||
|
||||
@ -57,6 +57,8 @@ IMAGES = \
|
||||
stock_first_24.png \
|
||||
stock_font_16.png \
|
||||
stock_font_24.png \
|
||||
stock_fullscreen_16.png \
|
||||
stock_fullscreen_24.png \
|
||||
stock_harddisk_16.png \
|
||||
stock_harddisk_24.png \
|
||||
stock_help_16.png \
|
||||
@ -65,12 +67,16 @@ IMAGES = \
|
||||
stock_home_24.png \
|
||||
stock_index_16.png \
|
||||
stock_index_24.png \
|
||||
stock_info_16.png \
|
||||
stock_info_24.png \
|
||||
stock_jump_to_16.png \
|
||||
stock_jump_to_24.png \
|
||||
stock_jump_to_rtl_16.png \
|
||||
stock_jump_to_rtl_24.png \
|
||||
stock_last_16.png \
|
||||
stock_last_24.png \
|
||||
stock_leave_fullscreen_16.png \
|
||||
stock_leave_fullscreen_24.png \
|
||||
stock_left_arrow_16.png \
|
||||
stock_left_arrow_24.png \
|
||||
stock_media_forward_16.png \
|
||||
@ -234,6 +240,8 @@ VARIABLES2 = \
|
||||
stock_font_16 $(srcdir)/stock_font_16.png
|
||||
VARIABLES3 = \
|
||||
stock_font_24 $(srcdir)/stock_font_24.png \
|
||||
stock_fullscreen_16 $(srcdir)/stock_fullscreen_16.png \
|
||||
stock_fullscreen_24 $(srcdir)/stock_fullscreen_24.png \
|
||||
stock_help_16 $(srcdir)/stock_help_16.png \
|
||||
stock_help_24 $(srcdir)/stock_help_24.png \
|
||||
stock_harddisk_16 $(srcdir)/stock_harddisk_16.png \
|
||||
@ -242,12 +250,16 @@ VARIABLES3 = \
|
||||
stock_home_24 $(srcdir)/stock_home_24.png \
|
||||
stock_index_16 $(srcdir)/stock_index_16.png \
|
||||
stock_index_24 $(srcdir)/stock_index_24.png \
|
||||
stock_info_16 $(srcdir)/stock_info_16.png \
|
||||
stock_info_24 $(srcdir)/stock_info_24.png \
|
||||
stock_jump_to_16 $(srcdir)/stock_jump_to_16.png \
|
||||
stock_jump_to_24 $(srcdir)/stock_jump_to_24.png \
|
||||
stock_jump_to_rtl_16 $(srcdir)/stock_jump_to_rtl_16.png \
|
||||
stock_jump_to_rtl_24 $(srcdir)/stock_jump_to_rtl_24.png \
|
||||
stock_last_16 $(srcdir)/stock_last_16.png \
|
||||
stock_last_24 $(srcdir)/stock_last_24.png \
|
||||
stock_leave_fullscreen_16 $(srcdir)/stock_leave_fullscreen_16.png \
|
||||
stock_leave_fullscreen_24 $(srcdir)/stock_leave_fullscreen_24.png \
|
||||
stock_left_arrow_16 $(srcdir)/stock_left_arrow_16.png \
|
||||
stock_left_arrow_24 $(srcdir)/stock_left_arrow_24.png \
|
||||
stock_missing_image_16 $(srcdir)/stock_broken_image_16.png \
|
||||
|
||||
BIN
gtk/stock-icons/stock_fullscreen_16.png
Normal file
BIN
gtk/stock-icons/stock_fullscreen_16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 505 B |
BIN
gtk/stock-icons/stock_fullscreen_24.png
Normal file
BIN
gtk/stock-icons/stock_fullscreen_24.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 674 B |
BIN
gtk/stock-icons/stock_info_16.png
Normal file
BIN
gtk/stock-icons/stock_info_16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 456 B |
BIN
gtk/stock-icons/stock_info_24.png
Normal file
BIN
gtk/stock-icons/stock_info_24.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 966 B |
BIN
gtk/stock-icons/stock_leave_fullscreen_16.png
Normal file
BIN
gtk/stock-icons/stock_leave_fullscreen_16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 396 B |
BIN
gtk/stock-icons/stock_leave_fullscreen_24.png
Normal file
BIN
gtk/stock-icons/stock_leave_fullscreen_24.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 519 B |
Reference in New Issue
Block a user