aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-editor.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-08-03 06:36:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-08-03 06:36:11 +0800
commit405ef3bcf3cf661a017fd133a0771c3cb1b78b3a (patch)
tree95d06ff9cf7ec13c2cffd25f5164408e295b1c3c /mail/message-tag-editor.h
parent784fe19dd5554f138a4f24695060ada980665136 (diff)
downloadgsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar.gz
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar.bz2
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar.lz
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar.xz
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.tar.zst
gsoc2013-evolution-405ef3bcf3cf661a017fd133a0771c3cb1b78b3a.zip
Updated to use the new Follow-Up tags. Instead of storing a string
2002-08-02 Jeffrey Stedfast <fejj@ximian.com> * mail-display.c (mail_display_render): Updated to use the new Follow-Up tags. Instead of storing a string containing the follow-up tag value, we now have to store the CamelMessageInfo. (mail_display_destroy): Unref the folder and the message-info. * folder-browser.c (followup_tag_complete): No longer needed. (on_right_clicked): Use the individual follow-up tags to decide whether or not to enable something. * message-list.c (ml_tree_value_at): Update to use the new Follow-Up tags. * mail-callbacks.c (flag_for_followup): Update to use the new MessageTagEditor API. (tag_editor_ok): Update this too. (flag_followup_completed): Updated this too. (flag_followup_clear): Set all the follow-up tag values to "". svn path=/trunk/; revision=17691
Diffstat (limited to 'mail/message-tag-editor.h')
-rw-r--r--mail/message-tag-editor.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/mail/message-tag-editor.h b/mail/message-tag-editor.h
index 0dd20aa07e..5602489656 100644
--- a/mail/message-tag-editor.h
+++ b/mail/message-tag-editor.h
@@ -51,10 +51,8 @@ struct _MessageTagEditorClass {
GnomeDialogClass parent_class;
/* virtual methods */
- const char * (*get_name) (MessageTagEditor *editor);
-
- const char * (*get_value) (MessageTagEditor *editor);
- void (*set_value) (MessageTagEditor *editor, const char *value);
+ CamelTag * (*get_tag_list) (MessageTagEditor *editor);
+ void (*set_tag_list) (MessageTagEditor *editor, CamelTag *tags);
/* signals */
};
@@ -63,9 +61,8 @@ struct _MessageTagEditorClass {
GtkType message_tag_editor_get_type (void);
/* methods */
-const char *message_tag_editor_get_name (MessageTagEditor *editor);
-const char *message_tag_editor_get_value (MessageTagEditor *editor);
-void message_tag_editor_set_value (MessageTagEditor *editor, const char *value);
+CamelTag *message_tag_editor_get_tag_list (MessageTagEditor *editor);
+void message_tag_editor_set_tag_list (MessageTagEditor *editor, CamelTag *tags);
#ifdef __cplusplus
}