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
This commit is contained in:
parent
239fc66928
commit
1d339e29a7
22
configure.ac
22
configure.ac
@ -76,6 +76,28 @@ if test x$enable_libnotify = xyes; then
|
|||||||
fi
|
fi
|
||||||
fi
|
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
|
# Debug
|
||||||
# *******************************
|
# *******************************
|
||||||
|
@ -32,6 +32,7 @@ zenity_CPPFLAGS = \
|
|||||||
zenity_CFLAGS = \
|
zenity_CFLAGS = \
|
||||||
$(ZENITY_CFLAGS) \
|
$(ZENITY_CFLAGS) \
|
||||||
$(LIBNOTIFY_CFLAGS) \
|
$(LIBNOTIFY_CFLAGS) \
|
||||||
|
$(WEBKIT_CFLAGS) \
|
||||||
$(WARN_CFLAGS) \
|
$(WARN_CFLAGS) \
|
||||||
$(AM_CFLAGS)
|
$(AM_CFLAGS)
|
||||||
|
|
||||||
@ -40,7 +41,8 @@ zenity_LDFLAGS = \
|
|||||||
|
|
||||||
zenity_LDADD = \
|
zenity_LDADD = \
|
||||||
$(ZENITY_LIBS) \
|
$(ZENITY_LIBS) \
|
||||||
$(LIBNOTIFY_LIBS)
|
$(LIBNOTIFY_LIBS) \
|
||||||
|
$(WEBKIT_LIBS)
|
||||||
|
|
||||||
uidir = $(datadir)/zenity
|
uidir = $(datadir)/zenity
|
||||||
|
|
||||||
|
34
src/option.c
34
src/option.c
@ -100,6 +100,10 @@ static gboolean zenity_question_active;
|
|||||||
static gboolean zenity_text_active;
|
static gboolean zenity_text_active;
|
||||||
static gchar *zenity_text_font;
|
static gchar *zenity_text_font;
|
||||||
static gchar *zenity_text_checkbox;
|
static gchar *zenity_text_checkbox;
|
||||||
|
#ifdef HAVE_WEBKITGTK
|
||||||
|
static gboolean zenity_text_enable_html;
|
||||||
|
static gchar *zenity_text_url;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Warning Dialog Options */
|
/* Warning Dialog Options */
|
||||||
static gboolean zenity_warning_active;
|
static gboolean zenity_warning_active;
|
||||||
@ -786,9 +790,29 @@ static GOptionEntry text_options[] = {
|
|||||||
G_OPTION_FLAG_NOALIAS,
|
G_OPTION_FLAG_NOALIAS,
|
||||||
G_OPTION_ARG_STRING,
|
G_OPTION_ARG_STRING,
|
||||||
&zenity_text_checkbox,
|
&zenity_text_checkbox,
|
||||||
N_("Enable a I read and agree checkbox"),
|
N_("Enable an I read and agree checkbox"),
|
||||||
N_("TEXT")
|
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
|
NULL
|
||||||
}
|
}
|
||||||
@ -1347,6 +1371,10 @@ zenity_text_pre_callback (GOptionContext *context,
|
|||||||
zenity_text_active = FALSE;
|
zenity_text_active = FALSE;
|
||||||
zenity_text_font = NULL;
|
zenity_text_font = NULL;
|
||||||
zenity_text_checkbox = NULL;
|
zenity_text_checkbox = NULL;
|
||||||
|
#ifdef HAVE_WEBKITGTK
|
||||||
|
zenity_text_enable_html = FALSE;
|
||||||
|
zenity_text_url = NULL;
|
||||||
|
#endif
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1743,6 +1771,10 @@ zenity_text_post_callback (GOptionContext *context,
|
|||||||
results->text_data->ok_label = zenity_general_ok_button;
|
results->text_data->ok_label = zenity_general_ok_button;
|
||||||
results->text_data->cancel_label = zenity_general_cancel_button;
|
results->text_data->cancel_label = zenity_general_cancel_button;
|
||||||
results->text_data->checkbox = zenity_text_checkbox;
|
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 {
|
} else {
|
||||||
if (zenity_text_font)
|
if (zenity_text_font)
|
||||||
zenity_option_error (zenity_option_get_name (text_options, &zenity_text_font),
|
zenity_option_error (zenity_option_get_name (text_options, &zenity_text_font),
|
||||||
|
138
src/text.c
138
src/text.c
@ -26,11 +26,108 @@
|
|||||||
#include "zenity.h"
|
#include "zenity.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_WEBKITGTK
|
||||||
|
#include <webkit/webkit.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
static ZenityTextData *zen_text_data;
|
static ZenityTextData *zen_text_data;
|
||||||
|
|
||||||
static void zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data);
|
static void zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data);
|
||||||
static void zenity_text_toggle_button (GtkToggleButton *button, 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
|
static gboolean
|
||||||
zenity_text_handle_stdin (GIOChannel *channel,
|
zenity_text_handle_stdin (GIOChannel *channel,
|
||||||
GIOCondition condition,
|
GIOCondition condition,
|
||||||
@ -111,6 +208,12 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
|
|||||||
GObject *text_view;
|
GObject *text_view;
|
||||||
GtkTextBuffer *text_buffer;
|
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;
|
zen_text_data = text_data;
|
||||||
builder = zenity_util_load_ui_file ("zenity_text_dialog",
|
builder = zenity_util_load_ui_file ("zenity_text_dialog",
|
||||||
"textbuffer1", NULL);
|
"textbuffer1", NULL);
|
||||||
@ -179,6 +282,41 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
|
|||||||
else
|
else
|
||||||
gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 400);
|
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);
|
zenity_util_show_dialog (dialog);
|
||||||
|
|
||||||
g_object_unref (builder);
|
g_object_unref (builder);
|
||||||
|
@ -111,6 +111,10 @@ typedef struct {
|
|||||||
gchar *ok_label;
|
gchar *ok_label;
|
||||||
gchar *cancel_label;
|
gchar *cancel_label;
|
||||||
gchar *checkbox;
|
gchar *checkbox;
|
||||||
|
#ifdef HAVE_WEBKITGTK
|
||||||
|
gboolean html;
|
||||||
|
gchar *url;
|
||||||
|
#endif
|
||||||
} ZenityTextData;
|
} ZenityTextData;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -892,7 +892,7 @@
|
|||||||
<property name="can_focus">False</property>
|
<property name="can_focus">False</property>
|
||||||
<property name="border_width">5</property>
|
<property name="border_width">5</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkScrolledWindow" id="scrolledwindow1">
|
<object class="GtkScrolledWindow" id="zenity_text_scrolled_window">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="shadow_type">etched-in</property>
|
<property name="shadow_type">etched-in</property>
|
||||||
|
Reference in New Issue
Block a user