summaryrefslogtreecommitdiff
path: root/noncore/net/mail/mailtypes.h
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/mailtypes.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/mailtypes.h192
1 files changed, 0 insertions, 192 deletions
diff --git a/noncore/net/mail/mailtypes.h b/noncore/net/mail/mailtypes.h
deleted file mode 100644
index 05c4816..0000000
--- a/noncore/net/mail/mailtypes.h
+++ b/dev/null
@@ -1,192 +0,0 @@
-#ifndef __MAIL_TYPES_H
-#define __MAIL_TYPES_H
-
-#define FLAG_ANSWERED 0
-#define FLAG_FLAGGED 1
-#define FLAG_DELETED 2
-#define FLAG_SEEN 3
-#define FLAG_DRAFT 4
-#define FLAG_RECENT 5
-
-#include <qlist.h>
-#include <qbitarray.h>
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qmap.h>
-#include <qvaluelist.h>
-
-class AbstractMail;
-/* a class to describe mails in a mailbox */
-/* Attention!
- From programmers point of view it would make sense to
- store the mail body into this class, too.
- But: not from the point of view of the device.
- Mailbodies can be real large. So we request them when
- needed from the mail-wrapper class direct from the server itself
- (imap) or from a file-based cache (pop3?)
- So there is no interface "const QString&body()" but you should
- make a request to the mailwrapper with this class as parameter to
- get the body. Same words for the attachments.
-*/
-class RecMail
-{
-public:
- RecMail();
- RecMail(const RecMail&old);
- virtual ~RecMail();
-
- const int getNumber()const{return msg_number;}
- void setNumber(int number){msg_number=number;}
- const QString&getDate()const{ return date; }
- void setDate( const QString&a ) { date = a; }
- const QString&getFrom()const{ return from; }
- void setFrom( const QString&a ) { from = a; }
- const QString&getSubject()const { return subject; }
- void setSubject( const QString&s ) { subject = s; }
- const QString&getMbox()const{return mbox;}
- void setMbox(const QString&box){mbox = box;}
- void setMsgid(const QString&id){msg_id=id;}
- const QString&Msgid()const{return msg_id;}
- void setReplyto(const QString&reply){replyto=reply;}
- const QString&Replyto()const{return replyto;}
- void setMsgsize(int size){msg_size = size;}
- const int Msgsize()const{return msg_size;}
-
-
- void setTo(const QStringList&list);
- const QStringList&To()const;
- void setCC(const QStringList&list);
- const QStringList&CC()const;
- void setBcc(const QStringList&list);
- const QStringList&Bcc()const;
- const QBitArray&getFlags()const{return msg_flags;}
- void setFlags(const QBitArray&flags){msg_flags = flags;}
-
- void setWrapper(AbstractMail*wrapper);
- AbstractMail* Wrapper();
-
-protected:
- QString subject,date,from,mbox,msg_id,replyto;
- int msg_number,msg_size;
- QBitArray msg_flags;
- QStringList to,cc,bcc;
- AbstractMail*wrapper;
- void init();
- void copy_old(const RecMail&old);
-};
-
-typedef QMap<QString,QString> part_plist_t;
-
-class RecPart
-{
-protected:
- QString m_type,m_subtype,m_identifier,m_encoding,m_description;
- unsigned int m_lines,m_size;
- part_plist_t m_Parameters;
- /* describes the position in the mail */
- QValueList<int> m_poslist;
-
-public:
- RecPart();
- virtual ~RecPart();
-
- const QString&Type()const;
- void setType(const QString&type);
- const QString&Subtype()const;
- void setSubtype(const QString&subtype);
- const QString&Identifier()const;
- void setIdentifier(const QString&identifier);
- const QString&Encoding()const;
- void setEncoding(const QString&encoding);
- const QString&Description()const;
- void setDescription(const QString&desc);
- void setLines(unsigned int lines);
- const unsigned int Lines()const;
- void setSize(unsigned int size);
- const unsigned int Size()const;
-
-
- void setParameters(const part_plist_t&list);
- const part_plist_t&Parameters()const;
- void addParameter(const QString&key,const QString&value);
- const QString searchParamter(const QString&key)const;
- void setPositionlist(const QValueList<int>&poslist);
- const QValueList<int>& Positionlist()const;
-};
-
-class RecBody
-{
-protected:
- QString m_BodyText;
- QValueList<RecPart> m_PartsList;
- RecPart m_description;
-
-public:
- RecBody();
- virtual ~RecBody();
- void setBodytext(const QString&);
- const QString& Bodytext()const;
-
- void setDescription(const RecPart&des);
- const RecPart& Description()const;
-
- void setParts(const QValueList<RecPart>&parts);
- const QValueList<RecPart>& Parts()const;
- void addPart(const RecPart&part);
-};
-
-class encodedString
-{
-public:
- encodedString();
- /*
- creates an new content string.
- it makes a deep copy of it!
- */
- encodedString(const char*nContent,unsigned int length);
- /*
- Take over the nContent. Means: it will just copy the pointer, not the content.
- so make sure: No one else frees the string, the string has allocated with
- malloc for compatibility with c-based libs
- */
- encodedString(char*nContent,unsigned int nSize);
- /* copy construkor - makes ALWAYS a deep copy!!!! */
- encodedString(const encodedString&old);
- /* assign operator - makes ALWAYS a deep copy!!!! */
- encodedString& operator=(const encodedString&old);
- /* destructor - cleans the content */
- virtual ~encodedString();
-
- /* returns a pointer to the content - do not delete yoursel! */
- const char*Content()const;
- /* returns the lengths of the content 'cause it must not be a null-terminated string! */
- const int Length()const;
-
- /*
- makes a deep copy of nContent!
- */
- void setContent(const char*nContent,int nSize);
- /*
- Take over the nContent. Means: it will just copy the pointer, not the content.
- so make sure: No one else frees the string, the string has allocated with
- malloc for compatibility with c-based libs
- */
- void setContent(char*nContent,int nSize);
-
-protected:
- char * content;
- unsigned int size;
-
- void init();
- void copy_old(const encodedString&old);
- void clean();
-};
-
-struct folderStat
-{
- unsigned int message_count;
- unsigned int message_unseen;
- unsigned int message_recent;
-};
-
-#endif