[zenity] Enable html support in --text-info option. This fix bug #598655, thanks for the work from Francis Me



commit 1d339e29a782de8962379652635c9ee42988d99c
Author: Arx Cruz <arxcruz src gnome org>
Date:   Tue Jul 19 14:33:28 2011 -0300

    Enable html support in --text-info option. This fix bug #598655, thanks for the work from Francis Meyvis francis.meyvis at gmail dot com. Two new options in --text-info: * --html - enable HTML support. * --url - load an url
    
    If you need to load a local html file, you can use --filename=patch/to/html.
    Examples:
      * zenity --text-info --html --filename=file.html
      * zenity --text-info --html --url=www.gnome.org
    
    Zenity will add http:// if isn't declared in --url

 configure.ac    |   22 +++++++++
 src/Makefile.am |    4 +-
 src/option.c    |   34 +++++++++++++-
 src/text.c      |  138 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/zenity.h    |    4 ++
 src/zenity.ui   |    2 +-
 6 files changed, 201 insertions(+), 3 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index db01bf7..84e2c36 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,6 +77,28 @@ if test x$enable_libnotify = xyes; then
 fi
 
 # *******************************
+# webkit check
+# *******************************
+
+WEBKITGTK_REQUIRED=1.4.0
+
+AC_ARG_ENABLE([webkitgtk],
+              [AS_HELP_STRING([--enable-webkitgtk],
+                              [Enable webkit support])],
+              [],
+              [enable_webkitgtk=yes])
+
+if test x$enable_webkitgtk = xyes; then
+        PKG_CHECK_MODULES([WEBKIT], [webkitgtk-3.0 >= $WEBKITGTK_REQUIRED],
+                          [HAVE_WEBKITGTK="yes"],[HAVE_WEBKITGTK="no"])
+        AC_SUBST([WEBKIT_CFLAGS])
+        AC_SUBST([WEBKIT_LIBS])
+        if test "x$HAVE_WEBKITGTK" = "xyes"; then
+                AC_DEFINE([HAVE_WEBKITGTK], [1], [webkitgtk is available on this machine])
+        fi
+fi
+
+# *******************************
 # Debug
 # ******************************* 
 
diff --git a/src/Makefile.am b/src/Makefile.am
index fb61e5c..f6e9e98 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -32,6 +32,7 @@ zenity_CPPFLAGS = \
 zenity_CFLAGS = \
 	$(ZENITY_CFLAGS)	\
 	$(LIBNOTIFY_CFLAGS)	\
+	$(WEBKIT_CFLAGS)	\
 	$(WARN_CFLAGS)		\
 	$(AM_CFLAGS)
 
@@ -40,7 +41,8 @@ zenity_LDFLAGS = \
 
 zenity_LDADD = \
 	$(ZENITY_LIBS)		\
-	$(LIBNOTIFY_LIBS)	
+	$(LIBNOTIFY_LIBS)	\
+	$(WEBKIT_LIBS)
 
 uidir = $(datadir)/zenity
 
diff --git a/src/option.c b/src/option.c
index 079bd02..e5f79b9 100644
--- a/src/option.c
+++ b/src/option.c
@@ -100,6 +100,10 @@ static gboolean zenity_question_active;
 static gboolean zenity_text_active;
 static gchar   *zenity_text_font;
 static gchar   *zenity_text_checkbox;
+#ifdef HAVE_WEBKITGTK
+static gboolean zenity_text_enable_html;
+static gchar   *zenity_text_url;
+#endif
 
 /* Warning Dialog Options */
 static gboolean zenity_warning_active;
@@ -786,9 +790,29 @@ static GOptionEntry text_options[] = {
     G_OPTION_FLAG_NOALIAS,
     G_OPTION_ARG_STRING,
     &zenity_text_checkbox,
-    N_("Enable a I read and agree checkbox"),
+    N_("Enable an I read and agree checkbox"),
     N_("TEXT")
   },
+#ifdef HAVE_WEBKITGTK
+  {
+    "html",
+    '\0',
+    G_OPTION_FLAG_NOALIAS,
+    G_OPTION_ARG_NONE,
+    &zenity_text_enable_html,
+    N_("Enable html support"),
+    NULL
+  },
+  {
+    "url",
+    '\0',
+    G_OPTION_FLAG_NOALIAS,
+    G_OPTION_ARG_STRING,
+    &zenity_text_url,
+    N_("Sets an url instead of a file. Only works if you use --html option"),
+    N_("URL")
+  },
+#endif
   { 
     NULL 
   }
