2003-05-19 Michael Natterer <mitch@gimp.org> * libgimpcolor/gimpcolorspace.c (gimp_hsl_to_rgb): fixed to work like gimp_hls_to_rgb_int() (does the right thing now for the saturation == 0 case). Some minor cleanups. Implemented "Colorize" as suggested in bug #20509. It's not a toggle in the "Hue/Saturation" tool dialog (which would be a gross hack IMHO) but a separate tool. Fixes bug #20509. * app/base/Makefile.am * app/base/base-types.h * app/base/colorize.[ch]: the actual mapping function lives here. Its algorithm was taken from the "colorify" plug-in. * app/tools/Makefile.am * app/tools/gimpcolorizetool.[ch]: the tool. * app/tools/tools.c: register it. * app/gui/dialogs.c: session-manage its dialog. * libgimpwidgets/gimpstock.[ch] * themes/Default/images/Makefile.am * themes/Default/images/tools/stock-tool-colorize-16.png * themes/Default/images/tools/stock-tool-colorize-22.png: new icons from Jimmac. Unrelated: * app/tools/gimpbrightnesscontrasttool.c * app/tools/gimpcolorbalancetool.c * app/tools/gimphuesaturationtool.c * app/tools/gimpposterizetool.c * app/tools/gimpthresholdtool.c: don't #include "tool_manager.h"
96 lines
2.1 KiB
Makefile
96 lines
2.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappbase.a
|
|
|
|
if HAVE_ASM_MMX
|
|
mmx_sources = detect-mmx.S
|
|
else
|
|
mmx_sources =
|
|
endif
|
|
|
|
libappbase_a_SOURCES = \
|
|
base.c \
|
|
base.h \
|
|
base-enums.c \
|
|
base-enums.h \
|
|
base-types.h \
|
|
boundary.c \
|
|
boundary.h \
|
|
brush-scale.c \
|
|
brush-scale.h \
|
|
color-balance.c \
|
|
color-balance.h \
|
|
colorize.c \
|
|
colorize.h \
|
|
curves.c \
|
|
curves.h \
|
|
$(mmx_sources) \
|
|
detect-mmx.h \
|
|
gimphistogram.c \
|
|
gimphistogram.h \
|
|
gimplut.c \
|
|
gimplut.h \
|
|
hue-saturation.c \
|
|
hue-saturation.h \
|
|
levels.c \
|
|
levels.h \
|
|
lut-funcs.c \
|
|
lut-funcs.h \
|
|
pixel-processor.c \
|
|
pixel-processor.h \
|
|
pixel-region.c \
|
|
pixel-region.h \
|
|
pixel-surround.c \
|
|
pixel-surround.h \
|
|
temp-buf.c \
|
|
temp-buf.h \
|
|
threshold.c \
|
|
threshold.h \
|
|
tile.c \
|
|
tile.h \
|
|
tile-private.h \
|
|
tile-cache.c \
|
|
tile-cache.h \
|
|
tile-manager.c \
|
|
tile-manager.h \
|
|
tile-manager-private.h \
|
|
tile-manager-crop.c \
|
|
tile-manager-crop.h \
|
|
tile-swap.c \
|
|
tile-swap.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Base\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
AM_CCASFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependencies
|
|
gen_sources = xgen-bec
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
$(srcdir)/base-enums.c: $(srcdir)/base-enums.h $(GIMP_MKENUMS)
|
|
$(GIMP_MKENUMS) \
|
|
--fhead "#include \"config.h\"\n#include <glib-object.h>\n#include \"base-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
--fprod "\n/* enumerations from \"@filename@\" */" \
|
|
--vhead "\nstatic const GEnumValue @enum_name@_enum_values[] =\n{" \
|
|
--vprod " { @VALUENAME@, @valuedesc@, \"@valuenick@\" }," \
|
|
--vtail " { 0, NULL, NULL }\n};\n\nGType\n@enum_name@_get_type (void)\n{\n static GType enum_type = 0;\n\n if (!enum_type)\n enum_type = g_enum_register_static (\"@EnumName@\", @enum_name@_enum_values);\n\n return enum_type;\n}\n" \
|
|
$(srcdir)/base-enums.h > xgen-bec \
|
|
&& cp xgen-bec $(@F) \
|
|
&& rm -f xgen-bec
|