From ea01b45780e5e3eecb2a55b94af5b541c20322be Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Wed, 19 Dec 2007 21:46:55 +0000 Subject: Middle click on entries in History Window and Bookmark Editor opens the page in a new tab. Close bug #385037. svn path=/trunk/; revision=7791 --- src/bookmarks/ephy-bookmarks-editor.c | 23 +++++++++++++++++++++++ src/ephy-history-window.c | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) (limited to 'src') diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index ac2159f71..0ebe927ab 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -1280,6 +1280,25 @@ ephy_bookmarks_editor_node_activated_cb (GtkWidget *view, EPHY_NEW_TAB_OPEN_PAGE); } +static void +ephy_bookmarks_editor_node_middle_clicked_cb (GtkWidget *view, + EphyNode *node, + EphyBookmarksEditor *editor) +{ + EphyWindow *window; + const char *location; + + window = EPHY_WINDOW (get_target_window (editor)); + + location = ephy_node_get_property_string + (node, EPHY_NODE_BMK_PROP_LOCATION); + g_return_if_fail (location != NULL); + + ephy_shell_new_tab (ephy_shell, window, NULL, location, + EPHY_NEW_TAB_OPEN_PAGE | + EPHY_NEW_TAB_IN_EXISTING_WINDOW); +} + static void ephy_bookmarks_editor_update_menu (EphyBookmarksEditor *editor) { @@ -1970,6 +1989,10 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) "node_activated", G_CALLBACK (ephy_bookmarks_editor_node_activated_cb), editor); + g_signal_connect (G_OBJECT (bm_view), + "node_middle_clicked", + G_CALLBACK (ephy_bookmarks_editor_node_middle_clicked_cb), + editor); g_signal_connect (G_OBJECT (bm_view), "popup_menu", G_CALLBACK (ephy_bookmarks_editor_show_popup_cb), diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index f535ee6ef..42164e5dd 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -692,6 +692,25 @@ ephy_history_window_node_activated_cb (GtkWidget *view, EPHY_NEW_TAB_OPEN_PAGE); } +static void +ephy_history_window_node_middle_clicked_cb (GtkWidget *view, + EphyNode *node, + EphyHistoryWindow *editor) +{ + EphyWindow *window; + const char *location; + + window = EPHY_WINDOW (get_target_window (editor)); + + location = ephy_node_get_property_string + (node, EPHY_NODE_PAGE_PROP_LOCATION); + g_return_if_fail (location != NULL); + + ephy_shell_new_tab (ephy_shell, window, NULL, location, + EPHY_NEW_TAB_OPEN_PAGE | + EPHY_NEW_TAB_IN_EXISTING_WINDOW); +} + static void ephy_history_window_update_menu (EphyHistoryWindow *editor) { @@ -1466,6 +1485,10 @@ ephy_history_window_construct (EphyHistoryWindow *editor) "node_activated", G_CALLBACK (ephy_history_window_node_activated_cb), editor); + g_signal_connect (G_OBJECT (pages_view), + "node-middle-clicked", + G_CALLBACK (ephy_history_window_node_middle_clicked_cb), + editor); g_signal_connect (G_OBJECT (pages_view), "popup_menu", G_CALLBACK (ephy_history_window_show_popup_cb), -- cgit v1.2.3