aboutsummaryrefslogtreecommitdiff
path: root/src/experiment-player.h
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 /src/experiment-player.h
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 'src/experiment-player.h')
-rw-r--r--src/experiment-player.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/experiment-player.h b/src/experiment-player.h
index a7cda8a..018cabd 100644
--- a/src/experiment-player.h
+++ b/src/experiment-player.h
@@ -37,7 +37,9 @@ extern gchar *quickopen_directory;
void format_selection_init(const gchar *dir);
extern GtkWidget *transcript_wizard_combo,
- *transcript_proband_combo;
+ *transcript_proband_combo,
+ *transcript_wizard_entry_check,
+ *transcript_proband_entry_check;
#define BUILDER_INIT(BUILDER, VAR) do { \
VAR = GTK_WIDGET(gtk_builder_get_object(BUILDER, #VAR)); \