2004-10-25 Michael Natterer <mitch@gimp.org> Don't store human readable and translatable enum/flag strings in GEnumValue's and GTypeValue's fields but attach them to their GType using separate structs and utility functions: * tools/gimp-mkenums: added params and perl voodoo to support generating a second array of values, which is used by the Makefiles below to create and register arrays of value descriptions. * libgimpbase/gimpbasetypes.[ch]: added API to attach/retreive arrays of translatable strings to/from enum and flags types. Added structs GimpEnumDesc and GimpFlagsDesc for that purpose. * libgimpbase/gimputils.[ch]: changed existing enum utility functions, added new ones and added a symmetric API for flags. * app/base/Makefile.am * app/core/Makefile.am * app/display/Makefile.am * app/paint/Makefile.am * app/text/Makefile.am * app/tools/Makefile.am * app/widgets/Makefile.am * libgimp/Makefile.am * libgimpbase/Makefile.am: changed *-enums.c generation rules accordingly. * app/base/base-enums.c * app/core/core-enums.c * app/display/display-enums.c * app/paint/paint-enums.c * app/text/text-enums.c * app/tools/tools-enums.c * app/widgets/widgets-enums.c * libgimpbase/gimpbaseenums.c: regenerated. * app/widgets/gimpenumstore.c * app/widgets/gimpenumwidgets.c * app/widgets/gimptemplateeditor.c * libgimpwidgets/gimppreviewarea.c: follow the enum utility function API changes.
99 lines
3 KiB
Makefile
99 lines
3 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-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-close.c \
|
|
gimpdisplayshell-close.h \
|
|
gimpdisplayshell-cursor.c \
|
|
gimpdisplayshell-cursor.h \
|
|
gimpdisplayshell-dnd.c \
|
|
gimpdisplayshell-dnd.h \
|
|
gimpdisplayshell-draw.c \
|
|
gimpdisplayshell-draw.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-preview.c \
|
|
gimpdisplayshell-preview.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 \
|
|
gimpnavigationeditor.c \
|
|
gimpnavigationeditor.h \
|
|
gimpscalecombobox.c \
|
|
gimpscalecombobox.h \
|
|
gimpstatusbar.c \
|
|
gimpstatusbar.h
|
|
|
|
libappdisplay_a_built_sources = display-enums.c
|
|
|
|
libappdisplay_a_SOURCES = \
|
|
$(libappdisplay_a_built_sources) \
|
|
$(libappdisplay_a_sources)
|
|
|
|
EXTRA_DIST = makefile.msc
|
|
|
|
#
|
|
# 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 \"libgimpbase/gimpbase.h\"\n#include \"display-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)/display-enums.h > xgen-dec \
|
|
&& cp xgen-dec $(@F) \
|
|
&& rm -f xgen-dec
|