diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 05:13:53 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-08 05:13:53 +0200 |
commit | a6f821ff833171da62a25ad24fd85bc7834f1961 (patch) | |
tree | b9210fe6c9c9e4eea397026d3fa38d38e01d5ecf /src/main.c | |
parent | 8f2799acdbc3049b88758205bd921c7f8697a0ee (diff) | |
download | experiment-player-a6f821ff833171da62a25ad24fd85bc7834f1961.tar.gz |
support for opening the HTML manual from the experiment player help menu
URI is configurable (--with-help-uri)
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -137,6 +137,13 @@ quickopen_menu_refresh_item_activate_cb(GtkWidget *widget, } void +help_menu_manual_item_activate_cb(GtkWidget *widget __attribute__((unused)), + gpointer data __attribute__((unused))) +{ + gtk_show_uri(NULL, HELP_URI, GDK_CURRENT_TIME, NULL); +} + +void generic_quit_cb(GtkWidget *widget __attribute__((unused)), gpointer data __attribute__((unused))) { |