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 | |||
@@ -3,8 +3,10 @@ | |||
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" |
@@ -17,25 +19,33 @@ ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl) | |||
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); |
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 | |||
@@ -8,6 +8,8 @@ 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 | { |
@@ -22,6 +24,8 @@ protected: | |||
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); |