summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmail.h
authorharlekin <harlekin>2003-12-20 00:05:37 (UTC)
committer harlekin <harlekin>2003-12-20 00:05:37 (UTC)
commitdc088ad432189b4883f7654ef6b2c1e2f69112cc (patch) (unidiff)
tree090f6afd960e644d7da1fae3b8c8ffa97b669b59 /noncore/net/mail/viewmail.h
parent00a0c8cf03fe746c1e3ba608bf298c8e66d065f9 (diff)
downloadopie-dc088ad432189b4883f7654ef6b2c1e2f69112cc.zip
opie-dc088ad432189b4883f7654ef6b2c1e2f69112cc.tar.gz
opie-dc088ad432189b4883f7654ef6b2c1e2f69112cc.tar.bz2
- beginning of a settings dialog
- button for switching between html and plain text view of the mail - hide some unused icons - completed alwins idea about status icons ( alwin you missed the one that sets the read icon .-) ) - beginning of a status widget -
Diffstat (limited to 'noncore/net/mail/viewmail.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/net/mail/viewmail.h b/noncore/net/mail/viewmail.h
index dd7f854..bf7a4dd 100644
--- a/noncore/net/mail/viewmail.h
+++ b/noncore/net/mail/viewmail.h
@@ -39,20 +39,23 @@ protected:
39protected slots: 39protected slots:
40 void slotReply(); 40 void slotReply();
41 void slotForward(); 41 void slotForward();
42 void setText(); 42 void setText();
43 void slotItemClicked( QListViewItem * item , const QPoint & point, int c ); 43 void slotItemClicked( QListViewItem * item , const QPoint & point, int c );
44 void slotDeleteMail( ); 44 void slotDeleteMail( );
45 45 void slotShowHtml( bool );
46 46
47private: 47private:
48 void readConfig();
49
48 bool _inLoop; 50 bool _inLoop;
49 QString m_mailHtml; 51 QString m_mailHtml;
50 bool m_gotBody; 52 bool m_gotBody;
51 RecBody m_body; 53 RecBody m_body;
52 RecMail m_recMail; 54 RecMail m_recMail;
55 bool m_showHtml;
53 56
54 // 0 from 1 subject 2 bodytext 3 date 57 // 0 from 1 subject 2 bodytext 3 date
55 QMap <int,QString> m_mail; 58 QMap <int,QString> m_mail;
56 // 0 to 1 cc 2 bcc 59 // 0 to 1 cc 2 bcc
57 QMap <int,QStringList> m_mail2; 60 QMap <int,QStringList> m_mail2;
58 61