summaryrefslogtreecommitdiffabout
path: root/kmicromail/viewmailbase.cpp
Unidiff
Diffstat (limited to 'kmicromail/viewmailbase.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/viewmailbase.cpp90
1 files changed, 90 insertions, 0 deletions
diff --git a/kmicromail/viewmailbase.cpp b/kmicromail/viewmailbase.cpp
new file mode 100644
index 0000000..c761815
--- a/dev/null
+++ b/kmicromail/viewmailbase.cpp
@@ -0,0 +1,90 @@
1#include <qtextbrowser.h>
2#include <qlistview.h>
3#include <qaction.h>
4#include <qlabel.h>
5#include <qvbox.h>
6
7#include <qtoolbar.h>
8#include <qmenubar.h>
9#include <kiconloader.h>
10//#include <qpe/resource.h>
11
12#include "viewmailbase.h"
13//#include "opendiag.h"
14
15ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl)
16 : QMainWindow(parent, name, fl)
17{
18 setCaption(tr("E-Mail by %1"));
19 setToolBarsMovable(false);
20
21 toolbar = new QToolBar(this);
22 menubar = new QMenuBar( toolbar );
23 mailmenu = new QPopupMenu( menubar );
24 menubar->insertItem( tr( "Mail" ), mailmenu );
25
26 toolbar->setHorizontalStretchable(true);
27 addToolBar(toolbar);
28
29 QLabel *spacer = new QLabel(toolbar);
30 spacer->setBackgroundMode(QWidget::PaletteButton);
31 toolbar->setStretchableWidget(spacer);
32
33 reply = new QAction(tr("Reply"),SmallIcon("reply"), 0, 0, this);
34 reply->addTo(toolbar);
35 reply->addTo(mailmenu);
36
37 forward = new QAction(tr("Forward"),SmallIcon("forward"), 0, 0, this);
38 forward->addTo(toolbar);
39 forward->addTo(mailmenu);
40
41 attachbutton = new QAction(tr("Attachments"),SmallIcon("attach"), 0, 0, this, 0, true);
42 attachbutton->addTo(toolbar);
43 attachbutton->addTo(mailmenu);
44 connect(attachbutton, SIGNAL(toggled(bool)), SLOT(slotChangeAttachview(bool)));
45
46
47 showHtml = new QAction( tr( "Show Html" ), SmallIcon( "html" ), 0, 0, this, 0, true );
48 showHtml->addTo( toolbar );
49 showHtml->addTo( mailmenu );
50
51 deleteMail = new QAction(tr("Delete Mail"),SmallIcon("trash"), 0, 0, this);
52 deleteMail->addTo(toolbar);
53 deleteMail->addTo(mailmenu);
54
55 QVBox *view = new QVBox(this);
56 setCentralWidget(view);
57
58 attachments = new QListView(view);
59 attachments->setMinimumHeight(90);
60 attachments->setMaximumHeight(90);
61 attachments->setAllColumnsShowFocus(true);
62 attachments->addColumn("Mime Type", 60);
63 attachments->addColumn(tr("Description"), 100);
64 attachments->addColumn(tr("Filename"), 80);
65 attachments->addColumn(tr("Size"), 80);
66 attachments->setSorting(-1);
67 attachments->hide();
68
69 browser = new QTextBrowser(view);
70
71 //openDiag = new OpenDiag(view);
72 //openDiag->hide();
73
74}
75
76void ViewMailBase::slotChangeAttachview(bool state)
77{
78 if (state) attachments->show();
79 else attachments->hide();
80}
81
82void ViewMailBase::keyPressEvent ( QKeyEvent * e )
83{
84 if( e->key()==Qt::Key_Escape ) {
85 close();
86 e->accept();
87 return;
88 }
89 QWidget::keyPressEvent(e);
90}