2002-03-12 Michael Natterer <mitch@gimp.org> * app/gimprc.[ch] * app/gui/preferences-dialog.c * app/paint/gimppaintoptions.[ch] * app/tools/paint_options.[ch] * app/tools/tool_manager.[ch]: removed the "global_paint_options" gimprc option because it doesn't quite fit the new dockable dialog architecture. * app/gui/brush-select.[ch] * app/gui/gradient-select.[ch] * app/gui/palette-select.[ch] * app/gui/pattern-select.[ch]: removed the "Global Brush/Pattern/... Selection" part of them. They are now only used for temp popup selections and the PDB. *Lots* of cleanup. * app/gui/convert-dialog.c * app/gui/dialogs-constructors.[ch] * app/gui/dialogs.c * app/gui/gui.c * app/gui/menus.c * app/gui/palette-import-dialog.c * app/plug-in/plug-in.c: changed accordingly. Cleaned up the palette and other data PDB stuff: * tools/pdbgen/Makefile.am * tools/pdbgen/groups.pl: added "palette_select" and "palettes". * tools/pdbgen/pdb/palette_select.pdb: new file. Makes the palette selection PDB controllable. * tools/pdbgen/pdb/palettes.pdb: new file cut out of palette.pdb because of API symmetry with brushes, patterns, ... * tools/pdbgen/pdb/palette.pdb: removed from here. * tools/pdbgen/pdb/brush_select.pdb * tools/pdbgen/pdb/brushes.pdb * tools/pdbgen/pdb/gradient_select.pdb * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/palette.pdb * tools/pdbgen/pdb/pattern_select.pdb * tools/pdbgen/pdb/patterns.pdb: lots of cleanup. Autogenerated stuff: * app/pdb/Makefile.am * app/pdb/palette_select_cmds.c * app/pdb/palettes_cmds.c: new files. * app/pdb/brush_select_cmds.c * app/pdb/brushes_cmds.c * app/pdb/gradient_select_cmds.c * app/pdb/gradients_cmds.c * app/pdb/internal_procs.c * app/pdb/palette_cmds.c * app/pdb/pattern_select_cmds.c * app/pdb/patterns_cmds.c: regenerated. * libgimp/Makefile.am * libgimp/gimp_pdb.h * libgimp/gimppalettes_pdb.[ch] * libgimp/gimppaletteselect_pdb.[ch]: new files. * libgimp/gimpgradientselect_pdb.[ch] * libgimp/gimppalette_pdb.[ch] * libgimp/gimppatterns_pdb.c: regenerated. * devel-docs/libgimp/tmpl/gimpgradients.sgml * devel-docs/libgimp/tmpl/gimppalette.sgml: regenerated.
64 lines
1.3 KiB
Makefile
64 lines
1.3 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libapppdb.a
|
|
|
|
libapppdb_a_SOURCES = @STRIP_BEGIN@ \
|
|
internal_procs.c \
|
|
internal_procs.h \
|
|
procedural_db.c \
|
|
procedural_db.h \
|
|
brush_select_cmds.c \
|
|
brushes_cmds.c \
|
|
channel_cmds.c \
|
|
color_cmds.c \
|
|
convert_cmds.c \
|
|
display_cmds.c \
|
|
drawable_cmds.c \
|
|
edit_cmds.c \
|
|
fileops_cmds.c \
|
|
floating_sel_cmds.c \
|
|
gimprc_cmds.c \
|
|
gradient_select_cmds.c \
|
|
gradients_cmds.c \
|
|
guides_cmds.c \
|
|
help_cmds.c \
|
|
image_cmds.c \
|
|
layer_cmds.c \
|
|
message_cmds.c \
|
|
misc_cmds.c \
|
|
misc_tools_cmds.c \
|
|
paint_tools_cmds.c \
|
|
palette_cmds.c \
|
|
palette_select_cmds.c \
|
|
palettes_cmds.c \
|
|
parasite_cmds.c \
|
|
paths_cmds.c \
|
|
pattern_select_cmds.c \
|
|
patterns_cmds.c \
|
|
pdb_glue.h \
|
|
pdb-types.h \
|
|
plug_in_cmds.c \
|
|
procedural_db_cmds.c \
|
|
selection_cmds.c \
|
|
selection_tools_cmds.c \
|
|
text_tool_cmds.c \
|
|
transform_tools_cmds.c \
|
|
undo_cmds.c \
|
|
unit_cmds.c \
|
|
@STRIP_END@
|
|
|
|
## This is a truly ugly hack
|
|
libapppdb_a_LIBADD = ../gui/pattern-select.o ../gui/brush-select.o
|
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
-DG_LOG_DOMAIN=\"Gimp-PDB\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@ \
|
|
@STRIP_END@
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|