mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Add stock_file_16.png, stock_file_24.png, stock_directory_16.png and
2004-07-06 Matthias Clasen <mclasen@redhat.com> * gtk/stock-icons/Makefile.am: Add stock_file_16.png, stock_file_24.png, stock_directory_16.png and stock_directory_24.png. * gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY): * gtk/gtkiconfactory.c (get_default_icons): New stock icons as fallbacks for gtkfilechooser. Currently these are the same images as the "new" and "open" items...
This commit is contained in:
parent
f80b81db14
commit
6b27f20668
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2004-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add stock_file_16.png,
|
||||
stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
|
||||
|
||||
* gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY):
|
||||
* gtk/gtkiconfactory.c (get_default_icons): New stock icons as
|
||||
fallbacks for gtkfilechooser. Currently these are the same images
|
||||
as the "new" and "open" items...
|
||||
|
||||
Tue Jul 6 10:00:22 2004 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
Fix for #136496, Pawel Salek:
|
||||
|
@ -1,3 +1,13 @@
|
||||
2004-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add stock_file_16.png,
|
||||
stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
|
||||
|
||||
* gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY):
|
||||
* gtk/gtkiconfactory.c (get_default_icons): New stock icons as
|
||||
fallbacks for gtkfilechooser. Currently these are the same images
|
||||
as the "new" and "open" items...
|
||||
|
||||
Tue Jul 6 10:00:22 2004 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
Fix for #136496, Pawel Salek:
|
||||
|
@ -1,3 +1,13 @@
|
||||
2004-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add stock_file_16.png,
|
||||
stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
|
||||
|
||||
* gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY):
|
||||
* gtk/gtkiconfactory.c (get_default_icons): New stock icons as
|
||||
fallbacks for gtkfilechooser. Currently these are the same images
|
||||
as the "new" and "open" items...
|
||||
|
||||
Tue Jul 6 10:00:22 2004 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
Fix for #136496, Pawel Salek:
|
||||
|
@ -1,3 +1,13 @@
|
||||
2004-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/stock-icons/Makefile.am: Add stock_file_16.png,
|
||||
stock_file_24.png, stock_directory_16.png and stock_directory_24.png.
|
||||
|
||||
* gtk/gtkstock.h (GTK_STOCK_FILE, GTK_STOCK_DIRECTORY):
|
||||
* gtk/gtkiconfactory.c (get_default_icons): New stock icons as
|
||||
fallbacks for gtkfilechooser. Currently these are the same images
|
||||
as the "new" and "open" items...
|
||||
|
||||
Tue Jul 6 10:00:22 2004 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
Fix for #136496, Pawel Salek:
|
||||
|
@ -695,6 +695,14 @@ get_default_icons (GtkIconFactory *factory)
|
||||
16, stock_up_arrow_16,
|
||||
24, stock_up_arrow_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_FILE,
|
||||
16, stock_file_16,
|
||||
24, stock_file_24);
|
||||
|
||||
add_icon2 (factory, GTK_STOCK_DIRECTORY,
|
||||
16, stock_directory_16,
|
||||
24, stock_directory_24);
|
||||
|
||||
/* Generic size only */
|
||||
|
||||
add_icon (factory, GTK_STOCK_CLEAR, 24, stock_clear_24);
|
||||
|
@ -84,7 +84,9 @@ void gtk_stock_item_free (GtkStockItem *item);
|
||||
#define GTK_STOCK_COPY "gtk-copy"
|
||||
#define GTK_STOCK_CUT "gtk-cut"
|
||||
#define GTK_STOCK_DELETE "gtk-delete"
|
||||
#define GTK_STOCK_DIRECTORY "gtk-directory"
|
||||
#define GTK_STOCK_EXECUTE "gtk-execute"
|
||||
#define GTK_STOCK_FILE "gtk-file"
|
||||
#define GTK_STOCK_FIND "gtk-find"
|
||||
#define GTK_STOCK_FIND_AND_REPLACE "gtk-find-and-replace"
|
||||
#define GTK_STOCK_FLOPPY "gtk-floppy"
|
||||
|
@ -34,6 +34,8 @@ IMAGES = \
|
||||
stock_dialog_info_48.png \
|
||||
stock_dialog_question_48.png \
|
||||
stock_dialog_warning_48.png \
|
||||
stock_directory_16.png \
|
||||
stock_directory_24.png \
|
||||
stock_dnd_multiple_32.png \
|
||||
stock_down_arrow_16.png \
|
||||
stock_down_arrow_24.png \
|
||||
@ -41,12 +43,14 @@ IMAGES = \
|
||||
stock_exec_24.png \
|
||||
stock_exit_16.png \
|
||||
stock_exit_24.png \
|
||||
stock_file_16.png \
|
||||
stock_file_24.png \
|
||||
stock_first_16.png \
|
||||
stock_first_24.png \
|
||||
stock_font_16.png \
|
||||
stock_font_24.png \
|
||||
stock_harddisk_16.png \
|
||||
stock_harddisk_24.png \
|
||||
stock_harddisk_16.png \
|
||||
stock_harddisk_24.png \
|
||||
stock_help_16.png \
|
||||
stock_help_24.png \
|
||||
stock_home_16.png \
|
||||
@ -175,6 +179,8 @@ VARIABLES2 = \
|
||||
stock_dialog_info_48 $(srcdir)/stock_dialog_info_48.png \
|
||||
stock_dialog_question_48 $(srcdir)/stock_dialog_question_48.png \
|
||||
stock_dialog_warning_48 $(srcdir)/stock_dialog_warning_48.png \
|
||||
stock_directory_16 $(srcdir)/stock_directory_16.png \
|
||||
stock_directory_24 $(srcdir)/stock_directory_24.png \
|
||||
stock_dnd_32 $(srcdir)/stock_dnd_32.png \
|
||||
stock_down_arrow_16 $(srcdir)/stock_down_arrow_16.png \
|
||||
stock_down_arrow_24 $(srcdir)/stock_down_arrow_24.png \
|
||||
@ -182,6 +188,8 @@ VARIABLES2 = \
|
||||
stock_exec_24 $(srcdir)/stock_exec_24.png \
|
||||
stock_exit_16 $(srcdir)/stock_exit_16.png \
|
||||
stock_exit_24 $(srcdir)/stock_exit_24.png \
|
||||
stock_file_16 $(srcdir)/stock_file_16.png \
|
||||
stock_file_24 $(srcdir)/stock_file_24.png \
|
||||
stock_first_16 $(srcdir)/stock_first_16.png \
|
||||
stock_first_24 $(srcdir)/stock_first_24.png \
|
||||
stock_font_16 $(srcdir)/stock_font_16.png
|
||||
|
BIN
gtk/stock-icons/stock_directory_16.png
Normal file
BIN
gtk/stock-icons/stock_directory_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 448 B |
BIN
gtk/stock-icons/stock_directory_24.png
Normal file
BIN
gtk/stock-icons/stock_directory_24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
gtk/stock-icons/stock_file_16.png
Normal file
BIN
gtk/stock-icons/stock_file_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 349 B |
BIN
gtk/stock-icons/stock_file_24.png
Normal file
BIN
gtk/stock-icons/stock_file_24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 757 B |
Loading…
Reference in New Issue
Block a user