diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/.cvsignore | 2 | ||||
-rw-r--r-- | plugins/Makefile.am | 5 | ||||
-rw-r--r-- | plugins/sample/.cvsignore | 2 | ||||
-rw-r--r-- | plugins/sample/Makefile.am | 19 | ||||
-rw-r--r-- | plugins/sample/sample.c | 122 |
5 files changed, 0 insertions, 150 deletions
diff --git a/plugins/.cvsignore b/plugins/.cvsignore deleted file mode 100644 index 282522db0..000000000 --- a/plugins/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile -Makefile.in diff --git a/plugins/Makefile.am b/plugins/Makefile.am deleted file mode 100644 index 8496a69ed..000000000 --- a/plugins/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -SUBDIRS = - -if ENABLE_SAMPLE_PLUGIN -SUBDIRS += sample -endif diff --git a/plugins/sample/.cvsignore b/plugins/sample/.cvsignore deleted file mode 100644 index 282522db0..000000000 --- a/plugins/sample/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile -Makefile.in diff --git a/plugins/sample/Makefile.am b/plugins/sample/Makefile.am deleted file mode 100644 index 2c735e923..000000000 --- a/plugins/sample/Makefile.am +++ /dev/null @@ -1,19 +0,0 @@ -plugindir = $(libdir)/epiphany/plugins - -INCLUDES = \ - -I$(top_srcdir)/src \ - -I$(top_srcdir)/embed \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src/bookmarks \ - $(EPIPHANY_DEPENDENCY_CFLAGS) \ - -DSHARE_DIR=\"$(pkgdatadir)\" \ - -DG_DISABLE_DEPRECATED \ - -DGDK_DISABLE_DEPRECATED \ - -DGTK_DISABLE_DEPRECATED \ - -DGDK_PIXBUF_DISABLE_DEPRECATED \ - -DGNOME_DISABLE_DEPRECATED - -plugin_LTLIBRARIES = libsample.la - -libsample_la_SOURCES = \ - sample.c diff --git a/plugins/sample/sample.c b/plugins/sample/sample.c deleted file mode 100644 index fb5e9ed64..000000000 --- a/plugins/sample/sample.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Copyright (C) 2003 Marco Pesenti Gritti - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -#include <gmodule.h> -#include <glib-object.h> - -#include "ephy-shell.h" -#include "session.h" - -static void -bmk_added (EphyNode *node, EphyNode *child) -{ - g_print ("Bookmark added\n"); -} - -static void -bmk_removed (EphyNode *node, EphyNode *child) -{ - g_print ("Bookmark removed\n"); -} - -static void -bmk_changed (EphyNode *node, EphyNode *child) -{ - g_print ("Bookmark changed\n"); -} - -static void -switch_page_cb (GtkWidget *widget) -{ - GtkWidget *toplevel; - EphyTab *tab; - - toplevel = gtk_widget_get_toplevel (widget); - - tab = ephy_window_get_active_tab (EPHY_WINDOW (toplevel)); - g_print ("New active tab is %p\n", tab); -} - -static gboolean -window_focus_in_cb (GtkWidget *widget, GdkEventFocus *event) -{ - EphyTab *tab; - - tab = ephy_window_get_active_tab (EPHY_WINDOW (widget)); - g_print ("New active tab is %p\n", tab); - - return FALSE; -} - -static void -location_changed_cb (EphyEmbed *embed, char *location) -{ - g_print ("New location %s\n", location); -} - -static void -tab_added_cb (GtkWidget *nb, GtkWidget *child) -{ - g_signal_connect (child, "ge_location", - G_CALLBACK (location_changed_cb), NULL); -} - -static void -new_window_cb (Session *session, EphyWindow *window) -{ - GtkWidget *nb; - - nb = ephy_window_get_notebook (window); - - g_signal_connect (window, "focus_in_event", - G_CALLBACK (window_focus_in_cb), NULL); - g_signal_connect (nb, "switch_page", - G_CALLBACK (switch_page_cb), NULL); - g_signal_connect (nb, "tab_added", - G_CALLBACK (tab_added_cb), NULL); -} - -G_MODULE_EXPORT void -plugin_init (GTypeModule *module) -{ - EphyBookmarks *bookmarks; - Session *session; - EphyNode *bmks; - - g_print ("plugin init\n"); - - bookmarks = ephy_shell_get_bookmarks (ephy_shell); - bmks = ephy_bookmarks_get_bookmarks (bookmarks); - ephy_node_signal_connect_object (bmks, EPHY_NODE_CHILD_ADDED, - (EphyNodeCallback) bmk_added, NULL); - ephy_node_signal_connect_object (bmks, EPHY_NODE_CHILD_CHANGED, - (EphyNodeCallback) bmk_changed, NULL); - ephy_node_signal_connect_object (bmks, EPHY_NODE_CHILD_REMOVED, - (EphyNodeCallback) bmk_removed, NULL); - - session = SESSION (ephy_shell_get_session (ephy_shell)); - g_signal_connect (session, "new_window", - G_CALLBACK (new_window_cb), NULL); -} - -G_MODULE_EXPORT void -plugin_exit (void) -{ - g_print ("plugin exit\n"); -} |