]> Pileus Git - ~andy/gtk/commitdiff
gtk/Makefile.am (STOCK_ICONS) gtk/stock-icons/16/gtk-page-setup.png added
authorSven Neumann <sven@gimp.org>
Mon, 18 Feb 2008 15:01:04 +0000 (15:01 +0000)
committerSven Neumann <neo@src.gnome.org>
Mon, 18 Feb 2008 15:01:04 +0000 (15:01 +0000)
2008-02-18  Sven Neumann  <sven@gimp.org>

* gtk/Makefile.am (STOCK_ICONS)
* gtk/stock-icons/16/gtk-page-setup.png
* gtk/stock-icons/24/gtk-page-setup.png: added page-setup icons
taken from GNOME icon theme.

* gtk/gtkstock.[ch]: added GTK_STOCK_PAGE_SETUP. Closes bug #514410.

svn path=/trunk/; revision=19614

ChangeLog
docs/reference/ChangeLog
docs/reference/gtk/tmpl/gtkstock.sgml
gtk/Makefile.am
gtk/gtkstock.c
gtk/gtkstock.h
gtk/stock-icons/16/gtk-page-setup.png [new file with mode: 0644]
gtk/stock-icons/24/gtk-page-setup.png [new file with mode: 0644]

index f7578d375dd592bd2863518e04a14ea999a4461a..b52809feb079d0e5219222a8cb54500e0a9366da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-02-18  Sven Neumann  <sven@gimp.org>
+
+       * gtk/Makefile.am (STOCK_ICONS)
+       * gtk/stock-icons/16/gtk-page-setup.png
+       * gtk/stock-icons/24/gtk-page-setup.png: added page-setup icons
+       taken from GNOME icon theme.
+
+       * gtk/gtkstock.[ch]: added GTK_STOCK_PAGE_SETUP. Closes bug #514410.
+
 2008-02-18  Runa Bhattacharjee <runabh@gmail.com>
 
        * configure.in: Added Kannada (kn) to ALL_LINGUAS
index 4e485ed3dce2bcf7c27964302132241abedb5dad..5ec6e27733326ee82a64605e43aefaddcf19cd2f 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-18  Sven Neumann  <sven@gimp.org>
+
+       * gtk/tmpl/gtkstock.sgml: added GTK_STOCK_PAGE_SETUP.
+
 2008-02-15  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtk-docs.sgml:
index e4ac541a2d6d938567d4c8359c9d70cf7cdcc06b..65e9c3c49965948e6779b9930e759f29e05529d7 100644 (file)
@@ -720,6 +720,15 @@ The "Reverse Portrait Orientation" item.
 @Since: 2.10
 
 
+<!-- ##### MACRO GTK_STOCK_PAGE_SETUP ##### -->
+<para>
+The "Page Setup" item.
+<inlinegraphic fileref="gtk-page-setup.png" format="PNG"></inlinegraphic>
+</para>
+
+@Since: 2.14
+
+
 <!-- ##### MACRO GTK_STOCK_PASTE ##### -->
 <para>
 The "Paste" item.
index 93f48add98ccc24754dbdde76a3091682da460ac..1f8357e6990bb164f688523f69609a438d5273f4 100644 (file)
@@ -972,6 +972,7 @@ STOCK_ICONS = \
        stock-icons/16/gtk-network.png                  \
        stock-icons/16/gtk-new.png                      \
        stock-icons/16/gtk-open.png                     \
+       stock-icons/16/gtk-page-setup.png               \
        stock-icons/16/gtk-paste.png                    \
        stock-icons/16/gtk-preferences.png              \
        stock-icons/16/gtk-print.png                    \
@@ -1073,6 +1074,7 @@ STOCK_ICONS = \
        stock-icons/24/gtk-orientation-landscape.png    \
        stock-icons/24/gtk-orientation-reverse-portrait.png     \
        stock-icons/24/gtk-orientation-portrait.png     \
+       stock-icons/24/gtk-page-setup.png               \
        stock-icons/24/gtk-paste.png                    \
        stock-icons/24/gtk-preferences.png              \
        stock-icons/24/gtk-print.png                    \
index 78aef85382aaf5055c582d4b335f981839b7a890..c50cf9a23660f6861d9db6277f1756bedf13143d 100644 (file)
@@ -374,6 +374,7 @@ static const GtkStockItem builtin_items [] =
   { GTK_STOCK_ORIENTATION_PORTRAIT, N_("Portrait"), 0, 0, GETTEXT_PACKAGE },
   { GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE, N_("Reverse landscape"), 0, 0, GETTEXT_PACKAGE },
   { GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT, N_("Reverse portrait"), 0, 0, GETTEXT_PACKAGE },
+  { GTK_STOCK_PAGE_SETUP, N_("Page Set_up"), 0, 0, GETTEXT_PACKAGE },
   { GTK_STOCK_PASTE, N_("_Paste"), GDK_CONTROL_MASK, 'v', GETTEXT_PACKAGE },
   { GTK_STOCK_PREFERENCES, N_("_Preferences"), 0, 0, GETTEXT_PACKAGE },
   { GTK_STOCK_PRINT, N_("_Print"), 0, 0, GETTEXT_PACKAGE },
index 75d3b1fdc06586ad298281dfc343e9d5faaf2ab7..f4d0e3ac3255a3a527619aab5f037fbee52d1bc7 100644 (file)
@@ -139,6 +139,7 @@ void          gtk_stock_set_translate_func (const gchar      *domain,
 #define GTK_STOCK_ORIENTATION_LANDSCAPE "gtk-orientation-landscape"
 #define GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE "gtk-orientation-reverse-landscape"
 #define GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT "gtk-orientation-reverse-portrait"
+#define GTK_STOCK_PAGE_SETUP       "gtk-page-setup"
 #define GTK_STOCK_PASTE            "gtk-paste"
 #define GTK_STOCK_PREFERENCES      "gtk-preferences"
 #define GTK_STOCK_PRINT            "gtk-print"
diff --git a/gtk/stock-icons/16/gtk-page-setup.png b/gtk/stock-icons/16/gtk-page-setup.png
new file mode 100644 (file)
index 0000000..61b46d9
Binary files /dev/null and b/gtk/stock-icons/16/gtk-page-setup.png differ
diff --git a/gtk/stock-icons/24/gtk-page-setup.png b/gtk/stock-icons/24/gtk-page-setup.png
new file mode 100644 (file)
index 0000000..9acf0d5
Binary files /dev/null and b/gtk/stock-icons/24/gtk-page-setup.png differ