diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-20 17:26:17 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-20 17:26:17 +0800 |
commit | 917375e4d4b7b6b5cb85717dacac5539b6fb5caa (patch) | |
tree | a853135e27cf7d4b63d2fe507b6bcce175f903a9 /filter | |
parent | 02784c310f6a2b2a36d43f4262c413833338f890 (diff) | |
download | gsoc2013-evolution-917375e4d4b7b6b5cb85717dacac5539b6fb5caa.tar.gz gsoc2013-evolution-917375e4d4b7b6b5cb85717dacac5539b6fb5caa.tar.zst gsoc2013-evolution-917375e4d4b7b6b5cb85717dacac5539b6fb5caa.zip |
** See bug #54338.
2004-02-20 Not Zed <NotZed@Ximian.com>
** See bug #54338.
* vfolder-rule.c: instead of overriding the filter-rule's 'source'
attribute for 'with sources', add a 'with' enum.
(xml_decode): handle loading old-format files, as well as new
ones, where the with is a prop on the sources xml.
(xml_encode): set 'with' on save.
(rule_copy): copy across with value.
(get_widget): just hook onto option menu changed, dont bother
setting up any per-item callbacks.
(select_source_with_changed): callback to monitor source 'with'
type.
svn path=/trunk/; revision=24815
Diffstat (limited to 'filter')
-rw-r--r-- | filter/ChangeLog | 15 | ||||
-rw-r--r-- | filter/vfolder-editor.c | 2 | ||||
-rw-r--r-- | filter/vfolder-rule.c | 110 | ||||
-rw-r--r-- | filter/vfolder-rule.h | 13 |
4 files changed, 85 insertions, 55 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 792a8a2bbe..372d32b4ec 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,18 @@ +2004-02-20 Not Zed <NotZed@Ximian.com> + + ** See bug #54338. + + * vfolder-rule.c: instead of overriding the filter-rule's 'source' + attribute for 'with sources', add a 'with' enum. + (xml_decode): handle loading old-format files, as well as new + ones, where the with is a prop on the sources xml. + (xml_encode): set 'with' on save. + (rule_copy): copy across with value. + (get_widget): just hook onto option menu changed, dont bother + setting up any per-item callbacks. + (select_source_with_changed): callback to monitor source 'with' + type. + 2004-02-17 Not Zed <NotZed@Ximian.com> * filter-int.c (int_clone): implement, since we dont store the diff --git a/filter/vfolder-editor.c b/filter/vfolder-editor.c index 3addc14bed..87776c010d 100644 --- a/filter/vfolder-editor.c +++ b/filter/vfolder-editor.c @@ -39,10 +39,8 @@ static void vfolder_editor_class_init (VfolderEditorClass *klass); static void vfolder_editor_init (VfolderEditor *ve); static void vfolder_editor_finalise (GObject *obj); - static RuleEditorClass *parent_class = NULL; - GtkType vfolder_editor_get_type (void) { diff --git a/filter/vfolder-rule.c b/filter/vfolder-rule.c index ae856f899e..b8acb3b94e 100644 --- a/filter/vfolder-rule.c +++ b/filter/vfolder-rule.c @@ -52,10 +52,16 @@ static void vfolder_rule_class_init (VfolderRuleClass *klass); static void vfolder_rule_init (VfolderRule *vr); static void vfolder_rule_finalise (GObject *obj); +/* DO NOT internationalise these strings */ +const char *with_names[] = { + "specific", + "local", + "remote_active", + "local_remote_active" +}; static FilterRuleClass *parent_class = NULL; - GType vfolder_rule_get_type (void) { @@ -103,7 +109,7 @@ vfolder_rule_class_init (VfolderRuleClass *klass) static void vfolder_rule_init (VfolderRule *vr) { - ; + vr->with = VFOLDER_RULE_WITH_SPECIFIC; } static void @@ -216,7 +222,7 @@ validate (FilterRule *fr) /* We have to have at least one source set in the "specific" case. Do not translate this string! */ - if (fr->source && !strcmp (fr->source, "specific") && VFOLDER_RULE (fr)->sources == NULL) { + if (((VfolderRule *)fr)->with == VFOLDER_RULE_WITH_SPECIFIC && ((VfolderRule *)fr)->sources == NULL) { /* FIXME: set a parent window? */ dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, @@ -263,8 +269,10 @@ xml_encode (FilterRule *fr) node = FILTER_RULE_CLASS (parent_class)->xml_encode (fr); g_assert(node != NULL); + g_assert(vr->with >= 0 && vr->with < sizeof(with_names)/sizeof(with_names[0])); set = xmlNewNode (NULL, "sources"); xmlAddChild (node, set); + xmlSetProp(set, "with", with_names[vr->with]); l = vr->sources; while (l) { work = xmlNewNode (NULL, "folder"); @@ -276,28 +284,55 @@ xml_encode (FilterRule *fr) return node; } +static void +set_with(VfolderRule *vr, const char *name) +{ + int i; + + for (i=0;i<sizeof(with_names)/sizeof(with_names[0]);i++) { + if (!strcmp(name, with_names[i])) { + vr->with = i; + return; + } + } + + vr->with = 0; +} + static int xml_decode (FilterRule *fr, xmlNodePtr node, struct _RuleContext *f) { xmlNodePtr set, work; int result; VfolderRule *vr = (VfolderRule *)fr; - char *uri; + char *tmp; result = FILTER_RULE_CLASS (parent_class)->xml_decode (fr, node, f); if (result != 0) return result; + /* handle old format file, vfolder source is in filterrule */ + if (strcmp(fr->source, "incoming") != 0) { + set_with(vr, fr->source); + g_free(fr->source); + fr->source = g_strdup("incoming"); + } + set = node->children; while (set) { - if (!strcmp (set->name, "sources")) { + if (!strcmp(set->name, "sources")) { + tmp = xmlGetProp(set, "with"); + if (tmp) { + set_with(vr, tmp); + xmlFree(tmp); + } work = set->children; while (work) { - if (!strcmp (work->name, "folder")) { - uri = xmlGetProp (work, "uri"); - if (uri) { - vr->sources = g_list_append (vr->sources, g_strdup (uri)); - xmlFree (uri); + if (!strcmp(work->name, "folder")) { + tmp = xmlGetProp(work, "uri"); + if (tmp) { + vr->sources = g_list_append(vr->sources, g_strdup(tmp)); + xmlFree(tmp); } } work = work->next; @@ -330,11 +365,12 @@ rule_copy (FilterRule *dest, FilterRule *src) vdest->sources = g_list_append (vdest->sources, g_strdup (uri)); node = node->next; } - + + vdest->with = vsrc->with; + FILTER_RULE_CLASS (parent_class)->copy (dest, src); } - enum { BUTTON_ADD, BUTTON_REMOVE, @@ -385,11 +421,14 @@ select_source (GtkWidget *list, struct _source_data *data) } static void -select_source_with (GtkWidget *widget, struct _source_data *data) +select_source_with_changed(GtkWidget *widget, struct _source_data *data) { - char *source = g_object_get_data ((GObject *) widget, "source"); - - filter_rule_set_source ((FilterRule *) data->vr, source); + vfolder_rule_with_t with; + + with = gtk_option_menu_get_history((GtkOptionMenu *)widget); + if (with < VFOLDER_RULE_WITH_SPECIFIC || with > VFOLDER_RULE_WITH_LOCAL_REMOTE_ACTIVE) + with = 0; + data->vr->with = with; } /* attempt to make a 'nice' folder name out of the raw uri */ @@ -560,15 +599,6 @@ vfolder_editor_sourcelist_new (char *widget_name, char *string1, char *string2, return scrolled; } - -/* DO NOT internationalise these strings */ -const char *source_names[] = { - "specific", - "local", - "remote_active", - "local_remote_active" -}; - static GtkWidget * get_widget (FilterRule *fr, RuleContext *rc) { @@ -579,8 +609,7 @@ get_widget (FilterRule *fr, RuleContext *rc) const char *source; GtkTreeIter iter; GladeXML *gui; - int i, row; - GList *l; + int i; widget = FILTER_RULE_CLASS (parent_class)->get_widget (fr, rc); @@ -614,31 +643,8 @@ get_widget (FilterRule *fr, RuleContext *rc) g_signal_connect (data->list, "cursor-changed", G_CALLBACK (select_source), data); omenu = (GtkOptionMenu *) glade_xml_get_widget (gui, "source_option"); - l = GTK_MENU_SHELL (omenu->menu)->children; - i = 0; - row = 0; - while (l) { - GtkWidget *item = GTK_WIDGET (l->data); - - /* make sure that the glade is in sync with the source list! */ - if (i < sizeof (source_names) / sizeof (source_names[0])) { - g_object_set_data ((GObject *) item, "source", (char *) source_names[i]); - if (fr->source && strcmp (source_names[i], fr->source) == 0) { - row = i; - } - } else { - g_warning ("Glade file " FILTER_GLADEDIR "/filter.glade out of sync with editor code"); - } - - g_signal_connect (item, "activate", G_CALLBACK (select_source_with), data); - - i++; - l = l->next; - } - - gtk_option_menu_set_history (omenu, row); - if (fr->source == NULL) - filter_rule_set_source (fr, (char *) source_names[row]); + gtk_option_menu_set_history(omenu, vr->with); + g_signal_connect(omenu, "changed", G_CALLBACK(select_source_with_changed), data); set_sensitive (data); diff --git a/filter/vfolder-rule.h b/filter/vfolder-rule.h index 165e547688..88604be5de 100644 --- a/filter/vfolder-rule.h +++ b/filter/vfolder-rule.h @@ -33,12 +33,23 @@ #define IS_VFOLDER_RULE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VFOLDER_TYPE_RULE)) #define VFOLDER_RULE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VFOLDER_TYPE_RULE, VfolderRuleClass)) +/* perhaps should be bits? */ +enum _vfolder_rule_with_t { + VFOLDER_RULE_WITH_SPECIFIC, + VFOLDER_RULE_WITH_LOCAL, + VFOLDER_RULE_WITH_REMOTE_ACTIVE, + VFOLDER_RULE_WITH_LOCAL_REMOTE_ACTIVE, +}; + typedef struct _VfolderRule VfolderRule; typedef struct _VfolderRuleClass VfolderRuleClass; +typedef enum _vfolder_rule_with_t vfolder_rule_with_t; + struct _VfolderRule { - FilterRule parent_object; + FilterRule rule; + vfolder_rule_with_t with; GList *sources; /* uri's of the source folders */ }; |