]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-theme-adium.c
add myself to AUTHORS
[empathy.git] / libempathy-gtk / empathy-theme-adium.c
index 37c9f1a5629aff648eacc35347ad3e5b3b5b426a..0a9fb98301edbf08dfc8d9fc005061a9a182e17a 100644 (file)
 #include <string.h>
 #include <glib/gi18n.h>
 
-#include <webkit/webkitnetworkrequest.h>
+#include <webkit/webkit.h>
 #include <telepathy-glib/dbus.h>
 #include <telepathy-glib/util.h>
 
+#include <gconf/gconf-client.h>
+#include <pango/pango.h>
+#include <gdk/gdk.h>
 
 #include <libempathy/empathy-time.h>
 #include <libempathy/empathy-utils.h>
-#include <libmissioncontrol/mc-profile.h>
 
 #include "empathy-theme-adium.h"
 #include "empathy-smiley-manager.h"
 
 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyThemeAdium)
 
+/* GConf key containing current value of font */
+#define EMPATHY_GCONF_FONT_KEY_NAME       "/desktop/gnome/interface/font_name"
+#define BORING_DPI_DEFAULT                96
+
 /* "Join" consecutive messages with timestamps within five minutes */
 #define MESSAGE_JOIN_PERIOD 5*60
 
@@ -55,10 +61,12 @@ typedef struct {
        gboolean              last_is_backlog;
        gboolean              page_loaded;
        GList                *message_queue;
+       guint                 notify_enable_webkit_developer_tools_id;
+       GtkWidget            *inspector_window;
 } EmpathyThemeAdiumPriv;
 
 struct _EmpathyAdiumData {
-       guint  ref_count;
+       gint  ref_count;
        gchar *path;
        gchar *basedir;
        gchar *default_avatar_filename;
@@ -98,174 +106,211 @@ G_DEFINE_TYPE_WITH_CODE (EmpathyThemeAdium, empathy_theme_adium,
                         G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CHAT_VIEW,
                                                theme_adium_iface_init));
 
-static WebKitNavigationResponse
-theme_adium_navigation_requested_cb (WebKitWebView        *view,
-                                    WebKitWebFrame       *frame,
-                                    WebKitNetworkRequest *request,
-                                    gpointer              user_data)
+static void
+theme_adium_update_enable_webkit_developer_tools (EmpathyThemeAdium *theme)
 {
-       const gchar *uri;
+       WebKitWebView  *web_view = WEBKIT_WEB_VIEW (theme);
+       gboolean        enable_webkit_developer_tools;
 
-       uri = webkit_network_request_get_uri (request);
-       empathy_url_show (GTK_WIDGET (view), uri);
+       if (!empathy_conf_get_bool (empathy_conf_get (),
+                                   EMPATHY_PREFS_CHAT_WEBKIT_DEVELOPER_TOOLS,
+                                   &enable_webkit_developer_tools)) {
+               return;
+       }
 
-       return WEBKIT_NAVIGATION_RESPONSE_IGNORE;
+       g_object_set (G_OBJECT (webkit_web_view_get_settings (web_view)),
+                     "enable-developer-extras",
+                     enable_webkit_developer_tools,
+                     NULL);
 }
 
 static void
-theme_adium_populate_popup_cb (WebKitWebView *view,
-                              GtkMenu       *menu,
-                              gpointer       user_data)
+theme_adium_notify_enable_webkit_developer_tools_cb (EmpathyConf *conf,
+                                                    const gchar *key,
+                                                    gpointer     user_data)
 {
-       GtkWidget *item;
+       EmpathyThemeAdium  *theme = user_data;
 
-       /* Remove default menu items */
-       gtk_container_foreach (GTK_CONTAINER (menu),
-               (GtkCallback) gtk_widget_destroy, NULL);
-
-       /* Select all item */
-       item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
-       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
-       gtk_widget_show (item);
-
-       g_signal_connect_swapped (item, "activate",
-                                 G_CALLBACK (webkit_web_view_select_all),
-                                 view);
+       theme_adium_update_enable_webkit_developer_tools (theme);
+}
 
