From 094397ad94ac79c68b614d47e158c5dc69d2903e Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 29 May 2008 12:20:59 +0000 Subject: [PATCH] themes/Default/images/tools/stock-tool-polygon-select-16.png removed 2008-05-29 Sven Neumann * themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES): * themes/Default/images/tools/stock-tool-polygon-select-16.png * themes/Default/images/tools/stock-tool-polygon-select-22.png: removed unused tool icon. * libgimpwidgets/gimpstock.[ch]: don't register GIMP_STOCK_TOOL_POLYGON_SELECT. * libgimpwidgets/gimphruler.c * libgimpwidgets/gimpvruler.c: added missing API docs. svn path=/trunk/; revision=25855 --- ChangeLog | 13 +++++++++++++ libgimpwidgets/gimphruler.c | 10 +++++++++- libgimpwidgets/gimpstock.c | 3 --- libgimpwidgets/gimpstock.h | 1 - libgimpwidgets/gimpvruler.c | 10 +++++++++- themes/Default/images/Makefile.am | 2 -- .../images/tools/stock-tool-polygon-select-16.png | Bin 398 -> 0 bytes .../images/tools/stock-tool-polygon-select-22.png | Bin 432 -> 0 bytes 8 files changed, 31 insertions(+), 8 deletions(-) delete mode 100644 themes/Default/images/tools/stock-tool-polygon-select-16.png delete mode 100644 themes/Default/images/tools/stock-tool-polygon-select-22.png diff --git a/ChangeLog b/ChangeLog index ada5e1b177..7deb8a78ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2008-05-29 Sven Neumann + + * themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES): + * themes/Default/images/tools/stock-tool-polygon-select-16.png + * themes/Default/images/tools/stock-tool-polygon-select-22.png: + removed unused tool icon. + + * libgimpwidgets/gimpstock.[ch]: don't register + GIMP_STOCK_TOOL_POLYGON_SELECT. + + * libgimpwidgets/gimphruler.c + * libgimpwidgets/gimpvruler.c: added missing API docs. + 2008-05-29 Sven Neumann * plug-ins/common/blur-gauss-selective.c (matrixmult_mmx): avoid diff --git a/libgimpwidgets/gimphruler.c b/libgimpwidgets/gimphruler.c index c487c6cf78..229b3d3155 100644 --- a/libgimpwidgets/gimphruler.c +++ b/libgimpwidgets/gimphruler.c @@ -87,7 +87,15 @@ gimp_hruler_init (GimpHRuler *hruler) widget->requisition.height = widget->style->ythickness * 2 + RULER_HEIGHT; } - +/** + * gimp_hruler_new: + * + * Creates a new horizontal ruler. + * + * Return value: a new #GimpHRuler widget. + * + * Since: GIMP 2.8 + **/ GtkWidget* gimp_hruler_new (void) { diff --git a/libgimpwidgets/gimpstock.c b/libgimpwidgets/gimpstock.c index 8001c2bf2a..f5975b9ba3 100644 --- a/libgimpwidgets/gimpstock.c +++ b/libgimpwidgets/gimpstock.c @@ -313,7 +313,6 @@ static const GtkStockItem gimp_stock_items[] = { GIMP_STOCK_TOOL_PENCIL, NULL, 0, 0, LIBGIMP_DOMAIN }, { GIMP_STOCK_TOOL_PERSPECTIVE, N_("_Transform"), 0, 0, LIBGIMP_DOMAIN }, { GIMP_STOCK_TOOL_PERSPECTIVE_CLONE, NULL, 0, 0, LIBGIMP_DOMAIN }, - { GIMP_STOCK_TOOL_POLYGON_SELECT, NULL, 0, 0, LIBGIMP_DOMAIN }, { GIMP_STOCK_TOOL_POSTERIZE, NULL, 0, 0, LIBGIMP_DOMAIN }, { GIMP_STOCK_TOOL_RECT_SELECT, NULL, 0, 0, LIBGIMP_DOMAIN }, { GIMP_STOCK_TOOL_ROTATE, N_("_Rotate"), 0, 0, LIBGIMP_DOMAIN }, @@ -464,7 +463,6 @@ gimp_stock_button_pixbufs[] = { GIMP_STOCK_TOOL_PENCIL, stock_tool_pencil_22 }, { GIMP_STOCK_TOOL_PERSPECTIVE, stock_tool_perspective_22 }, { GIMP_STOCK_TOOL_PERSPECTIVE_CLONE, stock_tool_perspective_clone_22 }, - { GIMP_STOCK_TOOL_POLYGON_SELECT, stock_tool_polygon_select_22 }, { GIMP_STOCK_TOOL_POSTERIZE, stock_tool_posterize_22 }, { GIMP_STOCK_TOOL_RECT_SELECT, stock_tool_rect_select_22 }, { GIMP_STOCK_TOOL_ROTATE, stock_tool_rotate_22 }, @@ -627,7 +625,6 @@ gimp_stock_menu_pixbufs[] = { GIMP_STOCK_TOOL_PENCIL, stock_tool_pencil_16 }, { GIMP_STOCK_TOOL_PERSPECTIVE, stock_tool_perspective_16 }, { GIMP_STOCK_TOOL_PERSPECTIVE_CLONE, stock_tool_perspective_clone_16 }, - { GIMP_STOCK_TOOL_POLYGON_SELECT, stock_tool_polygon_select_16 }, { GIMP_STOCK_TOOL_POSTERIZE, stock_tool_posterize_16 }, { GIMP_STOCK_TOOL_RECT_SELECT, stock_tool_rect_select_16 }, { GIMP_STOCK_TOOL_ROTATE, stock_tool_rotate_16 }, diff --git a/libgimpwidgets/gimpstock.h b/libgimpwidgets/gimpstock.h index d194eaa506..c402e22989 100644 --- a/libgimpwidgets/gimpstock.h +++ b/libgimpwidgets/gimpstock.h @@ -130,7 +130,6 @@ G_BEGIN_DECLS #define GIMP_STOCK_TOOL_PENCIL "gimp-tool-pencil" #define GIMP_STOCK_TOOL_PERSPECTIVE "gimp-tool-perspective" #define GIMP_STOCK_TOOL_PERSPECTIVE_CLONE "gimp-tool-perspective-clone" -#define GIMP_STOCK_TOOL_POLYGON_SELECT "gimp-tool-polygon-select" #define GIMP_STOCK_TOOL_POSTERIZE "gimp-tool-posterize" #define GIMP_STOCK_TOOL_RECT_SELECT "gimp-tool-rect-select" #define GIMP_STOCK_TOOL_ROTATE "gimp-tool-rotate" diff --git a/libgimpwidgets/gimpvruler.c b/libgimpwidgets/gimpvruler.c index cf58ef62e7..2eb4a511e5 100644 --- a/libgimpwidgets/gimpvruler.c +++ b/libgimpwidgets/gimpvruler.c @@ -87,13 +87,21 @@ gimp_vruler_init (GimpVRuler *vruler) widget->requisition.height = widget->style->ythickness * 2 + 1; } +/** + * gimp_vruler_new: + * + * Creates a new vertical ruler. + * + * Return value: a new #GimpVRuler widget. + * + * Since: GIMP 2.8 + **/ GtkWidget* gimp_vruler_new (void) { return g_object_new (GIMP_TYPE_VRULER, NULL); } - static gint gimp_vruler_motion_notify (GtkWidget *widget, GdkEventMotion *event) diff --git a/themes/Default/images/Makefile.am b/themes/Default/images/Makefile.am index 0acd3d676c..3c41ad35fe 100644 --- a/themes/Default/images/Makefile.am +++ b/themes/Default/images/Makefile.am @@ -317,8 +317,6 @@ STOCK_TOOL_IMAGES = \ tools/stock-tool-perspective-22.png \ tools/stock-tool-perspective-clone-16.png \ tools/stock-tool-perspective-clone-22.png \ - tools/stock-tool-polygon-select-16.png \ - tools/stock-tool-polygon-select-22.png \ tools/stock-tool-posterize-16.png \ tools/stock-tool-posterize-22.png \ tools/stock-tool-rect-select-16.png \ diff --git a/themes/Default/images/tools/stock-tool-polygon-select-16.png b/themes/Default/images/tools/stock-tool-polygon-select-16.png deleted file mode 100644 index 568639dc0adf0a6139f9fde12c91361f02363a1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0WW zg+Z8+Vb&Z8pdfpRr>`sfb#6&EV*`J|Hd&yMWQl7;iF1B#Zfaf$gL6@8Vo7R>LV0FM zhJw4NZ$Nk>pEyv_Z%-G;5R21SC*Acr>>$v(U(?R<;C6wfW=jGOcDJ$3V)s)}+$re7 z@|xf7yqx|f>CLw;M9)pVnOJu2%uM+o!k0=!eZzZyan5FNP4K+PDk4+AZ&H&S`wXjj zlQf%+9n#Fsp1XaV(bK}xM)678f0L6LySkM084diqzn>4EFhQc}q4y_;^YeWtC8jZ+ zX4((?o#9sQ_dPQ61b@g?Y*6sd&-^`0Nk5s5;q+5W*SJ|TH}3OOKk)t+W7nP@37Nai pI|Hk#WfJmUr%iil{^S2?@we|Rjd!LPzXk>agQu&X%Q~loCIJ1In5_T+ diff --git a/themes/Default/images/tools/stock-tool-polygon-select-22.png b/themes/Default/images/tools/stock-tool-polygon-select-22.png deleted file mode 100644 index f6efd135facb634b29625a010dd965d84fff8aab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 432 zcmV;h0Z;ykP)Px$YDq*vR5;7+luJ$mK@>&LYe0-E&^?&=;~NqtBn()vBoY{C6bJ}nT!lL@!MYB* zXsg>sjB%pzbzUmf_4?H9TOat3UlUiuO9A>(*wye-lH~i}1B7ihzM@!JHF+^xOf|co zXgVK%P;6Oc-A<2q^7nXnTp$UdxD|kqi~F@ogS*KMt!CSD!T$GHJuNpqBoZhRf&}RO zpk8TUW+`5j0o!2I=j8Yd1WpQ|#FIFOHjf-$KDXoRG-#X0l31?hiQ@RB^C|&3Ts%ml z*4n8!rTpxq@@_$BO9CZ?rdZp+bUQsWGcHc6xMb1dB=9$|VGk&7R7am|IRlD=QJ?C0 zJ=hT*?!5OvtJwzF2TDKzu&l?CA1DPy1>iZm1(Vrh#38T-UVN^jKwSYS0|!3K0sLq% z>SJbPTMu