summaryrefslogtreecommitdiffabout
path: root/kmicromail/viewmail.h
authorzautrix <zautrix>2004-07-03 16:33:12 (UTC)
committer zautrix <zautrix>2004-07-03 16:33:12 (UTC)
commite3b89230f065c48c84b48c88edb6eb088374c487 (patch) (side-by-side diff)
tree162ea2ef909a6f82ccfcedf45d80d6c821174912 /kmicromail/viewmail.h
parent2dd6ac0b2d24c91d35ce674a6c26351352df2b15 (diff)
downloadkdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.zip
kdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.tar.gz
kdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.tar.bz2
Initial revision
Diffstat (limited to 'kmicromail/viewmail.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/viewmail.h86
1 files changed, 86 insertions, 0 deletions
diff --git a/kmicromail/viewmail.h b/kmicromail/viewmail.h
new file mode 100644
index 0000000..c42577e
--- a/dev/null
+++ b/kmicromail/viewmail.h
@@ -0,0 +1,86 @@
+#ifndef VIEWMAIL_H
+#define VIEWMAIL_H
+
+#include "viewmailbase.h"
+#include <libmailwrapper/mailtypes.h>
+
+#include <kdialog.h>
+
+#include <qlistview.h>
+#include <qmap.h>
+#include <qstringlist.h>
+#include <qvaluelist.h>
+
+//namespace Opie { namespace MM { class OImageScrollView; } }
+
+class AttachItem : public QListViewItem
+{
+public:
+ AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
+ const QString&fsize,int num,const QValueList<int>&path);
+ AttachItem(QListViewItem * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
+ const QString&fsize,int num,const QValueList<int>&path);
+ int Partnumber() { return _partNum; }
+ bool isParentof(const QValueList<int>&path);
+
+private:
+ int _partNum;
+ /* needed for a better display of attachments */
+ QValueList<int> _path;
+};
+
+class ViewMail : public ViewMailBase
+{
+ Q_OBJECT
+
+public:
+ ViewMail( QWidget *parent = 0, const char *name = 0, WFlags fl = 0);
+ ~ViewMail();
+
+ void hide();
+ void exec();
+ void setMail(const RecMailP&mail );
+ void setBody(const RecBodyP&body);
+ bool deleted;
+
+protected:
+ QString deHtml(const QString &string);
+ AttachItem* searchParent(const QValueList<int>&path);
+ AttachItem* lastChild(AttachItem*parent);
+
+protected slots:
+ void slotReply();
+ void slotForward();
+ void setText();
+ void slotItemClicked( QListViewItem * item , const QPoint & point, int c );
+ void slotDeleteMail( );
+ void slotShowHtml( bool );
+
+private:
+ void readConfig();
+
+ bool _inLoop;
+ QString m_mailHtml;
+ bool m_gotBody;
+ RecBodyP m_body;
+ RecMailP m_recMail;
+ bool m_showHtml;
+
+ // 0 from 1 subject 2 bodytext 3 date
+ QMap <int,QString> m_mail;
+ // 0 to 1 cc 2 bcc
+ QMap <int,QStringList> m_mail2;
+};
+
+class MailImageDlg:public KDialog
+{
+ Q_OBJECT
+public:
+ MailImageDlg(const QString&,QWidget *parent = 0, const char *name = 0, bool modal = true, WFlags f = 0);
+ ~MailImageDlg();
+ void setName(const QString&);
+protected:
+ //Opie::MM::OImageScrollView*m_imageview;
+};
+
+#endif