2003-11-11 Sven Neumann <sven@gimp.org> * app/display/Makefile.am * app/display/gimpdisplayshell-marching-ants.h: removed this file. * app/display/gimpcanvas.[ch]: generalized creation of GCs. Added styles for drawing the selection and layer boundaries. Also added support for changing stipple masks as was used by an older implementation of the marching ants (see below). * app/display/gimpdisplayshell-callbacks.c * app/display/gimpdisplayshell.c: don't create the Selection when the canvas is realized but only once when it is created. * app/display/gimpdisplayshell-selection.[ch]: removed all GC code and draw by means of GimpCanvas. Also resurrected a different implementation of the marching ants that was lost since 1.2 (#undef USE_DRAWPOINTS).
90 lines
2.6 KiB
Makefile
90 lines
2.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Display\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappdisplay.a
|
|
|
|
libappdisplay_a_sources = \
|
|
display-enums.h \
|
|
display-types.h \
|
|
gimpcanvas.c \
|
|
gimpcanvas.h \
|
|
gimpdisplay.c \
|
|
gimpdisplay.h \
|
|
gimpdisplayoptions.c \
|
|
gimpdisplayoptions.h \
|
|
gimpdisplay-area.c \
|
|
gimpdisplay-area.h \
|
|
gimpdisplay-foreach.c \
|
|
gimpdisplay-foreach.h \
|
|
gimpdisplay-handlers.c \
|
|
gimpdisplay-handlers.h \
|
|
gimpdisplayshell.c \
|
|
gimpdisplayshell.h \
|
|
gimpdisplayshell-appearance.c \
|
|
gimpdisplayshell-appearance.h \
|
|
gimpdisplayshell-callbacks.c \
|
|
gimpdisplayshell-callbacks.h \
|
|
gimpdisplayshell-cursor.c \
|
|
gimpdisplayshell-cursor.h \
|
|
gimpdisplayshell-dnd.c \
|
|
gimpdisplayshell-dnd.h \
|
|
gimpdisplayshell-handlers.c \
|
|
gimpdisplayshell-handlers.h \
|
|
gimpdisplayshell-filter.c \
|
|
gimpdisplayshell-filter.h \
|
|
gimpdisplayshell-filter-dialog.c \
|
|
gimpdisplayshell-filter-dialog.h \
|
|
gimpdisplayshell-layer-select.c \
|
|
gimpdisplayshell-layer-select.h \
|
|
gimpdisplayshell-render.c \
|
|
gimpdisplayshell-render.h \
|
|
gimpdisplayshell-scale.c \
|
|
gimpdisplayshell-scale.h \
|
|
gimpdisplayshell-scroll.c \
|
|
gimpdisplayshell-scroll.h \
|
|
gimpdisplayshell-selection.c \
|
|
gimpdisplayshell-selection.h \
|
|
gimpdisplayshell-title.c \
|
|
gimpdisplayshell-title.h \
|
|
gimpdisplayshell-transform.c \
|
|
gimpdisplayshell-transform.h \
|
|
gimpnavigationview.c \
|
|
gimpnavigationview.h \
|
|
gimpprogress.c \
|
|
gimpprogress.h \
|
|
gimpstatusbar.c \
|
|
gimpstatusbar.h
|
|
|
|
libappdisplay_a_built_sources = display-enums.c
|
|
|
|
libappdisplay_a_SOURCES = \
|
|
$(libappdisplay_a_built_sources) \
|
|
$(libappdisplay_a_sources)
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependencies
|
|
gen_sources = xgen-dec
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
$(srcdir)/display-enums.c: $(srcdir)/display-enums.h $(GIMP_MKENUMS)
|
|
$(GIMP_MKENUMS) \
|
|
--fhead "#include \"config.h\"\n#include <glib-object.h>\n#include \"display-enums.h\"\n#include\"gimp-intl.h\"" \
|
|
--fprod "\n/* enumerations from \"@filename@\" */" \
|
|
--vhead "\nstatic const GEnumValue @enum_name@_enum_values[] =\n{" \
|
|
--vprod " { @VALUENAME@, @valuedesc@, \"@valuenick@\" }," \
|
|
--vtail " { 0, NULL, NULL }\n};\n\nGType\n@enum_name@_get_type (void)\n{\n static GType enum_type = 0;\n\n if (!enum_type)\n enum_type = g_enum_register_static (\"@EnumName@\", @enum_name@_enum_values);\n\n return enum_type;\n}\n" \
|
|
$(srcdir)/display-enums.h > xgen-dec \
|
|
&& cp xgen-dec $(@F) \
|
|
&& rm -f xgen-dec
|