diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-16 00:10:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-16 00:10:01 +0000 |
commit | a2ac0d637fa5e5061aac07f1387117065a283456 (patch) | |
tree | d7ed024c52ffe1d95ede3ae08d702d6528799488 /xparts/mozilla | |
parent | b6bf0b1151892d0defc5e9e94ccc442b58a6f810 (diff) | |
download | tdebindings-a2ac0d637fa5e5061aac07f1387117065a283456.tar.gz tdebindings-a2ac0d637fa5e5061aac07f1387117065a283456.zip |
Implement support for updating the status bar when the mouse cursor is above a link (and by javascript) and the window title is updated when a page is loaded in the mozilla pluginv3.5.13
Thanks to Julius Schwartzenberg for the patch!
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1259023 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'xparts/mozilla')
-rw-r--r-- | xparts/mozilla/kmozilla.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/xparts/mozilla/kmozilla.c b/xparts/mozilla/kmozilla.c index dd65666c..00741591 100644 --- a/xparts/mozilla/kmozilla.c +++ b/xparts/mozilla/kmozilla.c @@ -43,6 +43,9 @@ static void handle_reload(GtkObject *obj, gpointer user_data); /* signal handlers for gtkmozembed signals */ static gboolean open_url_request(GtkObject *obj, const char *url); +static void set_status_bar_link_message(GtkObject *obj); +static void set_status_bar_javascript_status(GtkObject *obj); +static void set_window_caption(GtkObject *obj); /* --------------------------- implementations --------------------------------------- */ @@ -120,6 +123,12 @@ gtk_kmozilla_init(GtkKmozilla *part) GTK_SIGNAL_FUNC(handle_reload), NULL); */ gtk_signal_connect(GTK_OBJECT(moz), "open_uri", GTK_SIGNAL_FUNC(open_url_request), NULL); + gtk_signal_connect(GTK_OBJECT(moz), "link_message", + GTK_SIGNAL_FUNC(set_status_bar_link_message), NULL); + gtk_signal_connect(GTK_OBJECT(moz), "js_status", + GTK_SIGNAL_FUNC(set_status_bar_javascript_status), NULL); + gtk_signal_connect(GTK_OBJECT(moz), "title", + GTK_SIGNAL_FUNC(set_window_caption), NULL); mozilla = part; g_message( "gtk_kmozilla_init\n" ); @@ -194,3 +203,23 @@ static gboolean open_url_request(GtkObject *obj, const char * url) return req; } +static void set_status_bar_link_message(GtkObject *obj) +{ + g_message("==================>>>>>>> kmozilla::setStatusBarLinkMessage"); + gtk_browserextension_set_status_bar_text( ((GtkKmozillaPrivate *)mozilla->data)->ext, + gtk_moz_embed_get_link_message( ((GtkKmozillaPrivate *)mozilla->data)->mozilla ) ); +} + +static void set_status_bar_javascript_status(GtkObject *obj) +{ + g_message("==================>>>>>>> kmozilla::setStatusBarJavascriptStatus"); + gtk_browserextension_set_status_bar_text( ((GtkKmozillaPrivate *)mozilla->data)->ext, + gtk_moz_embed_get_js_status( ((GtkKmozillaPrivate *)mozilla->data)->mozilla ) ); +} + +static void set_window_caption(GtkObject *obj) +{ + g_message("==================>>>>>>> kmozilla::setWindowCaption"); + gtk_browserextension_set_window_caption( ((GtkKmozillaPrivate *)mozilla->data)->ext, + gtk_moz_embed_get_title( ((GtkKmozillaPrivate *)mozilla->data)->mozilla ) ); +} |