author | zautrix <zautrix> | 2005-01-24 18:27:06 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-24 18:27:06 (UTC) |
commit | bb33b559609356149ae51cb50c081b3e82aecafb (patch) (unidiff) | |
tree | 4878aa5887bf1c539845ce9c4e5470eea94d41cc /kmicromail/viewmail.h | |
parent | 77f93c632b66b5c8d92e4c63330362272ca1fc40 (diff) | |
download | kdepimpi-bb33b559609356149ae51cb50c081b3e82aecafb.zip kdepimpi-bb33b559609356149ae51cb50c081b3e82aecafb.tar.gz kdepimpi-bb33b559609356149ae51cb50c081b3e82aecafb.tar.bz2 |
pixmap update fix
-rw-r--r-- | kmicromail/viewmail.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kmicromail/viewmail.h b/kmicromail/viewmail.h index 561989e..fc5edcf 100644 --- a/kmicromail/viewmail.h +++ b/kmicromail/viewmail.h | |||
@@ -1,18 +1,20 @@ | |||
1 | #ifndef VIEWMAIL_H | 1 | #ifndef VIEWMAIL_H |
2 | #define VIEWMAIL_H | 2 | #define VIEWMAIL_H |
3 | 3 | ||
4 | #include "viewmailbase.h" | 4 | #include "viewmailbase.h" |
5 | #include <libmailwrapper/mailtypes.h> | 5 | #include <libmailwrapper/mailtypes.h> |
6 | 6 | ||
7 | #include <qdialog.h> | 7 | #include <qdialog.h> |
8 | #include <qapplication.h> | ||
8 | 9 | ||
9 | #include <qlistview.h> | 10 | #include <qlistview.h> |
10 | #include <qmap.h> | 11 | #include <qmap.h> |
12 | #include <klocale.h> | ||
11 | #include <qstringlist.h> | 13 | #include <qstringlist.h> |
12 | #include <qvaluelist.h> | 14 | #include <qvaluelist.h> |
13 | 15 | ||
14 | //namespace Opie { namespace MM { class OImageScrollView; } } | 16 | //namespace Opie { namespace MM { class OImageScrollView; } } |
15 | 17 | ||
16 | class AttachItem : public QListViewItem | 18 | class AttachItem : public QListViewItem |
17 | { | 19 | { |
18 | public: | 20 | public: |
@@ -47,17 +49,17 @@ public: | |||
47 | void deleteAndDisplayNextMail(ViewMail *); | 49 | void deleteAndDisplayNextMail(ViewMail *); |
48 | void signalDownloadMail(); | 50 | void signalDownloadMail(); |
49 | protected: | 51 | protected: |
50 | QString deHtml(const QString &string); | 52 | QString deHtml(const QString &string); |
51 | AttachItem* searchParent(const QValueList<int>&path); | 53 | AttachItem* searchParent(const QValueList<int>&path); |
52 | AttachItem* lastChild(AttachItem*parent); | 54 | AttachItem* lastChild(AttachItem*parent); |
53 | 55 | ||
54 | protected slots: | 56 | protected slots: |
55 | void slotNextMail() { emit showNextMail(this); }; | 57 | void slotNextMail() { setCaption(i18n("Displaying next mail...please wait!")); qApp->processEvents();emit showNextMail(this); }; |
56 | void slotReply(); | 58 | void slotReply(); |
57 | void slotForward(); | 59 | void slotForward(); |
58 | void setText(); | 60 | void setText(); |
59 | void slotItemClicked( QListViewItem * item , const QPoint & point, int c ); | 61 | void slotItemClicked( QListViewItem * item , const QPoint & point, int c ); |
60 | void slotDeleteMail( ); | 62 | void slotDeleteMail( ); |
61 | void slotShowHtml( bool ); | 63 | void slotShowHtml( bool ); |
62 | void slotViewSource(); | 64 | void slotViewSource(); |
63 | 65 | ||