diff src/options.h @ 884:ff16ed0d2c8a

Improve ways to specify html browser (used for help, see bug 2015099). Two new rc file options were added: - helpers.html_browser.command_name - helpers.html_browser.command_line These are checked first before trying common browser locations. If these do not lead to a valid browser, then geeqie will search for geeqie_html_browser script in the path, then it will try various common browsers.
author zas_
date Sun, 13 Jul 2008 14:50:07 +0000
parents 3dd2cb78d0f9
children ad420f2eb789
line wrap: on
line diff
--- a/src/options.h	Sun Jul 13 13:51:23 2008 +0000
+++ b/src/options.h	Sun Jul 13 14:50:07 2008 +0000
@@ -38,6 +38,7 @@
 
 	gboolean save_metadata_in_image_file;
 
+	/* start up */
 	struct {
 		gboolean restore_path;
 		gboolean use_last_path;
@@ -237,6 +238,13 @@
 
 	} color_profile;
 
+	/* Helpers programs */
+	struct {
+		struct {
+			gchar *command_name;
+			gchar *command_line;
+		} html_browser;
+	} helpers;
 };
 
 ConfOptions *options;