diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-31 19:07:16 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-31 19:07:16 +0200 |
commit | d76fdf9cb931d6d189938102a98a71030ea907ad (patch) | |
tree | 74b06c42185705beab93f24ecb2adc66c3f2800c /lib/gtk-experiment-widgets/gtk-experiment-transcript.h | |
parent | f6963e8221643daa152b0fe26886e327e1a7f8b3 (diff) | |
download | gtk-vlc-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 'lib/gtk-experiment-widgets/gtk-experiment-transcript.h')
-rw-r--r-- | lib/gtk-experiment-widgets/gtk-experiment-transcript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gtk-experiment-widgets/gtk-experiment-transcript.h b/lib/gtk-experiment-widgets/gtk-experiment-transcript.h index a242a57..fa4b7ab 100644 --- a/lib/gtk-experiment-widgets/gtk-experiment-transcript.h +++ b/lib/gtk-experiment-widgets/gtk-experiment-transcript.h @@ -71,7 +71,7 @@ gboolean gtk_experiment_transcript_load_filename(GtkExperimentTranscript *trans, gboolean gtk_experiment_transcript_load_formats(GtkExperimentTranscript *trans, const gchar *filename); gboolean gtk_experiment_transcript_set_interactive_format(GtkExperimentTranscript *trans, - const gchar *format, + const gchar *format_str, gboolean with_markup); GtkAdjustment *gtk_experiment_transcript_get_time_adjustment(GtkExperimentTranscript *trans); |