@@ -1347,6 +1371,10 @@ zenity_text_pre_callback (GOptionContext *context,
   zenity_text_active = FALSE;
   zenity_text_font = NULL;
   zenity_text_checkbox = NULL;
+#ifdef HAVE_WEBKITGTK
+  zenity_text_enable_html = FALSE;
+  zenity_text_url = NULL;
+#endif
   return TRUE;
 }
 
@@ -1743,6 +1771,10 @@ zenity_text_post_callback (GOptionContext *context,
     results->text_data->ok_label = zenity_general_ok_button;
     results->text_data->cancel_label = zenity_general_cancel_button;
     results->text_data->checkbox = zenity_text_checkbox;
+#ifdef HAVE_WEBKITGTK
+    results->text_data->html = zenity_text_enable_html;
+    results->text_data->url = zenity_text_url;
+#endif
   } else {
     if (zenity_text_font) 
       zenity_option_error (zenity_option_get_name (text_options, &zenity_text_font),
diff --git a/src/text.c b/src/text.c
index fabc860..e786884 100644
--- a/src/text.c
+++ b/src/text.c
@@ -26,11 +26,108 @@
 #include "zenity.h"
 #include "util.h"
 
+#ifdef HAVE_WEBKITGTK
+#include <webkit/webkit.h>
+#endif
+
 static ZenityTextData	*zen_text_data;
 
 static void zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data);
 static void zenity_text_toggle_button (GtkToggleButton *button, gpointer data);
 
+#ifdef HAVE_WEBKITGTK
+static void
+zenity_configure_webkit (WebKitWebView *web_view)
+{
+  WebKitWebSettings *settings;
+  settings = webkit_web_view_get_settings(web_view);
+  g_object_set(G_OBJECT(settings), "enable-scripts",     FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "auto-load-images",   TRUE, NULL);
+  g_object_set(G_OBJECT(settings), "auto-resize-window", TRUE, NULL);
+  g_object_set(G_OBJECT(settings), "auto-shrink-images", TRUE, NULL);
+  /*
+    Stick to the defaults
+    "cursive-font-family"      gchar*                : Read / Write / Construct
+    "default-encoding"         gchar*                : Read / Write / Construct
+    "default-font-family"      gchar*                : Read / Write / Construct
+    "default-font-size"        gint                  : Read / Write / Construct
+    "default-monospace-font-size" gint               : Read / Write / Construct
+    "editing-behavior"         WebKitEditingBehavior : Read / Write / Construct
+  */
+  g_object_set(G_OBJECT(settings), "enable-caret-browsing",       FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-default-context-menu", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-developer-extras",     FALSE, NULL);
+  /* unexisting property? g_object_set(G_OBJECT(settings), "enable-dns-prefetching",      FALSE, NULL);*/
+  g_object_set(G_OBJECT(settings), "enable-dom-paste",            FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-file-access-from-file-uris", FALSE, NULL);
+  /* unexisting property? g_object_set(G_OBJECT(settings), "enable-frame-flattening",     FALSE, NULL);*/
+  /* unexisting property? g_object_set(G_OBJECT(settings), "enable-fullscreen",           FALSE, NULL);*/
+  g_object_set(G_OBJECT(settings), "enable-html5-database",       FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-html5-local-storage",  FALSE, NULL);
+  /* unexisting property? g_object_set(G_OBJECT(settings), "enable-hyperlink-auditing",   FALSE, NULL);*/
+  g_object_set(G_OBJECT(settings), "enable-java-applet",          FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-offline-web-application-cache", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-page-cache",           FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-plugins",              FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-private-browsing",     TRUE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-scripts",              FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-site-specific-quirks", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-spatial-navigation",   FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-spell-checking",       FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-universal-access-from-file-uris", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "enable-xss-auditor",          TRUE, NULL);
+  /*
+    Stick to defaults
+    "enforce-96-dpi"           gboolean              : Read / Write / Construct
+    "fantasy-font-family"      gchar*                : Read / Write / Construct
+  */
+  g_object_set(G_OBJECT(settings), "javascript-can-access-clipboard",           FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "javascript-can-open-windows-automatically", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "javascript-can-open-windows-automatically", FALSE, NULL);
+  /*
+    Stick to defaults
+    "minimum-font-size"        gint                  : Read / Write / Construct
+    "minimum-logical-font-size" gint                 : Read / Write / Construct
+    "monospace-font-family"    gchar*                : Read / Write / Construct
+    "print-backgrounds"        gboolean              : Read / Write / Construct
+    "resizable-text-areas"     gboolean              : Read / Write / Construct
+    "sans-serif-font-family"   gchar*                : Read / Write / Construct
+    "serif-font-family"        gchar*                : Read / Write / Construct
+    "spell-checking-languages" gchar*                : Read / Write / Construct
+  */
+  g_object_set(G_OBJECT(settings), "tab-key-cycles-through-elements", FALSE, NULL);
+  g_object_set(G_OBJECT(settings), "user-agent",
+               "Zenity with WebKit (KHTML, like Gecko) support", NULL);
+  /*
+    Stick to defaults
+    "user-stylesheet-uri"      gchar*                : Read / Write / Construct
+    "zoom-step"                gfloat                : Read / Write / Construct
+  */
+}
+
+static gboolean
+zenity_text_webview_decision_request (WebKitWebView             *webkitwebview,
+                                      WebKitWebFrame            *frame,
+                                      WebKitNetworkRequest      *request,
+                                      WebKitWebNavigationAction *navigation_action,
+                                      WebKitWebPolicyDecision   *policy_decision,
+                                      gpointer                   user_data)
+{
+  webkit_web_policy_decision_ignore (policy_decision);
+  return TRUE;
+}
+
+static void
+zenity_text_webview_load_finished (WebKitWebView  *webkitwebview,
+                                   WebKitWebFrame *frame,
+                                   gpointer        user_data)
+{
+  g_signal_connect (G_OBJECT (webkitwebview), "navigation-policy-decision-requested",
+                    G_CALLBACK (zenity_text_webview_decision_request), NULL);
+}
+
+#endif
+
 static gboolean
 zenity_text_handle_stdin (GIOChannel  *channel,
                           GIOCondition condition,
@@ -111,6 +208,12 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
   GObject *text_view;
   GtkTextBuffer *text_buffer;
 
+#ifdef HAVE_WEBKITGTK
+  GtkWidget *web_kit;
+  GtkWidget *scrolled_window;
+  GtkTextIter start_iter, end_iter;
+  gchar *content;
+#endif
   zen_text_data = text_data;
   builder = zenity_util_load_ui_file ("zenity_text_dialog",
   				      "textbuffer1", NULL);
@@ -179,6 +282,41 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
   else
     gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 400); 
 
+#ifdef HAVE_WEBKITGTK
+  if(text_data->html) {
+    web_kit = webkit_web_view_new();
+    scrolled_window = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_text_scrolled_window"));
+
+    zenity_configure_webkit (WEBKIT_WEB_VIEW (web_kit));
+
+    if (text_data->url)
+    {
+      if (!(g_str_has_prefix (text_data->url, "http://";) || g_str_has_prefix (text_data->url, "https://";))) 
+        text_data->url = g_strdup_printf ("http://%s";, text_data->url);
+      
+
+      webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_kit), text_data->url);
+    }
+    else
+    {
+      gtk_text_buffer_get_start_iter (text_buffer, &start_iter);
+      gtk_text_buffer_get_end_iter (text_buffer, &end_iter);
+      content = gtk_text_buffer_get_text (text_buffer, &start_iter, &end_iter, TRUE);
+      webkit_web_view_load_string (WEBKIT_WEB_VIEW(web_kit), content, "text/html", "UTF-8", NULL);
+      g_free (content);
+    }
+
+    // We don't want user to click on links and navigate to another page.
+    // So, when page finish load, we block requests.
+
+    g_signal_connect (G_OBJECT (web_kit), "document-load-finished",
+                      G_CALLBACK (zenity_text_webview_load_finished), NULL); 
+
+    gtk_widget_destroy (GTK_WIDGET (text_view));
+    gtk_container_add (GTK_CONTAINER(scrolled_window), web_kit);
+    gtk_widget_show (GTK_WIDGET (web_kit));
+  }
+#endif
   zenity_util_show_dialog (dialog);
 
   g_object_unref (builder);
diff --git a/src/zenity.h b/src/zenity.h
index 22ffca7..d9d0a10 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -111,6 +111,10 @@ typedef struct {
   gchar         *ok_label;
   gchar         *cancel_label;
   gchar         *checkbox;
+#ifdef HAVE_WEBKITGTK
+  gboolean       html;
+  gchar         *url;
+#endif
 } ZenityTextData;
 
 typedef struct {
diff --git a/src/zenity.ui b/src/zenity.ui
index 07aa51a..cd955b2 100644
--- a/src/zenity.ui
+++ b/src/zenity.ui
@@ -892,7 +892,7 @@
             <property name="can_focus">False</property>
             <property name="border_width">5</property>
             <child>
-              <object class="GtkScrolledWindow" id="scrolledwindow1">
+              <object class="GtkScrolledWindow" id="zenity_text_scrolled_window">
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="shadow_type">etched-in</property>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]