-       /* Copy menu item */
-       if (webkit_web_view_can_copy_clipboard (view)) {
-               item = gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL);
-               gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
-               gtk_widget_show (item);
+static gboolean
+theme_adium_navigation_policy_decision_requested_cb (WebKitWebView             *view,
+                                                    WebKitWebFrame            *web_frame,
+                                                    WebKitNetworkRequest      *request,
+                                                    WebKitWebNavigationAction *action,
+                                                    WebKitWebPolicyDecision   *decision,
+                                                    gpointer                   data)
+{
+       const gchar *uri;
 
-               g_signal_connect_swapped (item, "activate",
-                                         G_CALLBACK (webkit_web_view_copy_clipboard),
-                                         view);
+       /* Only call url_show on clicks */
+       if (webkit_web_navigation_action_get_reason (action) !=
+           WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED) {
+               webkit_web_policy_decision_use (decision);
+               return TRUE;
        }
 
-       /* Clear menu item */
-       item = gtk_separator_menu_item_new ();
-       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
-       gtk_widget_show (item);
-
-       item = gtk_image_menu_item_new_from_stock (GTK_STOCK_CLEAR, NULL);
-       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
-       gtk_widget_show (item);
-
-       g_signal_connect_swapped (item, "activate",
-                                 G_CALLBACK (empathy_chat_view_clear),
-                                 view);
+       uri = webkit_network_request_get_uri (request);
+       empathy_url_show (GTK_WIDGET (view), uri);
 
-       /* FIXME: Add open_link and copy_link when those bugs are fixed:
-        * https://bugs.webkit.org/show_bug.cgi?id=16092
-        * https://bugs.webkit.org/show_bug.cgi?id=16562
-        */
+       webkit_web_policy_decision_ignore (decision);
+       return TRUE;
 }
 
-static gchar *
-theme_adium_parse_body (EmpathyThemeAdium *theme,
-                       const gchar       *text)
+static void
+theme_adium_copy_address_cb (GtkMenuItem *menuitem,
+                            gpointer     user_data)
 {
-       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
-       gboolean               use_smileys = FALSE;
-       GSList                *smileys, *l;
-       GString               *string;
-       gint                   i;
-       GRegex                *uri_regex;
-       GMatchInfo            *match_info;
-       gboolean               match;
-       gchar                 *ret = NULL;
-       gint                   prev;
+       WebKitHitTestResult   *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
+       gchar                 *uri;
+       GtkClipboard          *clipboard;
 
-       empathy_conf_get_bool (empathy_conf_get (),
-                              EMPATHY_PREFS_CHAT_SHOW_SMILEYS,
-                              &use_smileys);
+       g_object_get (G_OBJECT (hit_test_result), "link-uri", &uri, NULL);
 
-       if (use_smileys) {
-               /* Replace smileys by a <img/> tag */
-               string = g_string_sized_new (strlen (text));
-               smileys = empathy_smiley_manager_parse (priv->smiley_manager, text);
-               for (l = smileys; l; l = l->next) {
-                       EmpathySmiley *smiley;
-
-                       smiley = l->data;
-                       if (smiley->path) {
-                               g_string_append_printf (string,
-                                                       "<abbr title='%s'><img src=\"%s\"/ alt=\"%s\"/></abbr>",
-                                                       smiley->str, smiley->path, smiley->str);
-                       } else {
-                               gchar *str;
+       clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
+       gtk_clipboard_set_text (clipboard, uri, -1);
 
-                               str = g_markup_escape_text (smiley->str, -1);
-                               g_string_append (string, str);
-                               g_free (str);
-                       }
-                       empathy_smiley_free (smiley);
-               }
-               g_slist_free (smileys);
+       clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
+       gtk_clipboard_set_text (clipboard, uri, -1);
 
-               g_free (ret);
-               text = ret = g_string_free (string, FALSE);
-       }
+       g_free (uri);
+}
 
