mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
95f55dfc34
And add a function to process a passage into a set of views with glyphs. The views can be flowed: they have flow gravity and their sizes set to contain all the glyphs within each view (nominally, words). Nothing is tested yet, and font rendering is currently broken completely.
29 lines
676 B
Text
29 lines
676 B
Text
include libs/ui/test/Makemodule.am
|
|
|
|
lib_LTLIBRARIES += \
|
|
libs/ui/libQFgui.la \
|
|
libs/ui/libQFui.la
|
|
|
|
gui_deps = \
|
|
libs/ui/libQFui.la
|
|
|
|
ui_deps = \
|
|
libs/ecs/libQFecs.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_ui_libQFgui_la_LDFLAGS= $(lib_ldflags)
|
|
libs_ui_libQFgui_la_LIBADD= $(gui_deps) $(ui_deps)
|
|
libs_ui_libQFgui_la_DEPENDENCIES= $(gui_deps) $(ui_deps)
|
|
libs_ui_libQFgui_la_SOURCES= \
|
|
libs/ui/font.c \
|
|
libs/ui/text.c
|
|
|
|
libs_ui_libQFui_la_LDFLAGS= $(lib_ldflags)
|
|
libs_ui_libQFui_la_LIBADD= $(ui_deps)
|
|
libs_ui_libQFui_la_DEPENDENCIES= $(ui_deps)
|
|
libs_ui_libQFui_la_SOURCES= \
|
|
libs/ui/inputline.c \
|
|
libs/ui/passage.c \
|
|
libs/ui/txtbuffer.c \
|
|
libs/ui/view.c \
|
|
libs/ui/vrect.c
|