summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/viewmail.h
Unidiff
Diffstat (limited to 'noncore/unsupported/mail2/viewmail.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/viewmail.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/unsupported/mail2/viewmail.h b/noncore/unsupported/mail2/viewmail.h
index a013e43..efc2300 100644
--- a/noncore/unsupported/mail2/viewmail.h
+++ b/noncore/unsupported/mail2/viewmail.h
@@ -40,24 +40,29 @@ private:
40class ViewMail : public ViewMailBase 40class ViewMail : public ViewMailBase
41{ 41{
42 Q_OBJECT 42 Q_OBJECT
43 43
44public: 44public:
45 ViewMail(IMAPResponseFETCH &mail, IMAPHandler *handler, QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal); 45 ViewMail(IMAPResponseFETCH &mail, IMAPHandler *handler, QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal);
46 ~ViewMail();
47
48 void hide();
49 void exec();
46 50
47protected: 51protected:
48 //void fillList(IMAPResponseBODYSTRUCTURE &structure); 52 //void fillList(IMAPResponseBODYSTRUCTURE &structure);
49 QString deHtml(const QString &string); 53 QString deHtml(const QString &string);
50 54
51protected slots: 55protected slots:
52 void slotReply(); 56 void slotReply();
53 void slotForward(); 57 void slotForward();
54 58
55 void slotIMAPUid(IMAPResponse &response); 59 void slotIMAPUid(IMAPResponse &response);
56 60
57private: 61private:
62 bool _inLoop;
58 IMAPResponseFETCH _mail; 63 IMAPResponseFETCH _mail;
59 IMAPHandler *_handler; 64 IMAPHandler *_handler;
60 QString _mailHtml; 65 QString _mailHtml;
61 bool _gotBody; 66 bool _gotBody;
62 67
63}; 68};