Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
2005-02-05 20:13:22 +08:00
|
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
2004-07-06 02:36:24 +08:00
|
|
|
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
2004-01-22 11:51:46 +08:00
|
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
2003-05-24 01:28:07 +08:00
|
|
|
|
2005-09-03 03:57:44 +08:00
|
|
|
if PLATFORM_WIN32
|
2003-01-01 09:23:56 +08:00
|
|
|
no_undefined = -no-undefined
|
|
|
|
endif
|
|
|
|
|
2002-08-28 00:38:29 +08:00
|
|
|
libdir = $(gimpplugindir)/modules
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
|
2002-06-08 07:00:46 +08:00
|
|
|
INCLUDES = \
|
2003-11-21 22:44:00 +08:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
$(GTK_CFLAGS) \
|
2002-06-08 07:00:46 +08:00
|
|
|
-I$(includedir)
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
|
1999-03-09 05:59:55 +08:00
|
|
|
EXTRA_DIST = \
|
2003-01-19 20:44:31 +08:00
|
|
|
makefile.msc
|
1999-03-09 05:59:55 +08:00
|
|
|
|
2003-11-21 22:44:00 +08:00
|
|
|
if HAVE_LCMS
|
2005-02-21 08:45:17 +08:00
|
|
|
cdisplay_lcms_module = libcdisplay_lcms.la
|
2003-11-21 22:44:00 +08:00
|
|
|
cdisplay_proof_module = libcdisplay_proof.la
|
|
|
|
endif
|
|
|
|
|
2007-02-21 07:08:12 +08:00
|
|
|
if PLATFORM_WIN32
|
|
|
|
else
|
|
|
|
controller_midi_module = libcontroller_midi.la
|
|
|
|
endif
|
|
|
|
|
2004-06-16 10:18:17 +08:00
|
|
|
if HAVE_LINUX_INPUT
|
|
|
|
controller_linux_input_module = libcontroller_linux_input.la
|
|
|
|
endif
|
|
|
|
|
2007-02-21 03:49:06 +08:00
|
|
|
if HAVE_DX_DINPUT
|
|
|
|
controller_dx_dinput_module = libcontroller_dx_dinput.la
|
|
|
|
endif
|
|
|
|
|
2002-08-28 00:38:29 +08:00
|
|
|
lib_LTLIBRARIES = \
|
2006-10-11 16:57:29 +08:00
|
|
|
libcolorsel_cmyk.la \
|
2000-05-27 09:30:21 +08:00
|
|
|
libcolorsel_triangle.la \
|
2002-12-16 23:25:37 +08:00
|
|
|
libcolorsel_water.la \
|
|
|
|
libcdisplay_colorblind.la \
|
2002-03-15 06:42:50 +08:00
|
|
|
libcdisplay_gamma.la \
|
2003-11-21 22:44:00 +08:00
|
|
|
libcdisplay_highcontrast.la \
|
2005-02-21 08:45:17 +08:00
|
|
|
$(cdisplay_lcms_module) \
|
2004-06-16 10:18:17 +08:00
|
|
|
$(cdisplay_proof_module) \
|
2007-02-21 07:08:12 +08:00
|
|
|
$(controller_midi_module) \
|
2007-02-21 03:49:06 +08:00
|
|
|
$(controller_linux_input_module)\
|
|
|
|
$(controller_dx_dinput_module)
|
2003-11-21 22:44:00 +08:00
|
|
|
|
2002-03-15 06:42:50 +08:00
|
|
|
|
2005-02-05 20:13:22 +08:00
|
|
|
modules_libadd = $(libgimpmodule) $(libgimpwidgets) $(GTK_LIBS)
|
|
|
|
|
|
|
|
colorsel_libadd = $(libgimpcolor) $(modules_libadd)
|
2007-08-07 22:42:08 +08:00
|
|
|
cdisplay_libadd = $(libgimpbase) $(libgimpconfig) $(libgimpcolor) $(modules_libadd)
|
2005-02-05 20:13:22 +08:00
|
|
|
controller_libadd = $(modules_libadd)
|
2004-07-06 02:36:24 +08:00
|
|
|
|
2006-10-11 16:57:29 +08:00
|
|
|
if HAVE_LCMS
|
|
|
|
libcolorsel_cmyk_la_SOURCES = colorsel_cmyk_lcms.c
|
2006-10-23 18:25:04 +08:00
|
|
|
libcolorsel_cmyk_la_LIBADD = $(libgimpconfig) $(colorsel_libadd) $(LIBLCMS)
|
2006-10-11 16:57:29 +08:00
|
|
|
else
|
2003-07-15 08:29:34 +08:00
|
|
|
libcolorsel_cmyk_la_SOURCES = colorsel_cmyk.c
|
2004-07-06 02:36:24 +08:00
|
|
|
libcolorsel_cmyk_la_LIBADD = $(colorsel_libadd)
|
2006-10-11 16:57:29 +08:00
|
|
|
endif
|
2003-07-15 08:29:34 +08:00
|
|
|
|
2006-10-11 16:57:29 +08:00
|
|
|
libcolorsel_cmyk_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2006-09-26 16:55:41 +08:00
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
libcolorsel_triangle_la_SOURCES = colorsel_triangle.c
|
2003-01-01 09:23:56 +08:00
|
|
|
libcolorsel_triangle_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-07-06 02:36:24 +08:00
|
|
|
libcolorsel_triangle_la_LIBADD = $(colorsel_libadd)
|
1999-05-09 00:34:29 +08:00
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
libcolorsel_water_la_SOURCES = colorsel_water.c
|
2003-01-01 09:23:56 +08:00
|
|
|
libcolorsel_water_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-07-06 02:36:24 +08:00
|
|
|
libcolorsel_water_la_LIBADD = $(colorsel_libadd)
|
1999-10-05 03:26:07 +08:00
|
|
|
|
2002-12-16 23:25:37 +08:00
|
|
|
libcdisplay_colorblind_la_SOURCES = cdisplay_colorblind.c
|
2003-01-01 09:23:56 +08:00
|
|
|
libcdisplay_colorblind_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-07-06 02:36:24 +08:00
|
|
|
libcdisplay_colorblind_la_LIBADD = $(cdisplay_libadd)
|
2002-12-16 23:25:37 +08:00
|
|
|
|
2002-03-15 06:42:50 +08:00
|
|
|
libcdisplay_gamma_la_SOURCES = cdisplay_gamma.c
|
2003-01-01 09:23:56 +08:00
|
|
|
libcdisplay_gamma_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-07-06 02:36:24 +08:00
|
|
|
libcdisplay_gamma_la_LIBADD = $(cdisplay_libadd)
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2002-03-15 06:42:50 +08:00
|
|
|
libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c
|
2003-01-01 09:23:56 +08:00
|
|
|
libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-07-06 02:36:24 +08:00
|
|
|
libcdisplay_highcontrast_la_LIBADD = $(cdisplay_libadd)
|
2003-11-21 22:44:00 +08:00
|
|
|
|
2005-02-21 08:45:17 +08:00
|
|
|
libcdisplay_lcms_la_SOURCES = cdisplay_lcms.c
|
|
|
|
libcdisplay_lcms_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2006-10-23 18:25:04 +08:00
|
|
|
libcdisplay_lcms_la_LIBADD = $(cdisplay_libadd) $(LIBLCMS)
|
2005-02-21 08:45:17 +08:00
|
|
|
|
2007-08-13 14:49:25 +08:00
|
|
|
if PLATFORM_WIN32
|
|
|
|
libcdisplay_lcms_la_LIBADD += -lgdi32
|
|
|
|
endif
|
|
|
|
|
2003-11-21 22:44:00 +08:00
|
|
|
libcdisplay_proof_la_SOURCES = cdisplay_proof.c
|
|
|
|
libcdisplay_proof_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2006-10-23 18:25:04 +08:00
|
|
|
libcdisplay_proof_la_LIBADD = $(cdisplay_libadd) $(LIBLCMS)
|
2004-06-16 10:18:17 +08:00
|
|
|
|
2007-02-12 00:54:02 +08:00
|
|
|
libcontroller_linux_input_la_SOURCES = \
|
|
|
|
gimpinputdevicestore.c \
|
|
|
|
gimpinputdevicestore.h \
|
|
|
|
controller_linux_input.c
|
|
|
|
libcontroller_linux_input_la_CFLAGS = $(DBUS_GLIB_CFLAGS) $(HAL_CFLAGS)
|
2004-06-16 10:18:17 +08:00
|
|
|
libcontroller_linux_input_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2007-02-12 00:54:02 +08:00
|
|
|
libcontroller_linux_input_la_LIBADD = \
|
|
|
|
$(controller_libadd) $(DBUS_GLIB_LIBS) $(HAL_LIBS)
|
2004-06-20 01:37:14 +08:00
|
|
|
|
2007-02-21 03:49:06 +08:00
|
|
|
libcontroller_dx_dinput_la_SOURCES = \
|
|
|
|
gimpinputdevicestore.c \
|
|
|
|
gimpinputdevicestore.h \
|
|
|
|
controller_dx_dinput.c
|
|
|
|
# Use -Wl to avoid libtool lossage
|
|
|
|
libcontroller_dx_dinput_la_LDFLAGS = -avoid-version -module $(no_undefined) -Wl,-ldinput8 -Wl,-ldxguid
|
|
|
|
libcontroller_dx_dinput_la_LIBADD = \
|
|
|
|
$(controller_libadd) -lrpcrt4
|
|
|
|
|
2004-06-20 01:37:14 +08:00
|
|
|
libcontroller_midi_la_SOURCES = controller_midi.c
|
2004-11-18 22:51:19 +08:00
|
|
|
libcontroller_midi_la_CFLAGS = $(ALSA_CFLAGS)
|
2004-06-20 01:37:14 +08:00
|
|
|
libcontroller_midi_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2004-11-18 22:51:19 +08:00
|
|
|
libcontroller_midi_la_LIBADD = $(controller_libadd) $(ALSA_LIBS)
|