From 8cbdd61c97906a8f97d1d2dbbebb1586c0088435 Mon Sep 17 00:00:00 2001 From: MonkeyOfDoom Date: Fri, 18 Jun 2010 23:07:27 +0200 Subject: [PATCH] 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 file changed, 109 insertions(+) create mode 100644 extensions/copy-tabs.c diff --git a/extensions/copy-tabs.c b/extensions/copy-tabs.c new file mode 100644 index 00000000..2734ec54 --- /dev/null +++ b/extensions/copy-tabs.c @@ -0,0 +1,109 @@ +/* + Copyright (C) 2008-2010 Christian Dywan + + 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 +#include + +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 ", + NULL); + + g_signal_connect (extension, "activate", + G_CALLBACK (copy_tabs_activate_cb), NULL); + + return extension; +} +