author | tille <tille> | 2002-06-20 10:36:00 (UTC) |
---|---|---|
committer | tille <tille> | 2002-06-20 10:36:00 (UTC) |
commit | 5a5356882fe8dc4b1c1f9986b425d673ac8875ad (patch) (unidiff) | |
tree | 5f107cefd0bb0921bd3cf0fbebcb71c1c5bca756 | |
parent | 1f42421510fcda84fa9968b78ee0f547d09f322d (diff) | |
download | opie-5a5356882fe8dc4b1c1f9986b425d673ac8875ad.zip opie-5a5356882fe8dc4b1c1f9986b425d673ac8875ad.tar.gz opie-5a5356882fe8dc4b1c1f9986b425d673ac8875ad.tar.bz2 |
menu
-rw-r--r-- | noncore/unsupported/mail2/viewmailbase.cpp | 18 | ||||
-rw-r--r-- | noncore/unsupported/mail2/viewmailbase.h | 4 |
2 files changed, 18 insertions, 4 deletions
diff --git a/noncore/unsupported/mail2/viewmailbase.cpp b/noncore/unsupported/mail2/viewmailbase.cpp index b650c88..a02f73a 100644 --- a/noncore/unsupported/mail2/viewmailbase.cpp +++ b/noncore/unsupported/mail2/viewmailbase.cpp | |||
@@ -1,65 +1,75 @@ | |||
1 | #include <qtextbrowser.h> | 1 | #include <qtextbrowser.h> |
2 | #include <qlistview.h> | 2 | #include <qlistview.h> |
3 | #include <qaction.h> | 3 | #include <qaction.h> |
4 | #include <qlabel.h> | 4 | #include <qlabel.h> |
5 | #include <qvbox.h> | 5 | #include <qvbox.h> |
6 | #include <qpopupmenu.h> | ||
6 | 7 | ||
7 | #include <qpe/qpetoolbar.h> | 8 | #include <qpe/qpetoolbar.h> |
9 | #include <qpe/qpemenubar.h> | ||
8 | #include <qpe/resource.h> | 10 | #include <qpe/resource.h> |
9 | 11 | ||
10 | #include "viewmailbase.h" | 12 | #include "viewmailbase.h" |
11 | #include "opendiag.h" | 13 | #include "opendiag.h" |
12 | 14 | ||
13 | ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl) | 15 | ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl) |
14 | : QMainWindow(parent, name, fl) | 16 | : QMainWindow(parent, name, fl) |
15 | { | 17 | { |
16 | setCaption(tr("E-Mail by %1")); | 18 | setCaption(tr("E-Mail by %1")); |
17 | setToolBarsMovable(false); | 19 | setToolBarsMovable(false); |
18 | 20 | ||
19 | toolbar = new QPEToolBar(this); | 21 | toolbar = new QPEToolBar(this); |
22 | menubar = new QPEMenuBar( toolbar ); | ||
23 | mailmenu = new QPopupMenu( menubar ); | ||
24 | menubar->insertItem( tr( "Mail" ), mailmenu ); | ||
25 | |||
20 | toolbar->setHorizontalStretchable(true); | 26 | toolbar->setHorizontalStretchable(true); |
21 | addToolBar(toolbar); | 27 | addToolBar(toolbar); |
22 | 28 | ||
29 | QLabel *spacer = new QLabel(toolbar); | ||
30 | spacer->setBackgroundMode(QWidget::PaletteButton); | ||
31 | toolbar->setStretchableWidget(spacer); | ||
32 | |||
23 | reply = new QAction(tr("Reply"), QIconSet(Resource::loadPixmap("mail/reply")), 0, 0, this); | 33 | reply = new QAction(tr("Reply"), QIconSet(Resource::loadPixmap("mail/reply")), 0, 0, this); |
24 | reply->addTo(toolbar); | 34 | reply->addTo(toolbar); |
35 | reply->addTo(mailmenu); | ||
25 | 36 | ||
26 | forward = new QAction(tr("Forward"), QIconSet(Resource::loadPixmap("mail/forward")), 0, 0, this); | 37 | forward = new QAction(tr("Forward"), QIconSet(Resource::loadPixmap("mail/forward")), 0, 0, this); |
27 | forward->addTo(toolbar); | 38 | forward->addTo(toolbar); |
39 | forward->addTo(mailmenu); | ||
28 | 40 | ||
29 | attachbutton = new QAction(tr("Attachments"), QIconSet(Resource::loadPixmap("mail/attach")), 0, 0, this, 0, true); | 41 | attachbutton = new QAction(tr("Attachments"), QIconSet(Resource::loadPixmap("mail/attach")), 0, 0, this, 0, true); |
30 | attachbutton->addTo(toolbar); | 42 | attachbutton->addTo(toolbar); |
43 | attachbutton->addTo(mailmenu); | ||
31 | connect(attachbutton, SIGNAL(toggled(bool)), SLOT(slotChangeAttachview(bool))); | 44 | connect(attachbutton, SIGNAL(toggled(bool)), SLOT(slotChangeAttachview(bool))); |
32 | 45 | ||
33 | deleteMail = new QAction(tr("Delete Mail"), QIconSet(Resource::loadPixmap("mail/delete")), 0, 0, this); | 46 | deleteMail = new QAction(tr("Delete Mail"), QIconSet(Resource::loadPixmap("mail/delete")), 0, 0, this); |
34 | deleteMail->addTo(toolbar); | 47 | deleteMail->addTo(toolbar); |
35 | 48 | deleteMail->addTo(mailmenu); | |
36 | QLabel *spacer = new QLabel(toolbar); | ||
37 | spacer->setBackgroundMode(QWidget::PaletteButton); | ||
38 | toolbar->setStretchableWidget(spacer); | ||
39 | 49 | ||
40 | QVBox *view = new QVBox(this); | 50 | QVBox *view = new QVBox(this); |
41 | setCentralWidget(view); | 51 | setCentralWidget(view); |
42 | 52 | ||
43 | attachments = new QListView(view); | 53 | attachments = new QListView(view); |
44 | attachments->setMinimumHeight(90); | 54 | attachments->setMinimumHeight(90); |
45 | attachments->setMaximumHeight(90); | 55 | attachments->setMaximumHeight(90); |
46 | attachments->setAllColumnsShowFocus(true); | 56 | attachments->setAllColumnsShowFocus(true); |
47 | attachments->addColumn("Mime Type", 100); | 57 | attachments->addColumn("Mime Type", 100); |
48 | attachments->addColumn("Filename", 100); | 58 | attachments->addColumn("Filename", 100); |
49 | attachments->addColumn("Description", 100); | 59 | attachments->addColumn("Description", 100); |
50 | attachments->hide(); | 60 | attachments->hide(); |
51 | 61 | ||
52 | browser = new QTextBrowser(view); | 62 | browser = new QTextBrowser(view); |
53 | 63 | ||
54 | openDiag = new OpenDiag(view); | 64 | openDiag = new OpenDiag(view); |
55 | openDiag->hide(); | 65 | openDiag->hide(); |
56 | 66 | ||
57 | } | 67 | } |
58 | 68 | ||
59 | void ViewMailBase::slotChangeAttachview(bool state) | 69 | void ViewMailBase::slotChangeAttachview(bool state) |
60 | { | 70 | { |
61 | if (state) attachments->show(); | 71 | if (state) attachments->show(); |
62 | else attachments->hide(); | 72 | else attachments->hide(); |
63 | } | 73 | } |
64 | 74 | ||
65 | 75 | ||
diff --git a/noncore/unsupported/mail2/viewmailbase.h b/noncore/unsupported/mail2/viewmailbase.h index 9ddf2aa..ba82017 100644 --- a/noncore/unsupported/mail2/viewmailbase.h +++ b/noncore/unsupported/mail2/viewmailbase.h | |||
@@ -1,32 +1,36 @@ | |||
1 | #ifndef VIEWMAILBASE_H | 1 | #ifndef VIEWMAILBASE_H |
2 | #define VIEWMAILBASE_H | 2 | #define VIEWMAILBASE_H |
3 | 3 | ||
4 | #include <qmainwindow.h> | 4 | #include <qmainwindow.h> |
5 | 5 | ||
6 | class QAction; | 6 | class QAction; |
7 | class OpenDiag; | 7 | class OpenDiag; |
8 | class QListView; | 8 | class QListView; |
9 | class QPEToolBar; | 9 | class QPEToolBar; |
10 | class QTextBrowser; | 10 | class QTextBrowser; |
11 | class QPEMenuBar; | ||
12 | class QPopupMenu; | ||
11 | 13 | ||
12 | class ViewMailBase : public QMainWindow | 14 | class ViewMailBase : public QMainWindow |
13 | { | 15 | { |
14 | Q_OBJECT | 16 | Q_OBJECT |
15 | 17 | ||
16 | public: | 18 | public: |
17 | ViewMailBase(QWidget *parent = 0, const char *name = 0, WFlags fl = 0); | 19 | ViewMailBase(QWidget *parent = 0, const char *name = 0, WFlags fl = 0); |
18 | 20 | ||
19 | protected: | 21 | protected: |
20 | QAction *reply, *forward, *attachbutton, *deleteMail; | 22 | QAction *reply, *forward, *attachbutton, *deleteMail; |
21 | QListView *attachments; | 23 | QListView *attachments; |
22 | QPEToolBar *toolbar; | 24 | QPEToolBar *toolbar; |
23 | QTextBrowser *browser; | 25 | QTextBrowser *browser; |
24 | OpenDiag *openDiag; | 26 | OpenDiag *openDiag; |
27 | QPEMenuBar *menubar; | ||
28 | QPopupMenu *mailmenu; | ||
25 | 29 | ||
26 | protected slots: | 30 | protected slots: |
27 | void slotChangeAttachview(bool state); | 31 | void slotChangeAttachview(bool state); |
28 | 32 | ||
29 | }; | 33 | }; |
30 | 34 | ||
31 | #endif | 35 | #endif |
32 | 36 | ||