When using the Linear Gradient fill tool, the angle of the gradient is now is shown (in the instructions at the bottom). h/t Miyagi Andel for the idea
77 lines
2.5 KiB
C
77 lines
2.5 KiB
C
/*
|
||
fill_tools.h
|
||
|
||
Fill tool -- tool variations (for selector)
|
||
Tux Paint - A simple drawing program for children.
|
||
|
||
Copyright (c) 2002-2023 by Bill Kendrick and others; see AUTHORS.txt
|
||
bill@newbreedsoftware.com
|
||
https://tuxpaint.org/
|
||
|
||
Flood fill code based on Wikipedia example:
|
||
http://www.wikipedia.org/wiki/Flood_fill/C_example
|
||
by Damian Yerrick - http://www.wikipedia.org/wiki/Damian_Yerrick
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
(See COPYING.txt)
|
||
|
||
Last updated: July 1, 2023
|
||
$Id$
|
||
*/
|
||
|
||
#ifndef FILL_TOOLS_H
|
||
#define FILL_TOOLS_H
|
||
|
||
#ifndef gettext_noop
|
||
#define gettext_noop(String) String
|
||
#endif
|
||
|
||
enum
|
||
{
|
||
FILL_FLOOD,
|
||
FILL_BRUSH,
|
||
FILL_GRADIENT_LINEAR,
|
||
FILL_GRADIENT_RADIAL,
|
||
FILL_GRADIENT_SHAPED,
|
||
NUM_FILLS
|
||
};
|
||
|
||
const char *const fill_names[NUM_FILLS] = {
|
||
gettext_noop("Solid"),
|
||
gettext_noop("Brush"),
|
||
gettext_noop("Linear"),
|
||
gettext_noop("Radial"),
|
||
gettext_noop("Shaped")
|
||
};
|
||
|
||
const char *const fill_tips[NUM_FILLS] = {
|
||
gettext_noop("Click to fill an area with a solid color."),
|
||
gettext_noop("Click and drag to fill an area by hand, using a brush."),
|
||
gettext_noop("Click and drag to fill an area with a linear gradient (from the chosen color to transparent)."),
|
||
gettext_noop("Click to fill an area with a radial gradient (from the chosen color to transparent)."),
|
||
gettext_noop("Click to fill an area with a shaped gradient (from the chosen color to transparent).")
|
||
};
|
||
|
||
const char *const fill_img_fnames[NUM_FILLS] = {
|
||
DATA_PREFIX "images/fills/solid.png",
|
||
DATA_PREFIX "images/fills/brush.png",
|
||
DATA_PREFIX "images/fills/gradient_linear.png",
|
||
DATA_PREFIX "images/fills/gradient_radial.png",
|
||
DATA_PREFIX "images/fills/gradient_shaped.png"
|
||
};
|
||
|
||
#define TIP_FILL_LINEAR_MOVING gettext_noop("Click and drag to fill an area with a linear gradient (from the chosen color to transparent). (Your gradient’s angle is %.0f degrees.)")
|
||
|
||
#endif
|