Radial gradient fill tool added

Note: Need to add to docs.
This commit is contained in:
Bill Kendrick 2021-02-20 18:08:06 -08:00
parent ecf6953f5f
commit 058191bd04
136 changed files with 6284 additions and 6138 deletions

View file

@ -41,26 +41,26 @@
enum {
FILL_FLOOD,
// FILL_GRADIENT_LINEAR,
// FILL_GRADIENT_RADIAL,
FILL_GRADIENT_RADIAL,
NUM_FILLS
};
const char *const fill_names[NUM_FILLS] = {
gettext_noop("Solid Color") /* ,
gettext_noop("Gradient (Line)"),
gettext_noop("Gradient (Radial)") */
gettext_noop("Solid"),
// gettext_noop("Linear"),
gettext_noop("Radial")
};
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 with a 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 solid color."),
// 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).")
};
const char *const fill_img_fnames[NUM_FILLS] = {
DATA_PREFIX "images/fills/solid.png" /* ,
DATA_PREFIX "images/fills/gradient_linear.png",
DATA_PREFIX "images/fills/gradient_radial.png" */
DATA_PREFIX "images/fills/solid.png",
// DATA_PREFIX "images/fills/gradient_linear.png",
DATA_PREFIX "images/fills/gradient_radial.png"
};
#endif