[Xfce4-commits] <midori:master> Add extension 'Copy Addresses of Tabs'
Christian Dywan
noreply at xfce.org
Sat Jun 19 00:38:01 CEST 2010
Updating branch refs/heads/master
to 8cbdd61c97906a8f97d1d2dbbebb1586c0088435 (commit)
from ff9ef6aeaee0453bf04062e672632d4c53a46b85 (commit)
commit 8cbdd61c97906a8f97d1d2dbbebb1586c0088435
Author: MonkeyOfDoom <pixelmonkey at ensellitis.com>
Date: Fri Jun 18 23:07:27 2010 +0200
Add extension 'Copy Addresses of Tabs'
The extension adds a menu item to copy the addresses of all tabs
to the clipboard.
extensions/copy-tabs.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 109 insertions(+), 0 deletions(-)
diff --git a/extensions/copy-tabs.c b/extensions/copy-tabs.c
new file mode 100644
index 0000000..2734ec5
--- /dev/null
+++ b/extensions/copy-tabs.c
@@ -0,0 +1,109 @@
+/*
+ Copyright (C) 2008-2010 Christian Dywan <christian at twotoasts.de>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ See the file COPYING for the full license text.
+*/
+
+#include <midori/midori.h>
+#include <midori/sokoke.h>
+
+static void
+copy_tabs_apply_cb (GtkWidget* menuitem,
+ MidoriBrowser* browser)
+{
+ guint i = 0;
+ GtkWidget* view;
+ gchar* text = g_strdup ("");
+ GtkClipboard* clipboard = gtk_widget_get_clipboard (menuitem,
+ GDK_SELECTION_CLIPBOARD);
+
+ while ((view = midori_browser_get_nth_tab (browser, i++)))
+ {
+ gchar* new_text = g_strconcat (text,
+ midori_view_get_display_uri (MIDORI_VIEW (view)), "\n", NULL);
+ katze_assign (text, new_text);
+ }
+ gtk_clipboard_set_text (clipboard, text, -1);
+}
+
+static void
+copy_tabs_browser_populate_tool_menu_cb (MidoriBrowser* browser,
+ GtkWidget* menu,
+ MidoriExtension* extension)
+{
+ GtkWidget* menuitem = gtk_menu_item_new_with_mnemonic (_("Copy Tab _Addresses"));
+
+ g_signal_connect (menuitem, "activate",
+ G_CALLBACK (copy_tabs_apply_cb), browser);
+ gtk_widget_show (menuitem);
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
+}
+
+static void
+copy_tabs_app_add_browser_cb (MidoriApp* app,
+ MidoriBrowser* browser,
+ MidoriExtension* extension);
+
+static void
+copy_tabs_deactivate_cb (MidoriExtension* extension,
+ MidoriBrowser* browser)
+{
+ MidoriApp* app = midori_extension_get_app (extension);
+
+ g_signal_handlers_disconnect_by_func (
+ browser, copy_tabs_browser_populate_tool_menu_cb, extension);
+ g_signal_handlers_disconnect_by_func (
+ extension, copy_tabs_deactivate_cb, browser);
+ g_signal_handlers_disconnect_by_func (
+ app, copy_tabs_app_add_browser_cb, extension);
+}
+
+static void
+copy_tabs_app_add_browser_cb (MidoriApp* app,
+ MidoriBrowser* browser,
+ MidoriExtension* extension)
+{
+ g_signal_connect (browser, "populate-tool-menu",
+ G_CALLBACK (copy_tabs_browser_populate_tool_menu_cb), extension);
+ g_signal_connect (extension, "deactivate",
+ G_CALLBACK (copy_tabs_deactivate_cb), browser);
+}
+
+static void
+copy_tabs_activate_cb (MidoriExtension* extension,
+ MidoriApp* app)
+{
+ KatzeArray* browsers;
+ MidoriBrowser* browser;
+ guint i;
+
+ browsers = katze_object_get_object (app, "browsers");
+ i = 0;
+ while ((browser = katze_array_get_nth_item (browsers, i++)))
+ copy_tabs_app_add_browser_cb (app, browser, extension);
+ g_object_unref (browsers);
+ g_signal_connect (app, "add-browser",
+ G_CALLBACK (copy_tabs_app_add_browser_cb), extension);
+}
+
+MidoriExtension*
+extension_init (void)
+{
+ MidoriExtension* extension = g_object_new (MIDORI_TYPE_EXTENSION,
+ "name", _("Copy Addresses of Tabs"),
+ "description", _("Copy the addresses of all tabs to the clipboard"),
+ "version", "0.1",
+ "authors", "MonkeyOfDoom <pixelmonkey at ensellitis.com>",
+ NULL);
+
+ g_signal_connect (extension, "activate",
+ G_CALLBACK (copy_tabs_activate_cb), NULL);
+
+ return extension;
+}
+
More information about the Xfce4-commits
mailing list