themes/Default/images/Makefile.am
2003-04-04 Sven Neumann <sven@gimp.org> * themes/Default/images/Makefile.am * themes/Default/images/stock-gradient-bilinear-16.png * themes/Default/images/stock-gradient-conical-asymmetric-16.png * themes/Default/images/stock-gradient-conical-symmetric-16.png * themes/Default/images/stock-gradient-linear-16.png * themes/Default/images/stock-gradient-radial-16.png * themes/Default/images/stock-gradient-shapeburst-angular-16.png * themes/Default/images/stock-gradient-shapeburst-dimpled-16.png * themes/Default/images/stock-gradient-shapeburst-spherical-16.png * themes/Default/images/stock-gradient-spiral-anticlockwise-16.png * themes/Default/images/stock-gradient-spiral-clockwise-16.png * themes/Default/images/stock-gradient-square-16.png * libgimpwidgets/gimpstock.[ch]: added new icons drawn by Jimmac. * app/tools/gimpblendoptions.c (gimp_blend_options_gui): use the new icons in the gradient type menu.
19
ChangeLog
|
@ -1,3 +1,22 @@
|
|||
2003-04-04 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* themes/Default/images/Makefile.am
|
||||
* themes/Default/images/stock-gradient-bilinear-16.png
|
||||
* themes/Default/images/stock-gradient-conical-asymmetric-16.png
|
||||
* themes/Default/images/stock-gradient-conical-symmetric-16.png
|
||||
* themes/Default/images/stock-gradient-linear-16.png
|
||||
* themes/Default/images/stock-gradient-radial-16.png
|
||||
* themes/Default/images/stock-gradient-shapeburst-angular-16.png
|
||||
* themes/Default/images/stock-gradient-shapeburst-dimpled-16.png
|
||||
* themes/Default/images/stock-gradient-shapeburst-spherical-16.png
|
||||
* themes/Default/images/stock-gradient-spiral-anticlockwise-16.png
|
||||
* themes/Default/images/stock-gradient-spiral-clockwise-16.png
|
||||
* themes/Default/images/stock-gradient-square-16.png
|
||||
* libgimpwidgets/gimpstock.[ch]: added new icons drawn by Jimmac.
|
||||
|
||||
* app/tools/gimpblendoptions.c (gimp_blend_options_gui): use the
|
||||
new icons in the gradient type menu.
|
||||
|
||||
2003-04-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpcontainertreeview.[ch]: removed
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#include "widgets/gimpcontainerpopup.h"
|
||||
#include "widgets/gimpdock.h"
|
||||
#include "widgets/gimpdialogfactory.h"
|
||||
#include "widgets/gimpenummenu.h"
|
||||
#include "widgets/gimppropwidgets.h"
|
||||
|
||||
#include "gimpblendoptions.h"
|
||||
|
@ -232,7 +233,7 @@ gimp_blend_options_gui (GimpToolOptions *tool_options)
|
|||
GtkWidget *vbox;
|
||||
GtkWidget *table;
|
||||
GtkWidget *frame;
|
||||
GtkWidget *optionmenu;
|
||||
GtkWidget *menu;
|
||||
GtkWidget *button;
|
||||
GtkWidget *preview;
|
||||
|
||||
|
@ -264,20 +265,22 @@ gimp_blend_options_gui (GimpToolOptions *tool_options)
|
|||
FALSE, 0.0, 0.0);
|
||||
|
||||
/* the gradient type menu */
|
||||
optionmenu = gimp_prop_enum_option_menu_new (config, "gradient-type", 0, 0);
|
||||
menu = gimp_prop_enum_option_menu_new (config, "gradient-type", 0, 0);
|
||||
gimp_enum_option_menu_set_stock_prefix (GTK_OPTION_MENU (menu),
|
||||
"gimp-gradient");
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 4,
|
||||
_("Shape:"), 1.0, 0.5,
|
||||
optionmenu, 2, TRUE);
|
||||
menu, 2, TRUE);
|
||||
|
||||
/* the repeat option */
|
||||
optionmenu = gimp_prop_enum_option_menu_new (config, "repeat", 0, 0);
|
||||
menu = gimp_prop_enum_option_menu_new (config, "repeat", 0, 0);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 5,
|
||||
_("Repeat:"), 1.0, 0.5,
|
||||
optionmenu, 2, TRUE);
|
||||
menu, 2, TRUE);
|
||||
|
||||
g_signal_connect (config, "notify::gradient-type",
|
||||
G_CALLBACK (blend_options_gradient_type_notify),
|
||||
optionmenu);
|
||||
menu);
|
||||
|
||||
/* frame for supersampling options */
|
||||
frame = gtk_frame_new (NULL);
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-04-04 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpwidgets/libgimpwidgets-sections.txt
|
||||
* libgimpwidgets/tmpl/gimpstock.sgml: Jimmac keeps drawing icons
|
||||
like crazy.
|
||||
|
||||
2003-04-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* libgimpbase/libgimpbase-sections.txt
|
||||
|
|
|
@ -302,6 +302,17 @@ GIMP_STOCK_SELECTION_INTERSECT
|
|||
GIMP_STOCK_SELECTION_STROKE
|
||||
GIMP_STOCK_SELECTION_TO_CHANNEL
|
||||
GIMP_STOCK_SELECTION_TO_PATH
|
||||
GIMP_STOCK_GRADIENT_LINEAR
|
||||
GIMP_STOCK_GRADIENT_BILINEAR
|
||||
GIMP_STOCK_GRADIENT_RADIAL
|
||||
GIMP_STOCK_GRADIENT_SQUARE
|
||||
GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC
|
||||
GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC
|
||||
GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL
|
||||
GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR
|
||||
GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED
|
||||
GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE
|
||||
GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE
|
||||
GIMP_STOCK_GRAVITY_NORTH_WEST
|
||||
GIMP_STOCK_GRAVITY_NORTH
|
||||
GIMP_STOCK_GRAVITY_NORTH_EAST
|
||||
|
|
|
@ -271,6 +271,83 @@ size).
|
|||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_LINEAR ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-linear-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_BILINEAR ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-bilinear-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_RADIAL ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-radial-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SQUARE ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-square-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-conical-symmetric-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-conical-asymmetric-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-shapeburst-spherical-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-shapeburst-angular-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-shapeburst-dimpled-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-spiral-clockwise-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gradient-spiral-anticlockwise-16.png" format="png"></inlinegraphic>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### MACRO GIMP_STOCK_GRAVITY_NORTH_WEST ##### -->
|
||||
<para>
|
||||
<inlinegraphic fileref="stock-gravity-north-west-24.png" format="png"></inlinegraphic>
|
||||
|
|
|
@ -106,6 +106,18 @@ static GtkStockItem gimp_stock_items[] =
|
|||
{ GIMP_STOCK_RESET, N_("_Reset"), 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_VISIBLE, N_("Visible"), 0, 0, LIBGIMP_DOMAIN },
|
||||
|
||||
{ GIMP_STOCK_GRADIENT_LINEAR, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_BILINEAR, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_RADIAL, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SQUARE, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
|
||||
{ GIMP_STOCK_GRAVITY_EAST, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRAVITY_NORTH, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
{ GIMP_STOCK_GRAVITY_NORTH_EAST, NULL, 0, 0, LIBGIMP_DOMAIN },
|
||||
|
@ -406,6 +418,18 @@ gimp_stock_menu_pixbufs[] =
|
|||
{ GIMP_STOCK_DEFAULT_COLORS, stock_default_colors_12 },
|
||||
{ GIMP_STOCK_SWAP_COLORS, stock_swap_colors_12 },
|
||||
|
||||
{ GIMP_STOCK_GRADIENT_LINEAR, stock_gradient_linear_16 },
|
||||
{ GIMP_STOCK_GRADIENT_BILINEAR, stock_gradient_bilinear_16 },
|
||||
{ GIMP_STOCK_GRADIENT_RADIAL, stock_gradient_radial_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SQUARE, stock_gradient_square_16 },
|
||||
{ GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC, stock_gradient_conical_symmetric_16 },
|
||||
{ GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC, stock_gradient_conical_asymmetric_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR, stock_gradient_shapeburst_angular_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL, stock_gradient_shapeburst_spherical_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED, stock_gradient_shapeburst_dimpled_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE, stock_gradient_spiral_clockwise_16 },
|
||||
{ GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE, stock_gradient_spiral_anticlockwise_16 },
|
||||
|
||||
{ GIMP_STOCK_TOOL_AIRBRUSH, stock_tool_airbrush_16 },
|
||||
{ GIMP_STOCK_TOOL_BEZIER_SELECT, stock_tool_bezier_select_16 },
|
||||
{ GIMP_STOCK_TOOL_BLEND, stock_tool_blend_16 },
|
||||
|
|
|
@ -39,6 +39,19 @@ G_BEGIN_DECLS
|
|||
#define GIMP_STOCK_RESET "gimp-reset"
|
||||
#define GIMP_STOCK_VISIBLE "gimp-visible"
|
||||
|
||||
#define GIMP_STOCK_GRADIENT_LINEAR "gimp-gradient-linear"
|
||||
#define GIMP_STOCK_GRADIENT_BILINEAR "gimp-gradient-bilinear"
|
||||
#define GIMP_STOCK_GRADIENT_RADIAL "gimp-gradient-radial"
|
||||
#define GIMP_STOCK_GRADIENT_SQUARE "gimp-gradient-square"
|
||||
#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC "gimp-gradient-conical-symmetric"
|
||||
#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC "gimp-gradient-conical-asymmetric"
|
||||
#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR "gimp-gradient-shapeburst-angular"
|
||||
#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
|
||||
#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED "gimp-gradient-shapeburst-dimpled"
|
||||
#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE "gimp-gradient-spiral-clockwise"
|
||||
#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
|
||||
|
||||
|
||||
#define GIMP_STOCK_GRAVITY_EAST "gimp-gravity-east"
|
||||
#define GIMP_STOCK_GRAVITY_NORTH "gimp-gravity-north"
|
||||
#define GIMP_STOCK_GRAVITY_NORTH_EAST "gimp-gravity-north-east"
|
||||
|
|
|
@ -36,6 +36,17 @@ STOCK_MENU_IMAGES = \
|
|||
stock-default-colors-12.png \
|
||||
stock-device-status-16.png \
|
||||
stock-eye-12.png \
|
||||
stock-gradient-bilinear-16.png \
|
||||
stock-gradient-conical-asymmetric-16.png\
|
||||
stock-gradient-conical-symmetric-16.png \
|
||||
stock-gradient-linear-16.png \
|
||||
stock-gradient-radial-16.png \
|
||||
stock-gradient-shapeburst-angular-16.png\
|
||||
stock-gradient-shapeburst-dimpled-16.png\
|
||||
stock-gradient-shapeburst-spherical-16.png\
|
||||
stock-gradient-spiral-anticlockwise-16.png\
|
||||
stock-gradient-spiral-clockwise-16.png \
|
||||
stock-gradient-square-16.png \
|
||||
stock-grid-16.png \
|
||||
stock-image-16.png \
|
||||
stock-images-16.png \
|
||||
|
|
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 438 B |
After Width: | Height: | Size: 515 B |
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 616 B |
After Width: | Height: | Size: 370 B |
After Width: | Height: | Size: 364 B |
After Width: | Height: | Size: 364 B |
After Width: | Height: | Size: 699 B |
After Width: | Height: | Size: 665 B |
After Width: | Height: | Size: 215 B |