aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/copy-tool
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-21 16:39:32 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-21 16:39:32 +0800
commitafd12780109f1c42fcfcb232a2b4803cc3cb5ca2 (patch)
tree20814b8c734e03716487b5de2c127b2c5b9c7340 /plugins/copy-tool
parent76f723f9d0e1d6590d09e89c90a520cb010784a1 (diff)
downloadgsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar.gz
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar.bz2
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar.lz
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar.xz
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.tar.zst
gsoc2013-evolution-afd12780109f1c42fcfcb232a2b4803cc3cb5ca2.zip
implemented a copy-utils plugin.
2004-10-20 Not Zed <NotZed@Ximian.com> * implemented a copy-utils plugin. svn path=/trunk/; revision=27671
Diffstat (limited to 'plugins/copy-tool')
-rw-r--r--plugins/copy-tool/ChangeLog4
-rw-r--r--plugins/copy-tool/Makefile.am11
-rw-r--r--plugins/copy-tool/copy-tool.c100
-rw-r--r--plugins/copy-tool/org-gnome-copy-tool.eplug.in23
4 files changed, 138 insertions, 0 deletions
diff --git a/plugins/copy-tool/ChangeLog b/plugins/copy-tool/ChangeLog
new file mode 100644
index 0000000000..2c85c5e3be
--- /dev/null
+++ b/plugins/copy-tool/ChangeLog
@@ -0,0 +1,4 @@
+2004-10-20 Not Zed <NotZed@Ximian.com>
+
+ * implemented a copy-utils plugin.
+
diff --git a/plugins/copy-tool/Makefile.am b/plugins/copy-tool/Makefile.am
new file mode 100644
index 0000000000..2745fe44f8
--- /dev/null
+++ b/plugins/copy-tool/Makefile.am
@@ -0,0 +1,11 @@
+INCLUDES = \
+ -I$(top_srcdir) \
+ $(EVOLUTION_MAIL_CFLAGS)
+
+@EVO_PLUGIN_RULE@
+
+plugin_DATA = org-gnome-copy-tool.eplug
+plugin_LTLIBRARIES = liborg-gnome-copy-tool.la
+
+liborg_gnome_copy_tool_la_SOURCES = copy-tool.c
+liborg_gnome_copy_tool_la_LDFLAGS = -module -avoid-version
diff --git a/plugins/copy-tool/copy-tool.c b/plugins/copy-tool/copy-tool.c
new file mode 100644
index 0000000000..5571ba25c1
--- /dev/null
+++ b/plugins/copy-tool/copy-tool.c
@@ -0,0 +1,100 @@
+
+/* Copyright (C) 2004 Michael Zucchi */
+
+/* This file is licensed under the GNU GPL v2 or later */
+
+/* Add 'copy to clipboard' things to various menu's.
+
+ Uh, so far only to copy mail addresses from mail content */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <glib/gi18n-lib.h>
+#include <string.h>
+#include <stdio.h>
+
+#include "mail/em-popup.h"
+
+#include <gtk/gtkmain.h>
+#include <gtk/gtkinvisible.h>
+#include <gtk/gtkselection.h>
+
+#include "camel/camel-internet-address.h"
+#include "camel/camel-url.h"
+
+static GtkWidget *invisible;
+static char *address_uri;
+
+void org_gnome_copy_tool_copy_address(void *ep, EMPopupTargetURI *t);
+
+void
+org_gnome_copy_tool_copy_address(void *ep, EMPopupTargetURI *t)
+{
+ g_free(address_uri);
+ address_uri = g_strdup(t->uri);
+
+ printf("copying address '%s'\n", address_uri);
+
+ gtk_selection_owner_set(invisible, GDK_SELECTION_PRIMARY, gtk_get_current_event_time());
+ gtk_selection_owner_set(invisible, GDK_SELECTION_CLIPBOARD, gtk_get_current_event_time());
+}
+
+static void
+ct_selection_get(GtkWidget *widget, GtkSelectionData *data, guint info, guint time_stamp, void *dummy)
+{
+ printf("get selection, address is '%s'\n", address_uri);
+
+ if (address_uri == NULL)
+ return;
+
+ if (strncmp (address_uri, "mailto:", 7) == 0) {
+ CamelInternetAddress *cia = camel_internet_address_new();
+ CamelURL *curl;
+ char *addr;
+ const char *tmp;
+
+ curl = camel_url_new(address_uri, NULL);
+ camel_address_decode((CamelAddress *)cia, curl->path);
+ /* should it perhaps use address format? */
+ addr = camel_address_encode((CamelAddress *)cia);
+ tmp = addr && addr[0] ? addr : address_uri + 7;
+ printf("get selection, setting to' %s'\n", tmp);
+
+ gtk_selection_data_set(data, data->target, 8, tmp, strlen(tmp));
+ g_free(addr);
+ camel_url_free(curl);
+ camel_object_unref(cia);
+ }
+}
+
+static void
+ct_selection_clear_event(GtkWidget *widget, GdkEventSelection *event, void *dummy)
+{
+ printf("selection clear event\n");
+
+ g_free(address_uri);
+ address_uri = NULL;
+}
+
+int e_plugin_lib_enable(EPluginLib *ep, int enable);
+
+int
+e_plugin_lib_enable(EPluginLib *ep, int enable)
+{
+ if (enable) {
+ invisible = gtk_invisible_new();
+ g_signal_connect(invisible, "selection_get", G_CALLBACK(ct_selection_get), NULL);
+ g_signal_connect(invisible, "selection_clear_event", G_CALLBACK(ct_selection_clear_event), NULL);
+ gtk_selection_add_target(invisible, GDK_SELECTION_PRIMARY, GDK_SELECTION_TYPE_STRING, 0);
+ gtk_selection_add_target(invisible, GDK_SELECTION_CLIPBOARD, GDK_SELECTION_TYPE_STRING, 1);
+ } else {
+ g_free(address_uri);
+ address_uri = NULL;
+ gtk_widget_destroy(invisible);
+ invisible = NULL;
+ }
+
+ return 0;
+}
diff --git a/plugins/copy-tool/org-gnome-copy-tool.eplug.in b/plugins/copy-tool/org-gnome-copy-tool.eplug.in
new file mode 100644
index 0000000000..a1c37b357a
--- /dev/null
+++ b/plugins/copy-tool/org-gnome-copy-tool.eplug.in
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<e-plugin-list>
+ <e-plugin
+ type="shlib"
+ id="org.gnome.evolution.plugin.copyTool"
+ location="@PLUGINDIR@/liborg-gnome-copy-tool.so"
+ name="A tool to extend various clipboard operations"
+ description="A test plugin which demonstrates a popup menu plugin which lets you copy things to the clipboard">
+
+ <!-- hook into the uri popup menu -->
+ <hook class="org.gnome.evolution.mail.popup:1.0">
+ <menu id="org.gnome.evolution.mail.folderview.popup.uri" target="uri">
+ <item
+ type="item"
+ path="80.test"
+ image="gtk-copy"
+ label="Copy _Email Address"
+ visible="mailto"
+ activate="org_gnome_copy_tool_copy_address"/>
+ </menu>
+ </hook>
+ </e-plugin>
+</e-plugin-list>