aboutsummaryrefslogtreecommitdiff
path: root/src/default.ui
AgeCommit message (Collapse)AuthorFilesLines
2012-06-06implemented About dialogRobin Haberkorn1-0/+42
* some values are set in the Glade-UI definition (license text, copyright, authors) * others are set in main() using Autoconf-defined macros to avoid redundancies
2012-06-05fixed paned view in the experiment data windowRobin Haberkorn1-3/+3
2012-05-31allow transcript formatting without markup (like search-as-you type)Robin Haberkorn1-18/+82
* 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)
2012-05-30implemented selection of format files by combo boxRobin Haberkorn1-93/+151
* each transcript widget has its own box, they share their content (via a common GtkListStore) * currently the filename is displayed in the combo boxes
2012-05-30remove dummy drawingareas from transcript tableRobin Haberkorn1-24/+4
* Glade screws up the table layout, but the table is actually displayed correctly
2012-05-30implemented "format" file and expression parsing as well as application to ↵Robin Haberkorn1-8/+85
the transcript * "formats" are regular expressions encapsulated in Pango markup that allow the description of powerful highlighting rules * highlight as you type via entry boxes * loading from files implemented and tested but cannot yet be done via the UI * transcript widget is built as libtool convenience library * some renamings were necessary * install transcript widget header
2012-05-30first draft of transcript widgetRobin Haberkorn1-2/+27
2012-05-15remove unnecessary alignments connecting the navigator widget with its ↵Robin Haberkorn1-16/+0
scrolled window the scrolled window automatically connects to the navigator's (horizontal/vertical) adjustments
2012-05-11integrated experiment navigator into UIRobin Haberkorn1-0/+61
* transcript widget placeholder * connected time-selected signal, so when the new widget is properly implemented, everything should fall in place... * implemented "Transcript Open..." using experiment-navigator API * had to manually edit default.ui to include a property Glade-3 for Windows introduced!!!
2012-05-11improved fullscreen mode support and cleaned up widget displayingRobin Haberkorn1-0/+1
2012-05-10fixed UI definition for Glade-3 on windowsRobin Haberkorn1-0/+1
for some strange reason, Glade-3 on windows has an additional orientation property for VBoxes
2012-05-09disabled focus-on-click for play/stop & reset play button state on movie openRobin Haberkorn1-0/+2
2012-05-09disable all player controls on startupRobin Haberkorn1-1/+2
2012-05-08support for opening the HTML manual from the experiment player help menuRobin Haberkorn1-0/+14
URI is configurable (--with-help-uri)
2012-05-08first implementation of the "quick open" feature based on POSIX callsRobin Haberkorn1-3/+16
2012-05-07fixed application exitRobin Haberkorn1-0/+2
2012-05-07removed volume button imageRobin Haberkorn1-5/+1
it's added automatically
2012-05-07redesigned video player controlsRobin Haberkorn1-22/+58
totem-like play/stop buttons, but in one HBox * also added a volume button
2012-05-07open movie menu and prepared quick open featureRobin Haberkorn1-0/+33
2012-05-04use GtkBuilder for UI, more sophisticated UIRobin Haberkorn1-0/+159
default UI file is installed (/usr/share/experiment-player/default.ui) but the actually used file may be changed via --with-default-ui=... (useful for windows where it should read --with-default-ui=default.ui)