1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
gimpincludedir = $(includedir)/libgimp
|
|
|
|
|
1999-08-27 08:19:25 +08:00
|
|
|
AM_CPPFLAGS = \
|
1999-02-04 11:18:36 +08:00
|
|
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
1999-03-07 20:56:03 +08:00
|
|
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
1999-02-04 11:18:36 +08:00
|
|
|
@GIMP_THREAD_FLAGS@
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/intl \
|
|
|
|
-I../intl \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
-I$(includedir)
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-03-03 20:35:12 +08:00
|
|
|
EXTRA_DIST = \
|
1999-03-09 05:59:55 +08:00
|
|
|
gimpfeatures.h.in \
|
|
|
|
makefile.msc \
|
1999-07-15 00:02:32 +08:00
|
|
|
makefile.cygwin \
|
1999-03-09 05:59:55 +08:00
|
|
|
gimp.def \
|
Update gcc instructions. Remove warning about gettext being GPL, as the
* README.win32: Update gcc instructions. Remove warning about
gettext being GPL, as the GIMP is GPL, too, of course, and it
thus doesn't matter.
* user_install.bat: Rename the template user gtkrc to gtkrc_user,
to reduce user confusion.
* app/main.c: Small change for gcc on Win32 compilation.
* */makefile.cygwin
* app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32,
no need to have differently named DLLs (including modules) for
(built by) gcc and MSVC.
* app/module_db.c: Use g_strdup_printf() instead of
strlen(), g_malloc() and g_snprintf()
* libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32,
the suitable gimpfeatures.h is built when making the dist.
* libgimp/gimpfeatures.h.win32: Removed.
* libgimp/makefile.cygwin
* libgimp/makefile.msc: Remove gimpfeatures.h.win32.
* libgimp/gimp.h: Win32 startup code changed a bit.
* plug-ins/makefile.cygwin
* plug-ins/makefile.msc: Add the winsnap unofficial plug-in.
* plug-ins/common/animationplay.c
* plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting
clashing declarations because these guys include gdkx.h (which
includes windows.h), and gimp.h also declares WinMain on its own.
1999-07-22 03:52:20 +08:00
|
|
|
gimpui.def
|
1998-07-15 10:36:07 +08:00
|
|
|
|
1998-09-21 07:04:33 +08:00
|
|
|
lib_LTLIBRARIES = libgimp.la libgimpui.la
|
1997-11-25 06:05:25 +08:00
|
|
|
noinst_LIBRARIES = libgimpi.a
|
|
|
|
|
1998-06-20 03:47:34 +08:00
|
|
|
libgimpi_a_SOURCES = \
|
1999-03-07 20:56:03 +08:00
|
|
|
gimpenv.c \
|
|
|
|
gimpenv.h \
|
1999-03-02 08:31:39 +08:00
|
|
|
gimpchainbutton.c \
|
|
|
|
gimpchainbutton.h \
|
1999-11-01 05:00:32 +08:00
|
|
|
gimpcolorbutton.c \
|
2000-01-03 06:30:20 +08:00
|
|
|
gimpcolorspace.c \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimpdialog.c \
|
|
|
|
gimpdialog.h \
|
1999-03-14 07:03:11 +08:00
|
|
|
gimpfileselection.c \
|
|
|
|
gimpfileselection.h \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimphelpui.c \
|
|
|
|
gimphelpui.h \
|
1999-03-03 20:35:12 +08:00
|
|
|
gimpmatrix.c \
|
|
|
|
gimpmatrix.h \
|
1999-03-14 07:03:11 +08:00
|
|
|
gimppatheditor.c \
|
|
|
|
gimppatheditor.h \
|
1999-03-03 20:35:12 +08:00
|
|
|
gimpprotocol.c \
|
|
|
|
gimpprotocol.h \
|
2000-02-11 05:54:12 +08:00
|
|
|
gimpquerybox.c \
|
|
|
|
gimpquerybox.h \
|
1999-03-03 20:35:12 +08:00
|
|
|
gimpsizeentry.c \
|
|
|
|
gimpsizeentry.h \
|
|
|
|
gimpunitmenu.c \
|
|
|
|
gimpunitmenu.h \
|
2000-01-13 23:39:26 +08:00
|
|
|
gimpwidgets.c \
|
|
|
|
gimpwidgets.h \
|
1999-03-03 20:35:12 +08:00
|
|
|
gimpwire.c \
|
|
|
|
gimpwire.h \
|
|
|
|
gserialize.c \
|
|
|
|
gserialize.h \
|
|
|
|
parasite.c \
|
|
|
|
parasite.h \
|
|
|
|
parasiteF.h \
|
1999-09-02 08:01:41 +08:00
|
|
|
parasiteP.h \
|
|
|
|
parasiteio.c \
|
2000-01-25 06:16:36 +08:00
|
|
|
parasiteio.h
|
1998-06-20 03:47:34 +08:00
|
|
|
|
1998-10-22 17:49:46 +08:00
|
|
|
if STATICLIBS
|
1998-06-20 03:47:34 +08:00
|
|
|
## Evil hack to insure all deps are satisfied on first-run make
|
1998-09-21 07:04:33 +08:00
|
|
|
libgimpi_a_DEPENDENCIES = libgimp.la
|
1998-10-22 17:49:46 +08:00
|
|
|
endif
|
1998-06-20 03:47:34 +08:00
|
|
|
|
1999-05-18 07:09:56 +08:00
|
|
|
# help `make' along by giving another name for the file, which it knows
|
|
|
|
# how to build
|
|
|
|
../libgimp/gimpfeatures.h: gimpfeatures.h
|
|
|
|
@:
|
|
|
|
|
1998-09-21 07:04:33 +08:00
|
|
|
libgimp_la_SOURCES = \
|
1999-09-25 09:59:43 +08:00
|
|
|
gimp.c \
|
|
|
|
gimpchannel.c \
|
2000-01-03 06:30:20 +08:00
|
|
|
gimpcolorbutton.h \
|
|
|
|
gimpcolorspace.c \
|
1999-09-25 09:59:43 +08:00
|
|
|
gimpdisplay.c \
|
|
|
|
gimpdrawable.c \
|
|
|
|
gimpenv.c \
|
|
|
|
gimpgradient.c \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimphelp.c \
|
1999-09-25 09:59:43 +08:00
|
|
|
gimpimage.c \
|
|
|
|
gimplayer.c \
|
|
|
|
gimpmatrix.c \
|
|
|
|
gimpmatrix.h \
|
|
|
|
gimppalette.c \
|
|
|
|
gimpparasite.c \
|
|
|
|
gimppixelrgn.c \
|
|
|
|
gimpprotocol.c \
|
|
|
|
gimpprotocol.h \
|
1999-11-14 03:20:11 +08:00
|
|
|
gimpselection.c \
|
1999-09-25 09:59:43 +08:00
|
|
|
gimptile.c \
|
|
|
|
gimpunit.c \
|
|
|
|
gimpunit.h \
|
|
|
|
gimpwire.c \
|
|
|
|
gimpwire.h \
|
|
|
|
gserialize.c \
|
|
|
|
gserialize.h \
|
|
|
|
parasite.c \
|
|
|
|
parasite.h \
|
|
|
|
parasiteF.h \
|
|
|
|
parasiteP.h \
|
|
|
|
parasiteio.c \
|
|
|
|
parasiteio.h \
|
2000-01-27 09:54:52 +08:00
|
|
|
stdplugins-intl.h \
|
|
|
|
libgimp-intl.h
|
1998-06-20 03:47:34 +08:00
|
|
|
|
1998-09-21 07:04:33 +08:00
|
|
|
libgimpui_la_SOURCES = \
|
1998-12-05 18:41:56 +08:00
|
|
|
gimpmenu.c \
|
|
|
|
gimpbrushmenu.c \
|
|
|
|
gimpgradientmenu.c \
|
1999-05-19 01:33:39 +08:00
|
|
|
gimppatternmenu.c \
|
|
|
|
gimpchainbutton.c \
|
1999-11-01 05:00:32 +08:00
|
|
|
gimpcolorbutton.c \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimpdialog.c \
|
|
|
|
gimpexport.c \
|
1999-05-19 01:33:39 +08:00
|
|
|
gimpfileselection.c \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimphelpui.c \
|
1999-05-19 01:33:39 +08:00
|
|
|
gimppatheditor.c \
|
2000-02-11 05:54:12 +08:00
|
|
|
gimpquerybox.c \
|
1999-05-19 01:33:39 +08:00
|
|
|
gimpsizeentry.c \
|
2000-01-13 23:39:26 +08:00
|
|
|
gimpunitmenu.c \
|
|
|
|
gimpwidgets.c
|
1998-06-20 03:47:34 +08:00
|
|
|
|
|
|
|
gimpinclude_HEADERS = \
|
1999-07-29 07:00:08 +08:00
|
|
|
color_display.h \
|
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
|
|
|
color_selector.h \
|
|
|
|
gimp.h \
|
1999-03-02 08:31:39 +08:00
|
|
|
gimpchainbutton.h \
|
1999-11-01 05:00:32 +08:00
|
|
|
gimpcolorbutton.h \
|
2000-01-03 06:30:20 +08:00
|
|
|
gimpcolorspace.h \
|
1999-10-25 05:27:29 +08:00
|
|
|
gimpcompat.h \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimpdialog.h \
|
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
|
|
|
gimpenums.h \
|
1999-03-07 20:56:03 +08:00
|
|
|
gimpenv.h \
|
1999-10-04 02:54:54 +08:00
|
|
|
gimpexport.h \
|
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
|
|
|
gimpfeatures.h \
|
1999-03-14 07:03:11 +08:00
|
|
|
gimpfileselection.h \
|
2000-01-05 23:47:06 +08:00
|
|
|
gimphelpui.h \
|
1999-05-10 00:38:05 +08:00
|
|
|
gimplimits.h \
|
1999-09-02 09:41:18 +08:00
|
|
|
gimpmath.h \
|
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
|
|
|
gimpmatrix.h \
|
|
|
|
gimpmenu.h \
|
|
|
|
gimpmodule.h \
|
1999-03-14 07:03:11 +08:00
|
|
|
gimppatheditor.h \
|
2000-02-11 05:54:12 +08:00
|
|
|
gimpquerybox.h \
|
1999-02-22 05:45:50 +08:00
|
|
|
gimpsizeentry.h \
|
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
|
|
|
gimpui.h \
|
Add default to Cancel button, remove unset GTK_RECEIVES_DEFAULT from
Sat Feb 20 16:12:33 CST 1999 Shawn T. Amundson <amundson@gimp.org>
* app/tips_dialog.c: Add default to Cancel button, remove
unset GTK_RECEIVES_DEFAULT from prev/next buttons (they
are like toolbar buttons), changed abreviated prev to
previous, prev/next button are now same size, cancel button
is in a button box. Added vboxes where necessary to prevent
prev/next and check button from filling vertically.
* app/app_procs.c: when splashscreen dialog is larger than the
logo, (due to huge font), center logo.
* app/file_new_dialog.c: patch from Marco Lamb <lm@geocities.com>
disallows resizing, changes vertical expanding of widgets to
not occur
* app/palette.c: patch from Marco Lamb <lm@geocities.com>. Makes
+/- buttons for zoom pixmaps (eventually, these can be replaced
with a magnifying glass with a little +/- I think), so that they
no longer expand as they did before. I modified his patch so it
did not create a misused toolbar. I did some other stuff here too,
moved Close button to the left, made it the window's default,
and unset GTK_RECEIVES_DEFAULT off of the non-bottom buttons.
* app/actionarea.c: another patch from Marco Lamb <lm@geocities.com>.
This one changes buttons to be put in a button box which is right
justified. If we decide later that spread is better, we can
change this easy enough.
* app/tools/zoom_in.xpm, app/tools/zoom_out.xpm: + and - graphics.
* libgimp/gimpunit.h
libgimp/gimpunit.c: New files from Michael Natterer
<mitschel@cs.tu-berlin.de>, gimp_unit_* routines.
* app/gimage.h
app/gimpimage.h
app/gimpimage.c
app/gimpimageP.h
app/xcf.c: Patches from Michael Natterer <mitschel@cs.tu-berlin.de>,
which keep a unit assocated with an image.
1999-02-21 10:08:15 +08:00
|
|
|
gimpunit.h \
|
1999-02-22 03:50:37 +08:00
|
|
|
gimpunitmenu.h \
|
2000-01-13 23:39:26 +08:00
|
|
|
gimpwidgets.h \
|
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
|
|
|
gimpintl.h \
|
|
|
|
gserialize.h \
|
|
|
|
parasite.h \
|
|
|
|
parasiteF.h \
|
1999-06-07 02:17:57 +08:00
|
|
|
parasiteP.h \
|
1999-09-25 09:59:43 +08:00
|
|
|
parasiteio.h
|
1998-06-20 03:47:34 +08:00
|
|
|
|
1998-09-21 07:04:33 +08:00
|
|
|
libgimp_la_LDFLAGS = \
|
1999-02-04 11:18:36 +08:00
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
|
|
-release $(LT_RELEASE)
|
|
|
|
libgimp_la_LIBADD = $(GLIB_LIBS) -lm
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-02-04 11:18:36 +08:00
|
|
|
libgimpui_la_LDFLAGS = \
|
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
|
|
-release $(LT_RELEASE)
|
|
|
|
libgimpui_la_LIBADD = $(GTK_LIBS)
|
1998-06-20 03:47:34 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|