changed the icons to indicate what part of the context is affected by the

2004-08-12  Sven Neumann  <sven@gimp.org>

	* app/actions/context-actions.c: changed the icons to indicate
	what part of the context is affected by the action. Looks better
	in the shortcut editor.
This commit is contained in:
Sven Neumann 2004-08-11 23:14:02 +00:00 committed by Sven Neumann
parent 34841a6ddd
commit 9cabd2942f
2 changed files with 120 additions and 114 deletions

View File

@ -1,3 +1,9 @@
2004-08-12 Sven Neumann <sven@gimp.org>
* app/actions/context-actions.c: changed the icons to indicate
what part of the context is affected by the action. Looks better
in the shortcut editor.
2004-08-11 Michael Natterer <mitch@gimp.org>
* plug-ins/common/cartoon.c

View File

@ -72,31 +72,31 @@ static GimpActionEntry context_actions[] =
static GimpEnumActionEntry context_foreground_red_actions[] =
{
{ "context-foreground-red-set", GTK_STOCK_JUMP_TO,
{ "context-foreground-red-set", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-foreground-red-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-foreground-red-minimum", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-foreground-red-maximum", GTK_STOCK_GOTO_LAST,
{ "context-foreground-red-maximum", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-foreground-red-decrease", GTK_STOCK_REMOVE,
{ "context-foreground-red-decrease", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-foreground-red-increase", GTK_STOCK_ADD,
{ "context-foreground-red-increase", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-foreground-red-decrease-skip", GTK_STOCK_REMOVE,
{ "context-foreground-red-decrease-skip", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-foreground-red-increase-skip", GTK_STOCK_ADD,
{ "context-foreground-red-increase-skip", GIMP_STOCK_CHANNEL_RED,
"Foreground Red Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -104,31 +104,31 @@ static GimpEnumActionEntry context_foreground_red_actions[] =
static GimpEnumActionEntry context_foreground_green_actions[] =
{
{ "context-foreground-green-set", GTK_STOCK_JUMP_TO,
{ "context-foreground-green-set", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-foreground-green-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-foreground-green-minimum", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-foreground-green-maximum", GTK_STOCK_GOTO_LAST,
{ "context-foreground-green-maximum", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-foreground-green-decrease", GTK_STOCK_REMOVE,
{ "context-foreground-green-decrease", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-foreground-green-increase", GTK_STOCK_ADD,
{ "context-foreground-green-increase", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-foreground-green-decrease-skip", GTK_STOCK_REMOVE,
{ "context-foreground-green-decrease-skip", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-foreground-green-increase-skip", GTK_STOCK_ADD,
{ "context-foreground-green-increase-skip", GIMP_STOCK_CHANNEL_GREEN,
"Foreground Green Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -136,31 +136,31 @@ static GimpEnumActionEntry context_foreground_green_actions[] =
static GimpEnumActionEntry context_foreground_blue_actions[] =
{
{ "context-foreground-blue-set", GTK_STOCK_JUMP_TO,
{ "context-foreground-blue-set", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-foreground-blue-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-foreground-blue-minimum", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-foreground-blue-maximum", GTK_STOCK_GOTO_LAST,
{ "context-foreground-blue-maximum", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-foreground-blue-decrease", GTK_STOCK_REMOVE,
{ "context-foreground-blue-decrease", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-foreground-blue-increase", GTK_STOCK_ADD,
{ "context-foreground-blue-increase", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-foreground-blue-decrease-skip", GTK_STOCK_REMOVE,
{ "context-foreground-blue-decrease-skip", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-foreground-blue-increase-skip", GTK_STOCK_ADD,
{ "context-foreground-blue-increase-skip", GIMP_STOCK_CHANNEL_BLUE,
"Foreground Blue Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -168,31 +168,31 @@ static GimpEnumActionEntry context_foreground_blue_actions[] =
static GimpEnumActionEntry context_background_red_actions[] =
{
{ "context-background-red-set", GTK_STOCK_JUMP_TO,
{ "context-background-red-set", GIMP_STOCK_CHANNEL_RED,
"Background Red Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-background-red-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-background-red-minimum", GIMP_STOCK_CHANNEL_RED,
"Background Red Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-background-red-maximum", GTK_STOCK_GOTO_LAST,
{ "context-background-red-maximum", GIMP_STOCK_CHANNEL_RED,
"Background Red Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-background-red-decrease", GTK_STOCK_REMOVE,
{ "context-background-red-decrease", GIMP_STOCK_CHANNEL_RED,
"Background Red Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-background-red-increase", GTK_STOCK_ADD,
{ "context-background-red-increase", GIMP_STOCK_CHANNEL_RED,
"Background Red Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-background-red-decrease-skip", GTK_STOCK_REMOVE,
{ "context-background-red-decrease-skip", GIMP_STOCK_CHANNEL_RED,
"Background Red Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-background-red-increase-skip", GTK_STOCK_ADD,
{ "context-background-red-increase-skip", GIMP_STOCK_CHANNEL_RED,
"Background Red Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -200,31 +200,31 @@ static GimpEnumActionEntry context_background_red_actions[] =
static GimpEnumActionEntry context_background_green_actions[] =
{
{ "context-background-green-set", GTK_STOCK_JUMP_TO,
{ "context-background-green-set", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-background-green-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-background-green-minimum", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-background-green-maximum", GTK_STOCK_GOTO_LAST,
{ "context-background-green-maximum", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-background-green-decrease", GTK_STOCK_REMOVE,
{ "context-background-green-decrease", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-background-green-increase", GTK_STOCK_ADD,
{ "context-background-green-increase", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-background-green-decrease-skip", GTK_STOCK_REMOVE,
{ "context-background-green-decrease-skip", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-background-green-increase-skip", GTK_STOCK_ADD,
{ "context-background-green-increase-skip", GIMP_STOCK_CHANNEL_GREEN,
"Background Green Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -232,31 +232,31 @@ static GimpEnumActionEntry context_background_green_actions[] =
static GimpEnumActionEntry context_background_blue_actions[] =
{
{ "context-background-blue-set", GTK_STOCK_JUMP_TO,
{ "context-background-blue-set", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Set", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-background-blue-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-background-blue-minimum", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Minimum", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-background-blue-maximum", GTK_STOCK_GOTO_LAST,
{ "context-background-blue-maximum", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Maximum", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-background-blue-decrease", GTK_STOCK_REMOVE,
{ "context-background-blue-decrease", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Decrease", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-background-blue-increase", GTK_STOCK_ADD,
{ "context-background-blue-increase", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Increase", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-background-blue-decrease-skip", GTK_STOCK_REMOVE,
{ "context-background-blue-decrease-skip", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Decrease 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-background-blue-increase-skip", GTK_STOCK_ADD,
{ "context-background-blue-increase-skip", GIMP_STOCK_CHANNEL_BLUE,
"Background Blue Increase 10%", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -264,31 +264,31 @@ static GimpEnumActionEntry context_background_blue_actions[] =
static GimpEnumActionEntry context_opacity_actions[] =
{
{ "context-opacity-set", GTK_STOCK_JUMP_TO,
{ "context-opacity-set", GIMP_STOCK_TRANSPARENCY,
"Set Transparency", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-opacity-transparent", GTK_STOCK_GOTO_FIRST,
{ "context-opacity-transparent", GIMP_STOCK_TRANSPARENCY,
"Completely Transparent", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-opacity-opaque", GTK_STOCK_GOTO_LAST,
{ "context-opacity-opaque", GIMP_STOCK_TRANSPARENCY,
"Completely Opaque", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-opacity-decrease", GTK_STOCK_REMOVE,
{ "context-opacity-decrease", GIMP_STOCK_TRANSPARENCY,
"More Transparent", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-opacity-increase", GTK_STOCK_ADD,
{ "context-opacity-increase", GIMP_STOCK_TRANSPARENCY,
"More Opaque", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-opacity-decrease-skip", GTK_STOCK_REMOVE,
{ "context-opacity-decrease-skip", GIMP_STOCK_TRANSPARENCY,
"10% More Transparent", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-opacity-increase-skip", GTK_STOCK_ADD,
{ "context-opacity-increase-skip", GIMP_STOCK_TRANSPARENCY,
"10% More Opaque", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL }
@ -296,19 +296,19 @@ static GimpEnumActionEntry context_opacity_actions[] =
static GimpEnumActionEntry context_tool_select_actions[] =
{
{ "context-tool-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-tool-select-first", GIMP_STOCK_TOOLS,
"First Tool", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-tool-select-last", GTK_STOCK_GOTO_LAST,
{ "context-tool-select-last", GIMP_STOCK_TOOLS,
"Last Tool", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-tool-select-previous", GTK_STOCK_GO_BACK,
{ "context-tool-select-previous", GIMP_STOCK_TOOLS,
"Previous Tool", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-tool-select-next", GTK_STOCK_GO_FORWARD,
{ "context-tool-select-next", GIMP_STOCK_TOOLS,
"Next Tool", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -316,19 +316,19 @@ static GimpEnumActionEntry context_tool_select_actions[] =
static GimpEnumActionEntry context_brush_select_actions[] =
{
{ "context-brush-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-brush-select-first", GIMP_STOCK_BRUSH,
"First Brush", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-select-last", GTK_STOCK_GOTO_LAST,
{ "context-brush-select-last", GIMP_STOCK_BRUSH,
"Last Brush", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-select-previous", GTK_STOCK_GO_BACK,
{ "context-brush-select-previous", GIMP_STOCK_BRUSH,
"Previous Brush", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-select-next", GTK_STOCK_GO_FORWARD,
{ "context-brush-select-next", GIMP_STOCK_BRUSH,
"Next Brush", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -336,19 +336,19 @@ static GimpEnumActionEntry context_brush_select_actions[] =
static GimpEnumActionEntry context_pattern_select_actions[] =
{
{ "context-pattern-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-pattern-select-first", GIMP_STOCK_PATTERN,
"First Pattern", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-pattern-select-last", GTK_STOCK_GOTO_LAST,
{ "context-pattern-select-last", GIMP_STOCK_PATTERN,
"Last Pattern", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-pattern-select-previous", GTK_STOCK_GO_BACK,
{ "context-pattern-select-previous", GIMP_STOCK_PATTERN,
"Previous Pattern", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-pattern-select-next", GTK_STOCK_GO_FORWARD,
{ "context-pattern-select-next", GIMP_STOCK_PATTERN,
"Next Pattern", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -356,19 +356,19 @@ static GimpEnumActionEntry context_pattern_select_actions[] =
static GimpEnumActionEntry context_palette_select_actions[] =
{
{ "context-palette-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-palette-select-first", GIMP_STOCK_PALETTE,
"First Palette", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-palette-select-last", GTK_STOCK_GOTO_LAST,
{ "context-palette-select-last", GIMP_STOCK_PALETTE,
"Last Palette", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-palette-select-previous", GTK_STOCK_GO_BACK,
{ "context-palette-select-previous", GIMP_STOCK_PALETTE,
"Previous Palette", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-palette-select-next", GTK_STOCK_GO_FORWARD,
{ "context-palette-select-next", GIMP_STOCK_PALETTE,
"Next Palette", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -376,19 +376,19 @@ static GimpEnumActionEntry context_palette_select_actions[] =
static GimpEnumActionEntry context_gradient_select_actions[] =
{
{ "context-gradient-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-gradient-select-first", GIMP_STOCK_GRADIENT,
"First Gradient", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-gradient-select-last", GTK_STOCK_GOTO_LAST,
{ "context-gradient-select-last", GIMP_STOCK_GRADIENT,
"Last Gradient", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-gradient-select-previous", GTK_STOCK_GO_BACK,
{ "context-gradient-select-previous", GIMP_STOCK_GRADIENT,
"Previous Gradient", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-gradient-select-next", GTK_STOCK_GO_FORWARD,
{ "context-gradient-select-next", GIMP_STOCK_GRADIENT,
"Next Gradient", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -396,19 +396,19 @@ static GimpEnumActionEntry context_gradient_select_actions[] =
static GimpEnumActionEntry context_font_select_actions[] =
{
{ "context-font-select-first", GTK_STOCK_GOTO_FIRST,
{ "context-font-select-first", GIMP_STOCK_FONT,
"First Font", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-font-select-last", GTK_STOCK_GOTO_LAST,
{ "context-font-select-last", GIMP_STOCK_FONT,
"Last Font", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-font-select-previous", GTK_STOCK_GO_BACK,
{ "context-font-select-previous", GIMP_STOCK_FONT,
"Previous Font", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-font-select-next", GTK_STOCK_GO_FORWARD,
{ "context-font-select-next", GIMP_STOCK_FONT,
"Next Font", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL }
@ -416,47 +416,47 @@ static GimpEnumActionEntry context_font_select_actions[] =
static GimpEnumActionEntry context_brush_shape_actions[] =
{
{ "context-brush-shape-circle", GIMP_STOCK_SHAPE_CIRCLE,
"Circle", NULL, NULL,
{ "context-brush-shape-circle", GIMP_STOCK_BRUSH,
"Circular Brush", NULL, NULL,
GIMP_BRUSH_GENERATED_CIRCLE,
NULL },
{ "context-brush-shape-square", GIMP_STOCK_SHAPE_SQUARE,
"Square", NULL, NULL,
{ "context-brush-shape-square", GIMP_STOCK_BRUSH,
"Square Brush", NULL, NULL,
GIMP_BRUSH_GENERATED_SQUARE,
NULL },
{ "context-brush-shape-diamond", GIMP_STOCK_SHAPE_DIAMOND,
"Diamond", NULL, NULL,
{ "context-brush-shape-diamond", GIMP_STOCK_BRUSH,
"Diamond Brush", NULL, NULL,
GIMP_BRUSH_GENERATED_DIAMOND,
NULL }
};
static GimpEnumActionEntry context_brush_radius_actions[] =
{
{ "context-brush-radius-set", GTK_STOCK_JUMP_TO,
{ "context-brush-radius-set", GIMP_STOCK_BRUSH,
"Set Brush Radius", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-brush-radius-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-brush-radius-minimum", GIMP_STOCK_BRUSH,
"Minumum Radius", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-radius-maximum", GTK_STOCK_GOTO_LAST,
{ "context-brush-radius-maximum", GIMP_STOCK_BRUSH,
"Maximum Radius", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-radius-decrease", GTK_STOCK_GO_BACK,
{ "context-brush-radius-decrease", GIMP_STOCK_BRUSH,
"Decrease Radius", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-radius-increase", GTK_STOCK_GO_FORWARD,
{ "context-brush-radius-increase", GIMP_STOCK_BRUSH,
"Increase Radius", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-brush-radius-decrease-skip", GTK_STOCK_GO_BACK,
{ "context-brush-radius-decrease-skip", GIMP_STOCK_BRUSH,
"Decrease Radius More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-brush-radius-increase-skip", GTK_STOCK_GO_FORWARD,
{ "context-brush-radius-increase-skip", GIMP_STOCK_BRUSH,
"Increase Radius More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL },
@ -464,31 +464,31 @@ static GimpEnumActionEntry context_brush_radius_actions[] =
static GimpEnumActionEntry context_brush_spikes_actions[] =
{
{ "context-brush-spikes-set", GTK_STOCK_JUMP_TO,
{ "context-brush-spikes-set", GIMP_STOCK_BRUSH,
"Set Brush Spikes", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-brush-spikes-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-brush-spikes-minimum", GIMP_STOCK_BRUSH,
"Minumum Spikes", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-spikes-maximum", GTK_STOCK_GOTO_LAST,
{ "context-brush-spikes-maximum", GIMP_STOCK_BRUSH,
"Maximum Spikes", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-spikes-decrease", GTK_STOCK_GO_BACK,
{ "context-brush-spikes-decrease", GIMP_STOCK_BRUSH,
"Decrease Spikes", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-spikes-increase", GTK_STOCK_GO_FORWARD,
{ "context-brush-spikes-increase", GIMP_STOCK_BRUSH,
"Increase Spikes", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-brush-spikes-decrease-skip", GTK_STOCK_GO_BACK,
{ "context-brush-spikes-decrease-skip", GIMP_STOCK_BRUSH,
"Decrease Spikes More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-brush-spikes-increase-skip", GTK_STOCK_GO_FORWARD,
{ "context-brush-spikes-increase-skip", GIMP_STOCK_BRUSH,
"Increase Spikes More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL },
@ -496,31 +496,31 @@ static GimpEnumActionEntry context_brush_spikes_actions[] =
static GimpEnumActionEntry context_brush_hardness_actions[] =
{
{ "context-brush-hardness-set", GTK_STOCK_JUMP_TO,
{ "context-brush-hardness-set", GIMP_STOCK_BRUSH,
"Set Brush Hardness", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-brush-hardness-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-brush-hardness-minimum", GIMP_STOCK_BRUSH,
"Minumum Hardness", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-hardness-maximum", GTK_STOCK_GOTO_LAST,
{ "context-brush-hardness-maximum", GIMP_STOCK_BRUSH,
"Maximum Hardness", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-hardness-decrease", GTK_STOCK_GO_BACK,
{ "context-brush-hardness-decrease", GIMP_STOCK_BRUSH,
"Decrease Hardness", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-hardness-increase", GTK_STOCK_GO_FORWARD,
{ "context-brush-hardness-increase", GIMP_STOCK_BRUSH,
"Increase Hardness", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-brush-hardness-decrease-skip", GTK_STOCK_GO_BACK,
{ "context-brush-hardness-decrease-skip", GIMP_STOCK_BRUSH,
"Decrease Hardness More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-brush-hardness-increase-skip", GTK_STOCK_GO_FORWARD,
{ "context-brush-hardness-increase-skip", GIMP_STOCK_BRUSH,
"Increase Hardness More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL },
@ -528,31 +528,31 @@ static GimpEnumActionEntry context_brush_hardness_actions[] =
static GimpEnumActionEntry context_brush_aspect_actions[] =
{
{ "context-brush-aspect-set", GTK_STOCK_JUMP_TO,
{ "context-brush-aspect-set", GIMP_STOCK_BRUSH,
"Set Brush Aspect", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-brush-aspect-minimum", GTK_STOCK_GOTO_FIRST,
{ "context-brush-aspect-minimum", GIMP_STOCK_BRUSH,
"Minumum Aspect", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-aspect-maximum", GTK_STOCK_GOTO_LAST,
{ "context-brush-aspect-maximum", GIMP_STOCK_BRUSH,
"Maximum Aspect", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-aspect-decrease", GTK_STOCK_GO_BACK,
{ "context-brush-aspect-decrease", GIMP_STOCK_BRUSH,
"Decrease Aspect", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-aspect-increase", GTK_STOCK_GO_FORWARD,
{ "context-brush-aspect-increase", GIMP_STOCK_BRUSH,
"Increase Aspect", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-brush-aspect-decrease-skip", GTK_STOCK_GO_BACK,
{ "context-brush-aspect-decrease-skip", GIMP_STOCK_BRUSH,
"Decrease Aspect More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-brush-aspect-increase-skip", GTK_STOCK_GO_FORWARD,
{ "context-brush-aspect-increase-skip", GIMP_STOCK_BRUSH,
"Increase Aspect More", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL },
@ -560,31 +560,31 @@ static GimpEnumActionEntry context_brush_aspect_actions[] =
static GimpEnumActionEntry context_brush_angle_actions[] =
{
{ "context-brush-angle-set", GTK_STOCK_JUMP_TO,
{ "context-brush-angle-set", GIMP_STOCK_BRUSH,
"Set Brush Angle", NULL, NULL,
GIMP_ACTION_SELECT_SET,
NULL },
{ "context-brush-angle-minimum", GIMP_STOCK_FLIP_HORIZONTAL,
{ "context-brush-angle-minimum", GIMP_STOCK_BRUSH,
"Horizontal", NULL, NULL,
GIMP_ACTION_SELECT_FIRST,
NULL },
{ "context-brush-angle-maximum", GIMP_STOCK_FLIP_VERTICAL,
{ "context-brush-angle-maximum", GIMP_STOCK_BRUSH,
"Vertical", NULL, NULL,
GIMP_ACTION_SELECT_LAST,
NULL },
{ "context-brush-angle-decrease", GIMP_STOCK_ROTATE_90,
{ "context-brush-angle-decrease", GIMP_STOCK_BRUSH,
"Rotate Right", NULL, NULL,
GIMP_ACTION_SELECT_PREVIOUS,
NULL },
{ "context-brush-angle-increase", GIMP_STOCK_ROTATE_270,
{ "context-brush-angle-increase", GIMP_STOCK_BRUSH,
"Rotate Left", NULL, NULL,
GIMP_ACTION_SELECT_NEXT,
NULL },
{ "context-brush-angle-decrease-skip", GIMP_STOCK_ROTATE_90,
{ "context-brush-angle-decrease-skip", GIMP_STOCK_BRUSH,
"Rotate Right 15 degrees", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_PREVIOUS,
NULL },
{ "context-brush-angle-increase-skip", GIMP_STOCK_ROTATE_270,
{ "context-brush-angle-increase-skip", GIMP_STOCK_BRUSH,
"Rotate Left 15 degrees", NULL, NULL,
GIMP_ACTION_SELECT_SKIP_NEXT,
NULL },