2003-09-10 Michael Natterer <mitch@gimp.org> * app/core/gimp.[ch]: added lots more "GimpFooFunc gui_foo_func" vtable entries to the Gimp struct and wrapper function for them. They cover plug-in menu creation and plug-in progress utilities. * app/gui/gui.c: fill in the funtion pointers and dispatch to the actual functions. * app/pdb/Makefile.am (libapppdb_a_LIBADD): removed most hacks since the symbols are referenced within libappgui.a now. Removed any GTK+ dependency from the plug-ins/ directory: * app/plug-in/Makefile.am (INCLUDES): replaces GTK_CFLAGS by GDK_PIXBUF_CFLAGS. * app/plug-in/plug-in-progress.c * app/plug-in/plug-ins.c: replaced gui function calls to create menus and progress bars by calls to the wrappers. * app/plug-in/plug-in.c (plug_in_close): check dangling PDB dialogs using the new wrapper. * app/plug-in/plug-in-def.c * app/plug-in/plug-in-rc.c * app/plug-in/plug-in-run.c: removed trailing whitespace.
39 lines
736 B
Makefile
39 lines
736 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappplug-in.a
|
|
|
|
libappplug_in_a_SOURCES = \
|
|
plug-in-types.h \
|
|
plug-in.c \
|
|
plug-in.h \
|
|
plug-ins.c \
|
|
plug-ins.h \
|
|
plug-in-debug.c \
|
|
plug-in-debug.h \
|
|
plug-in-def.c \
|
|
plug-in-def.h \
|
|
plug-in-message.c \
|
|
plug-in-message.h \
|
|
plug-in-params.c \
|
|
plug-in-params.h \
|
|
plug-in-proc.c \
|
|
plug-in-proc.h \
|
|
plug-in-progress.c \
|
|
plug-in-progress.h \
|
|
plug-in-rc.c \
|
|
plug-in-rc.h \
|
|
plug-in-run.c \
|
|
plug-in-run.h \
|
|
plug-in-shm.c \
|
|
plug-in-shm.h
|