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
|
|
|
|
2013-06-06 02:48:37 +08:00
|
|
|
AM_CPPFLAGS = \
|
2003-11-21 22:44:00 +08:00
|
|
|
-I$(top_srcdir) \
|
2012-05-03 09:36:22 +08:00
|
|
|
$(GEGL_CFLAGS) \
|
2003-11-21 22:44:00 +08:00
|
|
|
$(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
|
|
|
|
2007-02-21 07:08:12 +08:00
|
|
|
if PLATFORM_WIN32
|
|
|
|
else
|
2008-08-12 02:28:01 +08:00
|
|
|
controller_midi_module = libcontroller-midi.la
|
2007-02-21 07:08:12 +08:00
|
|
|
endif
|
|
|
|
|
2004-06-16 10:18:17 +08:00
|
|
|
if HAVE_LINUX_INPUT
|
2008-08-12 02:28:01 +08:00
|
|
|
controller_linux_input_module = libcontroller-linux-input.la
|
2004-06-16 10:18:17 +08:00
|
|
|
endif
|
|
|
|
|
2007-02-21 03:49:06 +08:00
|
|
|
if HAVE_DX_DINPUT
|
2008-08-12 02:28:01 +08:00
|
|
|
controller_dx_dinput_module = libcontroller-dx-dinput.la
|
2007-02-21 03:49:06 +08:00
|
|
|
endif
|
|
|
|
|
2002-08-28 00:38:29 +08:00
|
|
|
lib_LTLIBRARIES = \
|
2008-08-12 02:28:01 +08:00
|
|
|
libcolor-selector-cmyk.la \
|
|
|
|
libcolor-selector-water.la \
|
|
|
|
libcolor-selector-wheel.la \
|
2017-11-03 02:05:52 +08:00
|
|
|
libdisplay-filter-clip-warning.la \
|
2008-08-12 02:28:01 +08:00
|
|
|
libdisplay-filter-color-blind.la \
|
2018-07-22 20:58:53 +08:00
|
|
|
libdisplay-filter-aces-rrt.la \
|
2008-08-12 02:28:01 +08:00
|
|
|
libdisplay-filter-gamma.la \
|
|
|
|
libdisplay-filter-high-contrast.la \
|
|
|
|
$(controller_midi_module) \
|
|
|
|
$(controller_linux_input_module) \
|
2007-02-21 03:49:06 +08:00
|
|
|
$(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)
|
|
|
|
|
2016-06-05 07:23:35 +08:00
|
|
|
color_selector_libadd = $(libgimpconfig) $(libgimpcolor) $(modules_libadd) $(BABL_LIBS)
|
2013-11-03 22:33:40 +08:00
|
|
|
display_filter_libadd = $(libgimpbase) $(libgimpconfig) $(libgimpcolor) $(modules_libadd) $(GEGL_LIBS)
|
2005-02-05 20:13:22 +08:00
|
|
|
controller_libadd = $(modules_libadd)
|
2004-07-06 02:36:24 +08:00
|
|
|
|
2013-11-04 05:06:51 +08:00
|
|
|
libcolor_selector_cmyk_la_SOURCES = color-selector-cmyk.c
|
2013-11-04 04:19:51 +08:00
|
|
|
libcolor_selector_cmyk_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2016-05-27 04:18:50 +08:00
|
|
|
libcolor_selector_cmyk_la_LIBADD = $(libgimpconfig) $(color_selector_libadd)
|
2006-09-26 16:55:41 +08:00
|
|
|
|
2008-08-12 02:28:01 +08:00
|
|
|
libcolor_selector_water_la_SOURCES = color-selector-water.c
|
|
|
|
libcolor_selector_water_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2008-08-12 20:28:43 +08:00
|
|
|
libcolor_selector_water_la_LIBADD = $(color_selector_libadd)
|
1999-10-05 03:26:07 +08:00
|
|
|
|
2013-01-06 09:37:41 +08:00
|
|
|
libcolor_selector_wheel_la_SOURCES = color-selector-wheel.c gimpcolorwheel.c gimpcolorwheel.h
|
2008-08-12 02:28:01 +08:00
|
|
|
libcolor_selector_wheel_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
2008-08-12 20:28:43 +08:00
|
|
|
libcolor_selector_wheel_la_LIBADD = $(color_selector_libadd)
|
2008-08-08 23:27:40 +08:00
|
|
|
|
2017-11-03 02:05:52 +08:00
|
|
|
libdisplay_filter_clip_warning_la_SOURCES = display-filter-clip-warning.c
|
|
|
|
libdisplay_filter_clip_warning_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
|
|
libdisplay_filter_clip_warning_la_LIBADD = $(display_filter_libadd)
|
|
|
|
|
2008-08-12 02:28:01 +08:00
|
|
|
libdisplay_filter_color_blind_la_SOURCES = display-filter-color-blind.c
|
|
|
|
libdisplay_filter_color_blind_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
|
|
libdisplay_filter_color_blind_la_LIBADD = $(display_filter_libadd)
|
2002-12-16 23:25:37 +08:00
|
|
|
|
2018-07-17 21:57:34 +08:00
|
|
|
|
2018-07-22 20:58:53 +08:00
|
|
|
libdisplay_filter_aces_rrt_la_SOURCES = display-filter-aces-rrt.c
|
|
|
|
libdisplay_filter_aces_rrt_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
|
|
libdisplay_filter_aces_rrt_la_LIBADD = $(display_filter_libadd)
|
2018-07-17 21:57:34 +08:00
|
|
|
|
2008-08-12 02:28:01 +08:00
|
|
|
libdisplay_filter_gamma_la_SOURCES = display-filter-gamma.c
|
|
|
|
libdisplay_filter_gamma_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
|
|
libdisplay_filter_gamma_la_LIBADD = $(display_filter_libadd)
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2008-08-12 02:28:01 +08:00
|
|
|
libdisplay_filter_high_contrast_la_SOURCES = display-filter-high-contrast.c
|
|
|
|
libdisplay_filter_high_contrast_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
|
|
libdisplay_filter_high_contrast_la_LIBADD = $(display_filter_libadd)
|
2003-11-21 22:44:00 +08:00
|
|
|
|
2007-02-12 00:54:02 +08:00
|
|
|
libcontroller_linux_input_la_SOURCES = \
|
2011-06-23 22:30:58 +08:00
|
|
|
gimpinputdevicestore-gudev.c \
|
2007-12-04 15:40:31 +08:00
|
|
|
gimpinputdevicestore.h \
|
2008-08-12 02:28:01 +08:00
|
|
|
controller-linux-input.c
|
2011-06-23 22:30:58 +08:00
|
|
|
libcontroller_linux_input_la_CFLAGS = $(GUDEV_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 = \
|
2011-06-23 22:30:58 +08:00
|
|
|
$(controller_libadd) $(GUDEV_LIBS)
|
2004-06-20 01:37:14 +08:00
|
|
|
|
2007-02-21 03:49:06 +08:00
|
|
|
libcontroller_dx_dinput_la_SOURCES = \
|
2007-12-04 15:40:31 +08:00
|
|
|
gimpinputdevicestore-dx.c \
|
|
|
|
gimpinputdevicestore.h \
|
2008-08-12 02:28:01 +08:00
|
|
|
controller-dx-dinput.c
|
2007-02-21 03:49:06 +08:00
|
|
|
# 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
|
|
|
|
|
2008-08-12 02:28:01 +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)
|