[gimp] theme: Temporary icons for dynamics and tool presets



commit 951c1354830d32d322f7b761c55a79e4969221bf
Author: Alexia Death <alexiadeath gmail com>
Date:   Thu Aug 12 00:08:19 2010 +0300

    theme: Temporary icons for dynamics and tool presets
    
    Staring at a row of paintbrush icons got really annoying.

 libgimpwidgets/gimpstock.c                     |    8 ++++++++
 libgimpwidgets/gimpstock.h                     |    6 ++++--
 themes/Default/images/Makefile.am              |    6 +++++-
 themes/Default/images/makefile.msc             |    4 ++++
 themes/Default/images/stock-dynamics-16.png    |  Bin 0 -> 521 bytes
 themes/Default/images/stock-dynamics-22.png    |  Bin 0 -> 641 bytes
 themes/Default/images/stock-tool-preset-16.png |  Bin 0 -> 836 bytes
 themes/Default/images/stock-tool-preset-22.png |  Bin 0 -> 1225 bytes
 8 files changed, 21 insertions(+), 3 deletions(-)
---
diff --git a/libgimpwidgets/gimpstock.c b/libgimpwidgets/gimpstock.c
index 73e6598..a05458b 100644
--- a/libgimpwidgets/gimpstock.c
+++ b/libgimpwidgets/gimpstock.c
@@ -297,6 +297,8 @@ static const GtkStockItem gimp_stock_items[] =
 
   { GIMP_STOCK_FRAME,                    NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_TEXTURE,                  NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_DYNAMICS,                 NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_TOOL_PRESET,              NULL,        0, 0, LIBGIMP_DOMAIN },
 
   { GIMP_STOCK_TOOL_AIRBRUSH,            NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_TOOL_ALIGN,               NULL,        0, 0, LIBGIMP_DOMAIN },
@@ -493,6 +495,9 @@ gimp_stock_button_pixbufs[] =
   { GIMP_STOCK_TOOL_THRESHOLD,           stock_tool_threshold_22           },
   { GIMP_STOCK_TOOL_ZOOM,                stock_tool_zoom_22                },
 
+  { GIMP_STOCK_DYNAMICS,                 stock_dynamics_22                 },
+  { GIMP_STOCK_TOOL_PRESET,              stock_tool_preset_22              },
+
   { GIMP_STOCK_INFO,                     stock_info_24                     },
   { GIMP_STOCK_WARNING,                  stock_warning_24                  },
   { GIMP_TOILET_PAPER,                   stock_toilet_paper_24             },
@@ -657,6 +662,9 @@ gimp_stock_menu_pixbufs[] =
   { GIMP_STOCK_TOOL_THRESHOLD,           stock_tool_threshold_16           },
   { GIMP_STOCK_TOOL_ZOOM,                stock_tool_zoom_16                },
 
+  { GIMP_STOCK_DYNAMICS,                 stock_dynamics_16                 },
+  { GIMP_STOCK_TOOL_PRESET,              stock_tool_preset_16              },
+
   { GIMP_STOCK_INFO,                     stock_info_16                     },
   { GIMP_STOCK_WARNING,                  stock_warning_16                  },
   { GIMP_STOCK_WILBER,                   stock_wilber_16                   },
diff --git a/libgimpwidgets/gimpstock.h b/libgimpwidgets/gimpstock.h
index f51389b..71e5b6a 100644
--- a/libgimpwidgets/gimpstock.h
+++ b/libgimpwidgets/gimpstock.h
@@ -140,6 +140,9 @@ G_BEGIN_DECLS
 #define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
 #define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
 
+#define GIMP_STOCK_DYNAMICS                 "gimp-dynamics"
+#define GIMP_STOCK_TOOL_PRESET              "gimp-tool-preset"
+
 /*  in menu size:  */
 
 #define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
@@ -270,14 +273,13 @@ G_BEGIN_DECLS
 /*  missing icons:  */
 
 #define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
-#define GIMP_STOCK_DYNAMICS                 GIMP_STOCK_TOOL_PAINTBRUSH
 #define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
 #define GIMP_STOCK_DETACH                   GTK_STOCK_CONVERT
 #define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
 #define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
 #define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
 #define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
