2006-05-03 Michael Natterer <mitch@gimp.org> Made an object out of the plug-in struct. Also change refcounting considerably: - gimp_plug_in_open() adds a reference that is only dropped by gimp_plug_in_close(). - temporarily ref the plug-in while handling messages. - remporarily ref the plug-in while a recursive main loop is running. - each caller of gimp_plug_in_new() also unrefs the plug-in before returning, the only reference that persists across functions (that keeps the plug-in alive) is the one added by open(). * app/plug-in/plug-in.[ch] * app/plug-in/plug-in-context.[ch] * app/plug-in/plug-in-message.[ch] * app/plug-in/plug-in-progress.[ch]: removed these files... * app/plug-in/gimpplugin.[ch] * app/plug-in/gimpplugin-context.[ch] * app/plug-in/gimpplugin-message.[ch] * app/plug-in/gimpplugin-progress.[ch]: ...and added here as GObject. * app/plug-in/plug-in-proc-frame.[ch]: removed... * app/plug-in/gimppluginprocframe.[ch]: ...and added with a namespace. * app/plug-in/Makefile.am * app/plug-in/plug-in-types.h * app/plug-in/gimppluginmanager-call.c * app/plug-in/gimppluginmanager-file.c * app/plug-in/gimppluginmanager.[ch] * app/pdb/gimppluginprocedure.c * app/pdb/gimptemporaryprocedure.c * app/pdb/gimptemporaryprocedure.h * tools/pdbgen/pdb/context.pdb * tools/pdbgen/pdb/drawable.pdb * tools/pdbgen/pdb/help.pdb * tools/pdbgen/pdb/message.pdb * tools/pdbgen/pdb/plug_in.pdb * tools/pdbgen/pdb/progress.pdb * tools/pdbgen/pdb/undo.pdb: changed accordingly. * app/pdb/context_cmds.c * app/pdb/drawable_cmds.c * app/pdb/help_cmds.c * app/pdb/message_cmds.c * app/pdb/plug_in_cmds.c * app/pdb/progress_cmds.c * app/pdb/undo_cmds.c: regenerated.
85 lines
2.5 KiB
Makefile
85 lines
2.5 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
@GTHREAD_CFLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappplug-in.a
|
|
|
|
libappplug_in_a_SOURCES = \
|
|
plug-in-enums.c \
|
|
plug-in-enums.h \
|
|
plug-in-types.h \
|
|
\
|
|
gimpenvirontable.c \
|
|
gimpenvirontable.h \
|
|
gimpinterpreterdb.c \
|
|
gimpinterpreterdb.h \
|
|
gimpplugindebug.c \
|
|
gimpplugindebug.h \
|
|
gimpplugin.c \
|
|
gimpplugin.h \
|
|
gimpplugin-context.c \
|
|
gimpplugin-context.h \
|
|
gimpplugin-message.c \
|
|
gimpplugin-message.h \
|
|
gimpplugin-progress.c \
|
|
gimpplugin-progress.h \
|
|
gimppluginmanager.c \
|
|
gimppluginmanager.h \
|
|
gimppluginmanager-call.c \
|
|
gimppluginmanager-call.h \
|
|
gimppluginmanager-data.c \
|
|
gimppluginmanager-data.h \
|
|
gimppluginmanager-file.c \
|
|
gimppluginmanager-file.h \
|
|
gimppluginmanager-help-domain.c \
|
|
gimppluginmanager-help-domain.h \
|
|
gimppluginmanager-locale-domain.c \
|
|
gimppluginmanager-locale-domain.h \
|
|
gimppluginmanager-menu-branch.c \
|
|
gimppluginmanager-menu-branch.h \
|
|
gimppluginmanager-query.c \
|
|
gimppluginmanager-query.h \
|
|
gimppluginprocframe.c \
|
|
gimppluginprocframe.h \
|
|
gimppluginshm.c \
|
|
gimppluginshm.h \
|
|
\
|
|
plug-in-def.c \
|
|
plug-in-def.h \
|
|
plug-in-params.c \
|
|
plug-in-params.h \
|
|
plug-in-rc.c \
|
|
plug-in-rc.h
|
|
|
|
EXTRA_DIST = makefile.msc
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependencies
|
|
gen_sources = xgen-bec
|
|
CLEANFILES = $(EXTRA_PROGRAMS) $(gen_sources)
|
|
|
|
$(srcdir)/plug-in-enums.c: $(srcdir)/plug-in-enums.h $(GIMP_MKENUMS)
|
|
$(GIMP_MKENUMS) \
|
|
--fhead "#include \"config.h\"\n#include <glib-object.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"plug-in-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
--fprod "\n/* enumerations from \"@filename@\" */" \
|
|
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ }," \
|
|
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (! type)\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
$(srcdir)/plug-in-enums.h > xgen-bec \
|
|
&& cp xgen-bec $(@F) \
|
|
&& rm -f xgen-bec
|