2002-03-14 Michael Natterer <mitch@gimp.org> Re-enabled the display filters. They work exactly the same way as before except for the color_area pseudo-display. More stuff to come... * app/display/Makefile.am: build them again. * app/display/gimpdisplayshell-filter-dialog.[ch] * app/display/gimpdisplayshell-filter.[ch]: changed to the new namespace, work on GimpDisplayShell instead of GimpDisplay. * app/display/gimpdisplayshell-render.c * app/display/gimpdisplayshell.[ch]: changed accordingly. * app/gui/dialogs-constructors.c: enabled the dialog constructor. * app/gui/gui.c: call the init() function. * app/gui/menus.c: enabled the menu entry, but moved it to <Image>/View. Moved "Undo History..." to <Image>/Image. * modules/Makefile.am: build and install the modules. * modules/cdisplay_gamma.c * modules/cdisplay_highcontrast.c: made them compile with minimal changes. Unrelated: * app/undo_history.c: connect to the image's "disconnect", not "destroy" signal. * app/tools/gimpselectiontool.c: mask out the irrelevant parts of the "state" passed to the modifier_key() func, so tool_options button toggling works with other modifiers (e.g. num_lock) pressed.
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/modules
|
|
|
|
CPPFLAGS = @STRIP_BEGIN@ \
|
|
-DMODULE_COMPILATION \
|
|
@STRIP_END@
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/intl \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
EXTRA_DIST = \
|
|
makefile.mingw \
|
|
makefile.mingw.in \
|
|
makefile.msc \
|
|
module.def \
|
|
gimpmodregister.c \
|
|
gimpmodregister.h \
|
|
colorsel_water.c
|
|
|
|
libexec_LTLIBRARIES = @STRIP_BEGIN@ \
|
|
libcolorsel_triangle.la \
|
|
libcdisplay_gamma.la \
|
|
libcdisplay_highcontrast.la \
|
|
@STRIP_END@
|
|
|
|
## libcolorsel_gtk.la \
|
|
## libcolorsel_water.la \
|
|
|
|
EXTRA_LTLIBRARIES =
|
|
|
|
## libcolorsel_gtk_la_SOURCES = colorsel_gtk.c
|
|
## libcolorsel_gtk_la_LDFLAGS = -avoid-version -module
|
|
## libcolorsel_gtk_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcolorsel_triangle_la_SOURCES = colorsel_triangle.c
|
|
libcolorsel_triangle_la_LDFLAGS = -avoid-version -module
|
|
libcolorsel_triangle_la_LIBADD = $(GTK_LIBS)
|
|
|
|
## libcolorsel_water_la_SOURCES = colorsel_water.c
|
|
## libcolorsel_water_la_LDFLAGS = -avoid-version -module
|
|
## libcolorsel_water_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcdisplay_gamma_la_SOURCES = cdisplay_gamma.c
|
|
libcdisplay_gamma_la_LDFLAGS = -avoid-version -module
|
|
libcdisplay_gamma_la_LIBADD = $(GTK_LIBS)
|
|
|
|
libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c
|
|
libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module
|
|
libcdisplay_highcontrast_la_LIBADD = $(GTK_LIBS)
|