-#define GIMP_STOCK_TOOL_PRESET              GIMP_STOCK_TOOL_PAINTBRUSH
+
 
 
 void   gimp_stock_init (void);
diff --git a/themes/Default/images/Makefile.am b/themes/Default/images/Makefile.am
index d8aec5a..8777bc3 100644
--- a/themes/Default/images/Makefile.am
+++ b/themes/Default/images/Makefile.am
@@ -14,7 +14,7 @@ CORE_VARIABLES = \
 	stock_question_64 $(srcdir)/stock-question-64.png
 
 
-## Compiled in stock icons 
+## Compiled in stock icons
 
 STOCK_MENU_IMAGES = \
 	stock-cap-butt-16.png				\
@@ -48,6 +48,8 @@ STOCK_MENU_IMAGES = \
 	stock-display-filter-gamma-16.png		\
 	stock-display-filter-lcms-16.png		\
 	stock-display-filter-proof-16.png		\
+	stock-dynamics-16.png				\
+	stock-dynamics-22.png				\
 	stock-eye-12.png				\
 	stock-flip-horizontal-16.png			\
 	stock-flip-vertical-16.png			\
@@ -115,6 +117,8 @@ STOCK_MENU_IMAGES = \
 	stock-text-layer-16.png				\
 	stock-toilet-paper-16.png			\
 	stock-tool-options-16.png			\
+	stock-tool-preset-16.png			\
+	stock-tool-preset-22.png			\
 	stock-tools-16.png				\
 	stock-transparency-16.png			\
 	stock-undo-history-16.png			\
diff --git a/themes/Default/images/makefile.msc b/themes/Default/images/makefile.msc
index d98d927..06251d8 100644
--- a/themes/Default/images/makefile.msc
+++ b/themes/Default/images/makefile.msc
@@ -80,6 +80,8 @@ STOCK_VARIABLES = \
 	stock_display_filter_proof_16	stock-display-filter-proof-16.png \
 	stock_display_filter_proof_24	stock-display-filter-proof-24.png \
 	stock_duplicate_16		stock-duplicate-16.png	\
+	stock_dynamics_16	stock-dynamics-16.png	\
+	stock_dynamics_22	stock-dynamics-22.png	\
 	stock_edit_16		stock-edit-16.png	\
 	stock_error_64		stock-error-64.png	\
 	stock_eye_12		stock-eye-12.png	\
@@ -208,6 +210,8 @@ STOCK_VARIABLES = \
 	stock_toilet_paper_16		stock-toilet-paper-16.png	\
 	stock_toilet_paper_24		stock-toilet-paper-24.png	\
 	stock_tool_options_16		stock-tool-options-16.png	\
+	stock_tool_preset_16		stock-tool-preset-16.png	\
+	stock_tool_preset_22		stock-tool-preset-22.png        \
 	stock_tool_options_24		stock-tool-options-24.png	\
 	stock_tools_16		stock-tools-16.png \
 	stock_tools_24		stock-tools-24.png \
diff --git a/themes/Default/images/stock-dynamics-16.png b/themes/Default/images/stock-dynamics-16.png
new file mode 100644
index 0000000..e836a4d
Binary files /dev/null and b/themes/Default/images/stock-dynamics-16.png differ
diff --git a/themes/Default/images/stock-dynamics-22.png b/themes/Default/images/stock-dynamics-22.png
new file mode 100644
index 0000000..c9a144a
Binary files /dev/null and b/themes/Default/images/stock-dynamics-22.png differ
diff --git a/themes/Default/images/stock-tool-preset-16.png b/themes/Default/images/stock-tool-preset-16.png
new file mode 100644
index 0000000..8da01c0
Binary files /dev/null and b/themes/Default/images/stock-tool-preset-16.png differ
diff --git a/themes/Default/images/stock-tool-preset-22.png b/themes/Default/images/stock-tool-preset-22.png
new file mode 100644
index 0000000..e618e72
Binary files /dev/null and b/themes/Default/images/stock-tool-preset-22.png differ



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]