diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-10-21 10:51:38 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-10-21 10:51:38 +0800 |
commit | 6d74595779416412b478dd4ae3d38dffd3f4baae (patch) | |
tree | f5793662a36daff8df54de77077193920fb5acc3 /filter/filter-url.c | |
parent | 3d17cca7ed57dcde3c6649e15d4ac7fe30174776 (diff) | |
download | gsoc2013-evolution-6d74595779416412b478dd4ae3d38dffd3f4baae.tar.gz gsoc2013-evolution-6d74595779416412b478dd4ae3d38dffd3f4baae.tar.zst gsoc2013-evolution-6d74595779416412b478dd4ae3d38dffd3f4baae.zip |
Added filter-url.[c,h].
2000-10-20 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am: Added filter-url.[c,h].
* filter-message-search.c (get_source): New callback to get the
source url of the message being filtered.
(filter_message_search): Now takes a source argument.
* filter-element.c (filter_element_new_type_name): Added code to
handle URL types.
* filter-url.[c,h]: New filter object to handle URLs (ie in the
case of filtering on source url). FIXME: find a way to populate
the source combo box (including mail-config.h breaks the build in
the addressbook - how does including mail-tools.h not break the
build???)
* filtertypes.xml: Added the source filter type and added the
move-to action.
* filter-driver.c (do_move): New callback, a "Copy" action should
just copy the message to another location while a Move should both
copy the message to a new location and delete it from the source
location.
(do_delete): Set the deleted flag on the message info.
(filter_driver_filter_message): Now returns void as we don't care
if it was copied or not in the caller functions. Also check the
CamelMessageInfo being passed in - if the message has been marked
as deleted prior to being filtered, then return immediately as we
don't want to apply filter actions to deleted messages.
svn path=/trunk/; revision=6094
Diffstat (limited to 'filter/filter-url.c')
-rw-r--r-- | filter/filter-url.c | 225 |
1 files changed, 225 insertions, 0 deletions
diff --git a/filter/filter-url.c b/filter/filter-url.c new file mode 100644 index 0000000000..f84470d934 --- /dev/null +++ b/filter/filter-url.c @@ -0,0 +1,225 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast <fejj@helixcode.com> + * + * Copyright 2000 Helix Code, Inc. (www.helixcode.com) + * + * 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 of the License, 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 Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#include <gtk/gtk.h> +#include <gnome.h> +#include <gnome-xml/xmlmemory.h> + +#include "e-util/e-sexp.h" +#include "filter-url.h" +/*#include "mail/mail-config.h"*/ + +#define d(x) + +static void xml_create (FilterElement *fe, xmlNodePtr node); +static xmlNodePtr xml_encode (FilterElement *fe); +static int xml_decode (FilterElement *fe, xmlNodePtr node); +static GtkWidget *get_widget (FilterElement *fe); +static void build_code (FilterElement *fe, GString *out, struct _FilterPart *ff); +static void format_sexp (FilterElement *, GString *); + +static void filter_url_class_init (FilterUrlClass *class); +static void filter_url_init (FilterUrl *gspaper); +static void filter_url_finalise (GtkObject *obj); + +#define _PRIVATE(x) (((FilterUrl *)(x))->priv) + +struct _FilterUrlPrivate { +}; + +static FilterElementClass *parent_class; + +enum { + LAST_SIGNAL +}; + +static guint signals[LAST_SIGNAL] = { 0 }; + +guint +filter_url_get_type (void) +{ + static guint type = 0; + + if (!type) { + GtkTypeInfo type_info = { + "FilterUrl", + sizeof (FilterUrl), + sizeof (FilterUrlClass), + (GtkClassInitFunc) filter_url_class_init, + (GtkObjectInitFunc) filter_url_init, + (GtkArgSetFunc) NULL, + (GtkArgGetFunc) NULL + }; + + type = gtk_type_unique (filter_element_get_type (), &type_info); + } + + return type; +} + +static void +filter_url_class_init (FilterUrlClass *class) +{ + GtkObjectClass *object_class; + FilterElementClass *filter_element = (FilterElementClass *)class; + + object_class = (GtkObjectClass *) class; + parent_class = gtk_type_class (filter_element_get_type ()); + + object_class->finalize = filter_url_finalise; + + /* override methods */ + filter_element->xml_create = xml_create; + filter_element->xml_encode = xml_encode; + filter_element->xml_decode = xml_decode; + filter_element->get_widget = get_widget; + filter_element->build_code = build_code; + filter_element->format_sexp = format_sexp; + + /* signals */ + + gtk_object_class_add_signals (object_class, signals, LAST_SIGNAL); +} + +static void +filter_url_init (FilterUrl *o) +{ + o->priv = g_malloc0 (sizeof (*o->priv)); +} + +static void +filter_url_finalise (GtkObject *obj) +{ + FilterUrl *o = (FilterUrl *)obj; + + o = o; + + ((GtkObjectClass *)(parent_class))->finalize (obj); +} + +/** + * filter_url_new: + * + * Create a new FilterUrl object. + * + * Return value: A new #FilterUrl object. + **/ +FilterUrl * +filter_url_new (void) +{ + FilterUrl *o = (FilterUrl *) gtk_type_new (filter_url_get_type ()); + + return o; +} + +static void +xml_create (FilterElement *fe, xmlNodePtr node) +{ + /*FilterUrl *fu = (FilterUrl *)fe;*/ + + /* parent implementation */ + ((FilterElementClass *)(parent_class))->xml_create (fe, node); +} + +static xmlNodePtr +xml_encode (FilterElement *fe) +{ + xmlNodePtr value; + FilterUrl *fu = (FilterUrl *)fe; + + d(printf ("Encoding url as xml\n")); + value = xmlNewNode (NULL, "value"); + xmlSetProp (value, "name", fe->name); + xmlSetProp (value, "type", "url"); + + xmlSetProp (value, "url", fu->url); + + return value; +} + +static gchar * +get_value (xmlNodePtr node, char *name) +{ + gchar *value; + + value = xmlGetProp (node, name); + + return value; +} + + +static int +xml_decode (FilterElement *fe, xmlNodePtr node) +{ + FilterUrl *fu = (FilterUrl *)fe; + + fe->name = xmlGetProp (node, "name"); + fu->url = get_value (node, "url"); + + return 0; +} + +static void +set_url (GtkWidget *entry, FilterUrl *fu) +{ + fu->url = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry))); +} + +static GtkWidget * +get_widget (FilterElement *fe) +{ + GtkWidget *combo; + GList *sources; + GSList *s; + + combo = gtk_combo_new (); + /*s = mail_config_get_sources (); + sources = NULL; + while (s) { + MailConfigService *service = s->data; + sources = g_list_append (sources, service->url); + s = s->next; + } + gtk_combo_set_popdown_strings (GTK_COMBO (combo), sources); + g_list_free (sources); + */ + + gtk_widget_show (combo); + gtk_signal_connect (GTK_OBJECT (GTK_EDITABLE (GTK_COMBO (combo)->entry)), "changed", set_url, fe); + + return combo; +} + +static void +build_code (FilterElement *fe, GString *out, struct _FilterPart *ff) +{ + return; +} + +static void +format_sexp (FilterElement *fe, GString *out) +{ + FilterUrl *fu = (FilterUrl *)fe; + + e_sexp_encode_string (out, fu->url); +} |