summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorKernc <kerncece@gmail.com>2014-08-30 17:07:52 +0200
committerArx Cruz <arxcruz@gnome.org>2014-10-22 15:44:38 +0200
commit5b0553e9ef4fcabebefbc510a088b009af73d4ab (patch)
treefeabcb514d3bc1aa0cc91f951c527b17f91b5239 /src/zenity.h
parentBug #700249 - Progress dialog does not wrap (diff)
downloadzenity-5b0553e9ef4fcabebefbc510a088b009af73d4ab.tar.gz
zenity-5b0553e9ef4fcabebefbc510a088b009af73d4ab.tar.bz2
zenity-5b0553e9ef4fcabebefbc510a088b009af73d4ab.zip
Allow user to interact with --text-info --html WebView
This commit changes the default --text-view behavior (when --html is also in effect) so that the clicked links are opened in the default browser (closes #732626). Additionally, a new option is introduced, --prevent-interaction, which disables above behavior.
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenity.h b/src/zenity.h
index 4b3214dd..6390b007 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -118,6 +118,7 @@ typedef struct {
gchar *checkbox;
#ifdef HAVE_WEBKITGTK
gboolean html;
+ gboolean no_interaction;
gchar *url;
#endif
} ZenityTextData;
bgstack15