summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/composerbase.h
Unidiff
Diffstat (limited to 'noncore/unsupported/mail2/composerbase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/composerbase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/unsupported/mail2/composerbase.h b/noncore/unsupported/mail2/composerbase.h
index 9d3e4fc..d832623 100644
--- a/noncore/unsupported/mail2/composerbase.h
+++ b/noncore/unsupported/mail2/composerbase.h
@@ -1,21 +1,23 @@
1#ifndef COMPOSERBASE_H 1#ifndef COMPOSERBASE_H
2#define COMPOSERBASE_H 2#define COMPOSERBASE_H
3 3
4#include <qmainwindow.h> 4#include <qmainwindow.h>
5 5
6class QMultiLineEdit; 6class QMultiLineEdit;
7class ListViewPlus; 7class ListViewPlus;
8class QPopupMenu; 8class QPopupMenu;
9class QPEToolBar; 9class QPEToolBar;
10class QPEMenuBar;
11class QPopupMenu;
10class QComboBox; 12class QComboBox;
11class QLineEdit; 13class QLineEdit;
12class QAction; 14class QAction;
13class QLabel; 15class QLabel;
14 16
15class ComposerBase : public QMainWindow 17class ComposerBase : public QMainWindow
16{ 18{
17 Q_OBJECT 19 Q_OBJECT
18 20
19public: 21public:
20 ComposerBase(QWidget *parent = 0, const char *name = 0, WFlags fl = 0); 22 ComposerBase(QWidget *parent = 0, const char *name = 0, WFlags fl = 0);
21 23
@@ -30,24 +32,26 @@ protected:
30 static const int POPUP_PRIO_LOW = 0; 32 static const int POPUP_PRIO_LOW = 0;
31 static const int POPUP_PRIO_NORMAL = 1; 33 static const int POPUP_PRIO_NORMAL = 1;
32 static const int POPUP_PRIO_HIGH = 2; 34 static const int POPUP_PRIO_HIGH = 2;
33 static const int POPUP_ATTACH_RENAME = 0; 35 static const int POPUP_ATTACH_RENAME = 0;
34 static const int POPUP_ATTACH_DESC = 1; 36 static const int POPUP_ATTACH_DESC = 1;
35 static const int POPUP_ATTACH_REMOVE = 2; 37 static const int POPUP_ATTACH_REMOVE = 2;
36 38
37 QMultiLineEdit *message; 39 QMultiLineEdit *message;
38 ListViewPlus *attachView; 40 ListViewPlus *attachView;
39 QMainWindow *attachWindow; 41 QMainWindow *attachWindow;
40 QPopupMenu *attachPopup; 42 QPopupMenu *attachPopup;
41 QPEToolBar *toolbar, *attachToolbar; 43 QPEToolBar *toolbar, *attachToolbar;
44 QPEMenuBar *menubar;
45 QPopupMenu *mailmenu;
42 QComboBox *fromBox, *from, *receiversBox, *subjectBox, *priority; 46 QComboBox *fromBox, *from, *receiversBox, *subjectBox, *priority;
43 QLineEdit *replyto, *to, *cc, *bcc, *subject; 47 QLineEdit *replyto, *to, *cc, *bcc, *subject;
44 QAction *sendmail, *queuemail, *attachfile, *addressbook, *abort, *addattach, *delattach; 48 QAction *sendmail, *queuemail, *attachfile, *addressbook, *abort, *addattach, *delattach;
45 QLabel *fromLabel, *status; 49 QLabel *fromLabel, *status;
46 50
47protected slots: 51protected slots:
48 void slotAttachfileChanged(bool toggled); 52 void slotAttachfileChanged(bool toggled);
49 void slotFromMenuChanged(int id); 53 void slotFromMenuChanged(int id);
50 void slotReceiverMenuChanged(int id); 54 void slotReceiverMenuChanged(int id);
51 void slotSubjectMenuChanged(int id); 55 void slotSubjectMenuChanged(int id);
52 56
53}; 57};