aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-31 19:07:16 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-31 19:07:16 +0200
commitd76fdf9cb931d6d189938102a98a71030ea907ad (patch)
tree74b06c42185705beab93f24ecb2adc66c3f2800c /configure.ac
parentf6963e8221643daa152b0fe26886e327e1a7f8b3 (diff)
downloadexperiment-player-d76fdf9cb931d6d189938102a98a71030ea907ad.tar.gz
allow transcript formatting without markup (like search-as-you type)
* controlled via checkbox * if markup is disabled the entered text is only regular expressions * default text attributes are used according to some constants (in configure.ac, later they will be configurable via config file) * fixed return value of gtk_experiment_transcript_load_formats() * care about possible capture mismatches in regular expressions (capture braces are inserted automatically - the user is not allowed specify own captures) * display state of interactive format via icon (successful/error)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 3b71842..1d2544f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -225,6 +225,10 @@ AC_DEFINE(EXPERIMENT_TRANSCRIPT_EXT, ["xml"], [File extension of experiment tran
AC_DEFINE(DEFAULT_FORMAT_DIR, ["."], [Default directory for selecting formats])
AC_DEFINE(EXPERIMENT_FORMAT_FILTER, ["*.fmt"], [Format file filter])
+AC_DEFINE(DEFAULT_INTERACTIVE_FORMAT_FONT, ["bold"], [Default interactive format font description])
+AC_DEFINE(DEFAULT_INTERACTIVE_FORMAT_FGCOLOR, [NULL], [Default interactive format foreground color])
+AC_DEFINE(DEFAULT_INTERACTIVE_FORMAT_BGCOLOR, [NULL], [Default interactive format background color])
+
AC_CONFIG_FILES([Makefile lib/Makefile src/Makefile])
AC_CONFIG_FILES([lib/gtk-vlc-player/Makefile])
AC_CONFIG_FILES([lib/experiment-reader/Makefile lib/experiment-reader/tests/Makefile])