-       /* Add <a href></a> arround links */
-       uri_regex = empathy_uri_regex_dup_singleton ();
-       match = g_regex_match (uri_regex, text, 0, &match_info);
-       if (match) {
-               gint last = 0;
-               gint s = 0, e = 0;
-
-               string = g_string_sized_new (strlen (text));
-               do {
-                       g_match_info_fetch_pos (match_info, 0, &s, &e);
-
-                       if (s > last) {
-                               /* Append the text between last link (or the
-                                * start of the message) and this link */
-                               g_string_append_len (string, text + last, s - last);
-                       }
+static void
+theme_adium_open_address_cb (GtkMenuItem *menuitem,
+                            gpointer     user_data)
+{
+       WebKitHitTestResult   *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
+       gchar                 *uri;
 
-                       /* Append the link inside <a href=""></a> tag */
-                       g_string_append (string, "<a href=\"");
-                       g_string_append_len (string, text + s, e - s);
-                       g_string_append (string, "\">");
-                       g_string_append_len (string, text + s, e - s);
-                       g_string_append (string, "</a>");
+       g_object_get (G_OBJECT (hit_test_result), "link-uri", &uri, NULL);
 
-                       last = e;
-               } while (g_match_info_next (match_info, NULL));
+       empathy_url_show (GTK_WIDGET (menuitem), uri);
 
-               if (e < strlen (text)) {
-                       /* Append the text after the last link */
-                       g_string_append_len (string, text + e, strlen (text) - e);
-               }
+       g_free (uri);
+}
 
-               g_free (ret);
-               text = ret = g_string_free (string, FALSE);
+static void
+theme_adium_match_newline (const gchar *text,
+                          gssize len,
+                          EmpathyStringReplace replace_func,
+                          EmpathyStringParser *sub_parsers,
+                          gpointer user_data)
+{
+       GString *string = user_data;
+       gint i;
+       gint prev = 0;
+
+       if (len < 0) {
+               len = G_MAXSSIZE;
        }
-       g_match_info_free (match_info);
-       g_regex_unref (uri_regex);
 
        /* Replace \n by <br/> */
-       string = NULL;
-       prev = 0;
-       for (i = 0; text[i] != '\0'; i++) {
+       for (i = 0; i < len && text[i] != '\0'; i++) {
                if (text[i] == '\n') {
-                       if (!string ) {
-                               string = g_string_sized_new (strlen (text));
-                       }
-                       g_string_append_len (string, text + prev, i - prev);
+                       empathy_string_parser_substr (text + prev,
+                                                     i - prev, sub_parsers,
+                                                     user_data);
                        g_string_append (string, "<br/>");
                        prev = i + 1;
                }
        }
-       if (string) {
-               g_string_append (string, text + prev);
-               g_free (ret);
-               text = ret = g_string_free (string, FALSE);
-       }
+       empathy_string_parser_substr (text + prev, i - prev,
+                                     sub_parsers, user_data);
+}
 
-       return ret;
+static void
+theme_adium_replace_link (const gchar *text,
+                         gssize len,
+                         gpointer match_data,
+                         gpointer user_data)
+{
+       GString *string = user_data;
+       gchar *real_url;
+       gchar *escaped;
+
+       real_url = empathy_make_absolute_url_len (text, len);
+
+       /* The thing we are making a link of may contain
+        * characters which need escaping */
+       escaped = g_markup_escape_text (text, len);
+
+       /* Append the link inside <a href=""></a> tag */
+       g_string_append_printf (string, "<a href=\"%s\">%s</a>",
+                               real_url, escaped);
+
+       g_free (real_url);
+       g_free (escaped);
+}
+
+static void
+theme_adium_replace_smiley (const gchar *text,
+                           gssize len,
+                           gpointer match_data,
+                           gpointer user_data)
+{
+       EmpathySmileyHit *hit = match_data;
+       GString *string = user_data;
+
+       /* Replace smiley by a <img/> tag */
+       g_string_append_printf (string,
+                               "<img src=\"%s\" alt=\"%.*s\" title=\"%.*s\"/>",
+                               hit->path, (int)len, text, (int)len, text);
+}
+
+static void
+theme_adium_replace_escaped (const gchar *text,
+                            gssize len,
+                            gpointer match_data,
+                            gpointer user_data)
+{
+       GString *string = user_data;
+       gchar *escaped;
+
+       escaped = g_markup_escape_text (text, len);
+       g_string_append (string, escaped);
+       g_free (escaped);
+}
+
+static EmpathyStringParser string_parsers[] = {
+       {empathy_string_match_link, theme_adium_replace_link},
+       {theme_adium_match_newline, NULL},
+       {empathy_string_match_all, theme_adium_replace_escaped},
+       {NULL, NULL}
+};
+
+static EmpathyStringParser string_parsers_with_smiley[] = {
+       {empathy_string_match_link, theme_adium_replace_link},
+       {empathy_string_match_smiley, theme_adium_replace_smiley},
+       {theme_adium_match_newline, NULL},
+       {empathy_string_match_all, theme_adium_replace_escaped},
+       {NULL, NULL}
+};
+
+static gchar *
+theme_adium_parse_body (const gchar *text)
+{
+       EmpathyStringParser *parsers;
+       GString *string;
+       gboolean use_smileys;
+
+       /* Check if we have to parse smileys */
+       empathy_conf_get_bool (empathy_conf_get (),
+                              EMPATHY_PREFS_CHAT_SHOW_SMILEYS,
+                              &use_smileys);
+       if (use_smileys)
+               parsers = string_parsers_with_smiley;
+       else
+               parsers = string_parsers;
+
+       /* Parse text and construct string with links and smileys replaced
+        * by html tags. Also escape text to make sure html code is
+        * displayed verbatim. */
+       string = g_string_sized_new (strlen (text));
+       empathy_string_parser_substr (text, -1, parsers, string);
+
+       return g_string_free (string, FALSE);
 }
 
 static void
@@ -357,7 +402,6 @@ theme_adium_append_html (EmpathyThemeAdium *theme,
                } else if (theme_adium_match (&cur, "%time")) {
                        gchar *format = NULL;
                        gchar *end;
-
                        /* Time can be in 2 formats:
                         * %time% or %time{strftime format}%
                         * Extract the time format if provided. */
@@ -394,6 +438,28 @@ theme_adium_append_html (EmpathyThemeAdium *theme,
        g_free (script);
 }
 
+static void
+theme_adium_append_event_escaped (EmpathyChatView *view,
+                                 const gchar     *escaped)
+{
+       EmpathyThemeAdium     *theme = EMPATHY_THEME_ADIUM (view);
+       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
+
+       if (priv->data->status_html) {
+               theme_adium_append_html (theme, "appendMessage",
+                                        priv->data->status_html,
+                                        priv->data->status_len,
+                                        escaped, NULL, NULL, NULL, NULL,
+                                        "event", empathy_time_get_current ());
+       }
+
+       /* There is no last contact */
+       if (priv->last_contact) {
+               g_object_unref (priv->last_contact);
+               priv->last_contact = NULL;
+       }
+}
+
 static void
 theme_adium_append_message (EmpathyChatView *view,
                            EmpathyMessage  *msg)
@@ -401,9 +467,8 @@ theme_adium_append_message (EmpathyChatView *view,
        EmpathyThemeAdium     *theme = EMPATHY_THEME_ADIUM (view);
        EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
        EmpathyContact        *sender;
-       EmpathyAccount        *account;
-       McProfile             *account_profile;
-       gchar                 *dup_body = NULL;
+       TpAccount             *account;
+       gchar                 *body_escaped;
        const gchar           *body;
        const gchar           *name;
        const gchar           *contact_id;
@@ -415,7 +480,8 @@ theme_adium_append_message (EmpathyChatView *view,
        const gchar           *func;
        const gchar           *service_name;
        GString               *message_classes = NULL;
-       gboolean              is_backlog;
+       gboolean               is_backlog;
+       gboolean               consecutive;
 
        if (!priv->page_loaded) {
                priv->message_queue = g_list_prepend (priv->message_queue,
@@ -426,14 +492,13 @@ theme_adium_append_message (EmpathyChatView *view,
        /* Get information */
        sender = empathy_message_get_sender (msg);
        account = empathy_contact_get_account (sender);
-       account_profile = empathy_account_get_profile (account);
-       service_name = mc_profile_get_display_name (account_profile);
+       service_name = empathy_protocol_name_to_display_name
+               (tp_account_get_protocol (account));
+       if (service_name == NULL)
+               service_name = tp_account_get_protocol (account);
        timestamp = empathy_message_get_timestamp (msg);
        body = empathy_message_get_body (msg);
-       dup_body = theme_adium_parse_body (theme, body);
-       if (dup_body) {
-               body = dup_body;
-       }
+       body_escaped = theme_adium_parse_body (body);
        name = empathy_contact_get_name (sender);
        contact_id = empathy_contact_get_id (sender);
 
@@ -441,10 +506,11 @@ theme_adium_append_message (EmpathyChatView *view,
        if (empathy_message_get_tptype (msg) == TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION) {
                gchar *str;
 
-               str = g_strdup_printf ("%s %s", name, body);
-               empathy_chat_view_append_event (view, str);
+               str = g_strdup_printf ("%s %s", name, body_escaped);
+               theme_adium_append_event_escaped (view, str);
+
                g_free (str);
-               g_free (dup_body);
+               g_free (body_escaped);
                return;
        }
 
@@ -469,88 +535,89 @@ theme_adium_append_message (EmpathyChatView *view,
                }
        }
 
+       /* We want to join this message with the last one if
+        * - senders are the same contact,
+        * - last message was recieved recently,
+        * - last message and this message both are/aren't backlog, and
+        * - DisableCombineConsecutive is not set in theme's settings */
        is_backlog = empathy_message_is_backlog (msg);
+       consecutive = empathy_contact_equal (priv->last_contact, sender) &&
+               (timestamp - priv->last_timestamp < MESSAGE_JOIN_PERIOD) &&
+               (is_backlog == priv->last_is_backlog) &&
+               !tp_asv_get_boolean (priv->data->info,
+                                    "DisableCombineConsecutive", NULL);
 
-       /* Get the right html/func to add the message */
-       func = "appendMessage";
-
+       /* Define message classes */
        message_classes = g_string_new ("message");
-
-       /* eventually append the "history" class */
        if (is_backlog) {
                g_string_append (message_classes, " history");
        }
-
-       /* check the sender of the message and append the appropriate class */
+       if (consecutive) {
+               g_string_append (message_classes, " consecutive");
+       }
        if (empathy_contact_is_user (sender)) {
                g_string_append (message_classes, " outgoing");
-       }
-       else {
+       } else {
                g_string_append (message_classes, " incoming");
        }
 
-       /*
-        * To mimick Adium's behavior, we only want to join messages
-        * sent by the same contact within a 5 minute time frame.
-        */
-       if (empathy_contact_equal (priv->last_contact, sender) &&
-           (timestamp - priv->last_timestamp < MESSAGE_JOIN_PERIOD) &&
-           (is_backlog == priv->last_is_backlog)) {
-               /* the messages can be appended */
+       /* Define javascript function to use */
+       if (consecutive) {
                func = "appendNextMessage";
-               g_string_append (message_classes, " consecutive");
+       } else {
+               func = "appendMessage";
+       }
 
-               /* check who is the sender of the message to use the correct html file */
-               if (empathy_contact_is_user (sender)) {
-                       /* check if this is a backlog message and use NextContext.html */
+       /* Outgoing */
+       if (empathy_contact_is_user (sender)) {
+               if (consecutive) {
                        if (is_backlog) {
                                html = priv->data->out_nextcontext_html;
                                len = priv->data->out_nextcontext_len;
                        }
 
-                       /*
-                        * html is null if this is not a backlog message or
-                        * if we have to fallback (NextContext.html missing).
-                        * use NextContent.html
-                        */
+                       /* Not backlog, or fallback if NextContext.html
+                        * is missing */
                        if (html == NULL) {
                                html = priv->data->out_nextcontent_html;
                                len = priv->data->out_nextcontent_len;
                        }
                }
-               else {
+
+               /* Not consecutive, or fallback if NextContext.html and/or
+                * NextContent.html are missing */
+               if (html == NULL) {
                        if (is_backlog) {
-                               html = priv->data->in_nextcontext_html;
-                               len = priv->data->in_nextcontext_len;
+                               html = priv->data->out_context_html;
+                               len = priv->data->out_context_len;
                        }
 
                        if (html == NULL) {
-                               html = priv->data->in_nextcontent_html;
-                               len = priv->data->in_nextcontent_len;
+                               html = priv->data->out_content_html;
+                               len = priv->data->out_content_len;
                        }
                }
        }
 
-       /*
-        * we have html == NULL here if:
-        * 1. the message didn't have to be appended because
-        *    the sender was different or the timestamp was too far
-        * 2. NextContent.html file does not exist, so we must
-        *    not forget to fallback to the correct Content.html
-        */
+       /* Incoming, or fallback if outgoing files are missing */
        if (html == NULL) {
-               if (empathy_contact_is_user (sender)) {
+               if (consecutive) {
                        if (is_backlog) {
-                               html = priv->data->out_context_html;
-                               len = priv->data->out_context_len;
+                               html = priv->data->in_nextcontext_html;
+                               len = priv->data->in_nextcontext_len;
                        }
 
+                       /* Note backlog, or fallback if NextContext.html
+                        * is missing */
                        if (html == NULL) {
-                               html = priv->data->out_content_html;
-                               len = priv->data->out_content_len;
+                               html = priv->data->in_nextcontent_html;
+                               len = priv->data->in_nextcontent_len;
                        }
                }
-               else {
+
+               /* Not consecutive, or fallback if NextContext.html and/or
+                * NextContent.html are missing */
+               if (html == NULL) {
                        if (is_backlog) {
                                html = priv->data->in_context_html;
                                len = priv->data->in_context_len;
@@ -563,9 +630,14 @@ theme_adium_append_message (EmpathyChatView *view,
                }
        }
 
-       theme_adium_append_html (theme, func, html, len, body, avatar_filename,
-                                name, contact_id, service_name, message_classes->str,
-                                timestamp);
+       if (html != NULL) {
+               theme_adium_append_html (theme, func, html, len, body_escaped,
+                                        avatar_filename, name, contact_id,
+                                        service_name, message_classes->str,
+                                        timestamp);
+       } else {
+               DEBUG ("Couldn't find HTML file for this message");
+       }
 
        /* Keep the sender of the last displayed message */
        if (priv->last_contact) {
@@ -575,7 +647,7 @@ theme_adium_append_message (EmpathyChatView *view,
        priv->last_timestamp = timestamp;
        priv->last_is_backlog = is_backlog;
 
-       g_free (dup_body);
+       g_free (body_escaped);
        g_string_free (message_classes, TRUE);
 }
 
@@ -583,22 +655,11 @@ static void
 theme_adium_append_event (EmpathyChatView *view,
                          const gchar     *str)
 {
-       EmpathyThemeAdium     *theme = EMPATHY_THEME_ADIUM (view);
-       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
-
-       if (priv->data->status_html) {
-               theme_adium_append_html (theme, "appendMessage",
-                                        priv->data->status_html,
-                                        priv->data->status_len,
-                                        str, NULL, NULL, NULL, NULL, "event",
-                                        empathy_time_get_current ());
-       }
+       gchar *str_escaped;
 
-       /* There is no last contact */
-       if (priv->last_contact) {
-               g_object_unref (priv->last_contact);
-               priv->last_contact = NULL;
-       }
+       str_escaped = g_markup_escape_text (str, -1);
+       theme_adium_append_event_escaped (view, str_escaped);
+       g_free (str_escaped);
 }
 
 static void
@@ -693,6 +754,111 @@ theme_adium_copy_clipboard (EmpathyChatView *view)
        webkit_web_view_copy_clipboard (WEBKIT_WEB_VIEW (view));
 }
 
+static void
+theme_adium_context_menu_selection_done_cb (GtkMenuShell *menu, gpointer user_data)
+{
+       WebKitHitTestResult *hit_test_result = WEBKIT_HIT_TEST_RESULT (user_data);
+
+       g_object_unref (hit_test_result);
+}
+
+static void
+theme_adium_context_menu_for_event (EmpathyThemeAdium *theme, GdkEventButton *event)
+{
+       WebKitWebView              *view = WEBKIT_WEB_VIEW (theme);
+       WebKitHitTestResult        *hit_test_result;
+       WebKitHitTestResultContext  context;
+       GtkWidget                  *menu;
+       GtkWidget                  *item;
+
+       hit_test_result = webkit_web_view_get_hit_test_result (view, event);
+       g_object_get (G_OBJECT (hit_test_result), "context", &context, NULL);
+
+       /* The menu */
+       menu = gtk_menu_new ();
+
+       /* Select all item */
+       item = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
+       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+       g_signal_connect_swapped (item, "activate",
+                                 G_CALLBACK (webkit_web_view_select_all),
+                                 view);
+
+       /* Copy menu item */
+       if (webkit_web_view_can_copy_clipboard (view)) {
+               item = gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL);
+               gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+               g_signal_connect_swapped (item, "activate",
+                                         G_CALLBACK (webkit_web_view_copy_clipboard),
+                                         view);
+       }
+
+       /* Clear menu item */
+       item = gtk_separator_menu_item_new ();
+       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+       item = gtk_image_menu_item_new_from_stock (GTK_STOCK_CLEAR, NULL);
+       gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+       g_signal_connect_swapped (item, "activate",
+                                 G_CALLBACK (empathy_chat_view_clear),
+                                 view);
+
+       /* We will only add the following menu items if we are
+        * right-clicking a link */
+       if (context & WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK) {
+               /* Separator */
+               item = gtk_separator_menu_item_new ();
+               gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+               /* Copy Link Address menu item */
+               item = gtk_menu_item_new_with_mnemonic (_("_Copy Link Address"));
+               g_signal_connect (item, "activate",
+                                 G_CALLBACK (theme_adium_copy_address_cb),
+                                 hit_test_result);
+               gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+
+               /* Open Link menu item */
+               item = gtk_menu_item_new_with_mnemonic (_("_Open Link"));
+               g_signal_connect (item, "activate",
+                                 G_CALLBACK (theme_adium_open_address_cb),
+                                 hit_test_result);
+               gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
+       }
+
+       g_signal_connect (GTK_MENU_SHELL (menu), "selection-done",
+                         G_CALLBACK (theme_adium_context_menu_selection_done_cb),
+                         hit_test_result);
+
+       /* Display the menu */
+       gtk_widget_show_all (menu);
+       gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
+                       event->button, event->time);
+}
+
+static gboolean
+theme_adium_button_press_event (GtkWidget *widget, GdkEventButton *event)
+{
+       if (event->button == 3) {
+               gboolean developer_tools_enabled;
+
+               g_object_get (G_OBJECT (webkit_web_view_get_settings (WEBKIT_WEB_VIEW (widget))),
+                             "enable-developer-extras", &developer_tools_enabled, NULL);
+
+               /* We currently have no way to add an inspector menu
+                * item ourselves, so we disable our customized menu
+                * if the developer extras are enabled. */
+               if (!developer_tools_enabled) {
+                       theme_adium_context_menu_for_event (EMPATHY_THEME_ADIUM (widget), event);
+                       return TRUE;
+               }
+       }
+
+       return GTK_WIDGET_CLASS (empathy_theme_adium_parent_class)->button_press_event (widget, event);
+}
+
 static void
 theme_adium_iface_init (EmpathyChatViewIface *iface)
 {
@@ -738,6 +904,9 @@ theme_adium_finalize (GObject *object)
 
        empathy_adium_data_unref (priv->data);
 
+       empathy_conf_notify_remove (empathy_conf_get (),
+                                   priv->notify_enable_webkit_developer_tools_id);
+
        G_OBJECT_CLASS (empathy_theme_adium_parent_class)->finalize (object);
 }
 
@@ -756,9 +925,140 @@ theme_adium_dispose (GObject *object)
                priv->last_contact = NULL;
        }
 
+       if (priv->inspector_window) {
+               gtk_widget_destroy (priv->inspector_window);
+               priv->inspector_window = NULL;
+       }
+
        G_OBJECT_CLASS (empathy_theme_adium_parent_class)->dispose (object);
 }
 
+static gboolean
+theme_adium_inspector_show_window_cb (WebKitWebInspector *inspector,
+                                     EmpathyThemeAdium  *theme)
+{
+       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
+
+       if (priv->inspector_window) {
+               gtk_widget_show_all (priv->inspector_window);
+       }
+
+       return TRUE;
+}
+
+static gboolean
+theme_adium_inspector_close_window_cb (WebKitWebInspector *inspector,
+                                      EmpathyThemeAdium  *theme)
+{
+       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
+
+       if (priv->inspector_window) {
+               gtk_widget_hide (priv->inspector_window);
+       }
+
+       return TRUE;
+}
+
+static WebKitWebView *
+theme_adium_inspect_web_view_cb (WebKitWebInspector *inspector,
+                                WebKitWebView      *web_view,
+                                EmpathyThemeAdium  *theme)
+{
+       EmpathyThemeAdiumPriv *priv = GET_PRIV (theme);
+       GtkWidget             *scrolled_window;
+       GtkWidget             *inspector_web_view;
+
+       if (!priv->inspector_window) {
+               /* Create main window */
+               priv->inspector_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+               gtk_window_set_default_size (GTK_WINDOW (priv->inspector_window),
+                                            800, 600);
+               g_signal_connect (priv->inspector_window, "delete-event",
+                                 G_CALLBACK (gtk_widget_hide_on_delete), NULL);
+
+               /* Pack a scrolled window */
+               scrolled_window = gtk_scrolled_window_new (NULL, NULL);
+               gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
+                                               GTK_POLICY_AUTOMATIC,
+                                               GTK_POLICY_AUTOMATIC);
+               gtk_container_add (GTK_CONTAINER (priv->inspector_window),
+                                  scrolled_window);
+               gtk_widget_show  (scrolled_window);
+
+               /* Pack a webview in the scrolled window. That webview will be
+                * used to render the inspector tool.  */
+               inspector_web_view = webkit_web_view_new ();
+               gtk_container_add (GTK_CONTAINER (scrolled_window),
+                                  inspector_web_view);
+               gtk_widget_show (scrolled_window);
+
+               return WEBKIT_WEB_VIEW (inspector_web_view);
+       }
+
+       return NULL;
+}
+
+static PangoFontDescription *
+theme_adium_get_default_font (void)
+{
+       GConfClient *gconf_client;
+       PangoFontDescription *pango_fd;
+       gchar *gconf_font_family;
+
+       gconf_client = gconf_client_get_default ();
+       if (gconf_client == NULL) {
+               return NULL;
+       }
+       gconf_font_family = gconf_client_get_string (gconf_client,
+                    EMPATHY_GCONF_FONT_KEY_NAME,
+                    NULL);
+       if (gconf_font_family == NULL) {
+               g_object_unref (gconf_client);
+               return NULL;
+       }
+       pango_fd = pango_font_description_from_string (gconf_font_family);
+       g_free (gconf_font_family);
+       g_object_unref (gconf_client);
+       return pango_fd;
+}
+
+static void
+theme_adium_set_webkit_font (WebKitWebSettings *w_settings,
+                            const gchar *name,
+                            gint size)
+{
+       g_object_set (w_settings, "default-font-family", name, NULL);
+       g_object_set (w_settings, "default-font-size", size, NULL);
+}
+
+static void
+theme_adium_set_default_font (WebKitWebSettings *w_settings)
+{
+       PangoFontDescription *default_font_desc;
+       GdkScreen *current_screen;
+       gdouble dpi = 0;
+       gint pango_font_size = 0;
+
+       default_font_desc = theme_adium_get_default_font ();
+       if (default_font_desc == NULL)
+               return ;
+       pango_font_size = pango_font_description_get_size (default_font_desc)
+               / PANGO_SCALE ;
+       if (pango_font_description_get_size_is_absolute (default_font_desc)) {
+               current_screen = gdk_screen_get_default ();
+               if (current_screen != NULL) {
+                       dpi = gdk_screen_get_resolution (current_screen);
+               } else {
+                       dpi = BORING_DPI_DEFAULT;
+               }
+               pango_font_size = (gint) (pango_font_size / (dpi / 72));
+       }
+       theme_adium_set_webkit_font (w_settings,
+               pango_font_description_get_family (default_font_desc),
+               pango_font_size);
+       pango_font_description_free (default_font_desc);
+}
+
 static void
 theme_adium_constructed (GObject *object)
 {
@@ -766,27 +1066,38 @@ theme_adium_constructed (GObject *object)
        gchar                 *basedir_uri;
        const gchar           *font_family = NULL;
        gint                   font_size = 0;
+       WebKitWebView         *webkit_view = WEBKIT_WEB_VIEW (object);
        WebKitWebSettings     *webkit_settings;
+       WebKitWebInspector    *webkit_inspector;
 
        /* Set default settings */
        font_family = tp_asv_get_string (priv->data->info, "DefaultFontFamily");
        font_size = tp_asv_get_int32 (priv->data->info, "DefaultFontSize", NULL);
-       webkit_settings = webkit_web_settings_new ();
-       if (font_family) {
-               g_object_set (G_OBJECT (webkit_settings), "default-font-family", font_family, NULL);
-       }
-       if (font_size) {
-               g_object_set (G_OBJECT (webkit_settings), "default-font-size", font_size, NULL);
+       webkit_settings = webkit_web_view_get_settings (webkit_view);
+
+       if (font_family && font_size) {
+               theme_adium_set_webkit_font (webkit_settings, font_family, font_size);
+       } else {
+               theme_adium_set_default_font (webkit_settings);
        }
-       webkit_web_view_set_settings (WEBKIT_WEB_VIEW (object), webkit_settings);
+
+       /* Setup webkit inspector */
+       webkit_inspector = webkit_web_view_get_inspector (webkit_view);
+       g_signal_connect (webkit_inspector, "inspect-web-view",
+                         G_CALLBACK (theme_adium_inspect_web_view_cb),
+                         object);
+       g_signal_connect (webkit_inspector, "show-window",
+                         G_CALLBACK (theme_adium_inspector_show_window_cb),
+                         object);
+       g_signal_connect (webkit_inspector, "close-window",
+                         G_CALLBACK (theme_adium_inspector_close_window_cb),
+                         object);
 
        /* Load template */
        basedir_uri = g_strconcat ("file://", priv->data->basedir, NULL);
        webkit_web_view_load_html_string (WEBKIT_WEB_VIEW (object),
                                          priv->data->template_html,
                                          basedir_uri);
-
-       g_object_unref (webkit_settings);
        g_free (basedir_uri);
 }
 
@@ -831,6 +1142,7 @@ static void
 empathy_theme_adium_class_init (EmpathyThemeAdiumClass *klass)
 {
        GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       GtkWidgetClass* widget_class = GTK_WIDGET_CLASS (klass);
 
        object_class->finalize = theme_adium_finalize;
        object_class->dispose = theme_adium_dispose;
@@ -838,6 +1150,8 @@ empathy_theme_adium_class_init (EmpathyThemeAdiumClass *klass)
        object_class->get_property = theme_adium_get_property;
        object_class->set_property = theme_adium_set_property;
 
+       widget_class->button_press_event = theme_adium_button_press_event;
+
        g_object_class_install_property (object_class,
                                         PROP_ADIUM_DATA,
                                         g_param_spec_boxed ("adium-data",
@@ -848,7 +1162,6 @@ empathy_theme_adium_class_init (EmpathyThemeAdiumClass *klass)
                                                              G_PARAM_READWRITE |
                                                              G_PARAM_STATIC_STRINGS));
 
-
        g_type_class_add_private (object_class, sizeof (EmpathyThemeAdiumPriv));
 }
 
@@ -865,12 +1178,17 @@ empathy_theme_adium_init (EmpathyThemeAdium *theme)
        g_signal_connect (theme, "load-finished",
                          G_CALLBACK (theme_adium_load_finished_cb),
                          NULL);
-       g_signal_connect (theme, "navigation-requested",
-                         G_CALLBACK (theme_adium_navigation_requested_cb),
-                         NULL);
-       g_signal_connect (theme, "populate-popup",
-                         G_CALLBACK (theme_adium_populate_popup_cb),
+       g_signal_connect (theme, "navigation-policy-decision-requested",
+                         G_CALLBACK (theme_adium_navigation_policy_decision_requested_cb),
                          NULL);
+
+       priv->notify_enable_webkit_developer_tools_id =
+               empathy_conf_notify_add (empathy_conf_get (),
+                                        EMPATHY_PREFS_CHAT_WEBKIT_DEVELOPER_TOOLS,
+                                        theme_adium_notify_enable_webkit_developer_tools_cb,
+                                        theme);
+
+       theme_adium_update_enable_webkit_developer_tools (theme);
 }
 
 EmpathyThemeAdium *