aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-message.h
diff options
context:
space:
mode:
authorBertrand Guiheneuf <bertrand@src.gnome.org>1999-05-14 01:04:54 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-05-14 01:04:54 +0800
commit483804aac86969591d7aefa186f52ca167da0381 (patch)
tree8f2a55cb94d1537138aec417042e49e686c8fe0d /camel/camel-mime-message.h
parent48217413c6a16232364fcfd4ba8276f51bbb7b79 (diff)
downloadgsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar.gz
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar.bz2
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar.lz
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar.xz
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.tar.zst
gsoc2013-evolution-483804aac86969591d7aefa186f52ca167da0381.zip
a bunch of get/set header field method done. Does nothing yet though.
* camel/camel-mime-message.h: a bunch of get/set header field method done. Does nothing yet though. * camel/camel-mime-message.[ch] : new file. svn path=/trunk/; revision=923
Diffstat (limited to 'camel/camel-mime-message.h')
-rw-r--r--camel/camel-mime-message.h34
1 files changed, 33 insertions, 1 deletions
diff --git a/camel/camel-mime-message.h b/camel/camel-mime-message.h
index 4773e04ed0..cee58e28b1 100644
--- a/camel/camel-mime-message.h
+++ b/camel/camel-mime-message.h
@@ -12,7 +12,7 @@
*
* 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 MESSAGEICULAR PURPOSE. See the
+ * 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
@@ -33,6 +33,8 @@ extern "C" {
#include <gtk/gtk.h>
#include "camel-mime-part.h"
+#include "camel-folder.h"
+#include "camel-session.h"
@@ -45,7 +47,27 @@ extern "C" {
typedef struct
{
+ CamelMimePart *parent_class;
+ /* header fields */
+ GString *received_date;
+ GString *sent_date;
+
+ GString *subject;
+ GString *reply_to;
+
+ GString *from;
+ GHashTable *recipients;
+ /* -> each value is a GList of address strings */
+ /* each key is a recipient type string in lower-case */
+
+ /* other fields */
+ GHashTable *flags; /* boolean values */
+ gboolean expunged;
+ guint message_number; /* set by folder object when retrieving message */
+ CamelFolder *folder;
+ CamelSession *session;
+
} CamelMimeMessage;
@@ -54,6 +76,16 @@ typedef struct {
CamelDataWrapperClass parent_class;
/* Virtual methods */
+ void (*set_received_date) (CamelMimeMessage *mime_message, GString *received_date);
+ GString * (*get_received_date) (CamelMimeMessage *mime_message);
+ GString * (*get_sent_date) (CamelMimeMessage *mime_message);
+ void (*set_reply_to) (CamelMimeMessage *mime_message, GString *reply_to);
+ GString * (*get_reply_to) (CamelMimeMessage *mime_message);
+ void (*set_subject) (CamelMimeMessage *mime_message, GString *subject);
+ GString * (*get_subject) (CamelMimeMessage *mime_message);
+ void (*set_from) (CamelMimeMessage *mime_message, GString *from);
+ GString * (*get_from) (CamelMimeMessage *mime_message);
+
} CamelMimeMessageClass;