summaryrefslogtreecommitdiffabout
path: root/kmicromail/viewmailbase.cpp
Unidiff
Diffstat (limited to 'kmicromail/viewmailbase.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/viewmailbase.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/kmicromail/viewmailbase.cpp b/kmicromail/viewmailbase.cpp
index 3a41ba0..3bb964e 100644
--- a/kmicromail/viewmailbase.cpp
+++ b/kmicromail/viewmailbase.cpp
@@ -1,22 +1,23 @@
1// CHANGED 2004-08-06 Lutz Rogowski 1// CHANGED 2004-08-06 Lutz Rogowski
2#include <qtextbrowser.h> 2#include <qtextbrowser.h>
3#include <qlistview.h> 3#include <qlistview.h>
4#include <qaction.h> 4#include <qaction.h>
5#include <qlabel.h> 5#include <qlabel.h>
6#include <qvbox.h> 6#include <qvbox.h>
7#include <qapplication.h>
7 8
8#include <qtoolbar.h> 9#include <qtoolbar.h>
9#include <qmenubar.h> 10#include <qmenubar.h>
10#include <kiconloader.h> 11#include <kiconloader.h>
11//#include <qpe/resource.h> 12//#include <qpe/resource.h>
12#include <klocale.h> 13#include <klocale.h>
13 14
14#include "viewmailbase.h" 15#include "viewmailbase.h"
15//#include "opendiag.h" 16//#include "opendiag.h"
16 17
17ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl) 18ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl)
18 : QMainWindow(parent, name, fl) 19 : QMainWindow(parent, name, fl)
19{ 20{
20 21
21 setToolBarsMovable(false); 22 setToolBarsMovable(false);
22 23
@@ -59,36 +60,38 @@ ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl)
59 60
60 nextMail = new QAction(i18n("Show next mail"),SmallIcon("enter"), 0, 0, this); 61 nextMail = new QAction(i18n("Show next mail"),SmallIcon("enter"), 0, 0, this);
61 QLabel *spacer = new QLabel(toolbar); 62 QLabel *spacer = new QLabel(toolbar);
62 nextMail->addTo(toolbar); 63 nextMail->addTo(toolbar);
63 nextMail->addTo(mailmenu); 64 nextMail->addTo(mailmenu);
64 65
65 closeMail = new QAction(i18n("Close"),SmallIcon("exit"), 0, 0, this); 66 closeMail = new QAction(i18n("Close"),SmallIcon("exit"), 0, 0, this);
66 //QLabel *spacer = new QLabel(toolbar); 67 //QLabel *spacer = new QLabel(toolbar);
67 spacer->setBackgroundMode(QWidget::PaletteButton); 68 spacer->setBackgroundMode(QWidget::PaletteButton);
68 toolbar->setStretchableWidget(spacer); 69 toolbar->setStretchableWidget(spacer);
69 closeMail->addTo(toolbar); 70 closeMail->addTo(toolbar);
70 closeMail->addTo(mailmenu); 71 closeMail->addTo(mailmenu);
71 QVBox *view = new QVBox(this); 72 QVBox *view = new QVBox(this);
72 setCentralWidget(view); 73 setCentralWidget(view);
73 74
74 attachments = new QListView(view); 75 attachments = new QListView(view);
75 attachments->setMinimumHeight(90); 76 int fixh = 100;
76 attachments->setMaximumHeight(90); 77 if ( QApplication::desktop()->width() > 320 )
78 fixh = 200;
79 attachments->setFixedHeight(fixh);
77 attachments->setAllColumnsShowFocus(true); 80 attachments->setAllColumnsShowFocus(true);
78 attachments->addColumn("Mime Type", 60); 81 attachments->addColumn("Mime Type", fixh-30);
79 attachments->addColumn(i18n("Description"), 100); 82 attachments->addColumn(i18n("Description"), 100);
80 attachments->addColumn(i18n("Filename"), 80); 83 attachments->addColumn(i18n("Filename"), 80);
81 attachments->addColumn(i18n("Size"), 80); 84 attachments->addColumn(i18n("Size"), 80);
82 attachments->setSorting(-1); 85 attachments->setSorting(-1);
83 attachments->hide(); 86 attachments->hide();
84 87
85 browser = new QTextBrowser(view); 88 browser = new QTextBrowser(view);
86 89
87 //openDiag = new OpenDiag(view); 90 //openDiag = new OpenDiag(view);
88 //openDiag->hide(); 91 //openDiag->hide();
89 92
90} 93}
91 94
92void ViewMailBase::slotChangeAttachview(bool state) 95void ViewMailBase::slotChangeAttachview(bool state)
93{ 96{
94 if (state) attachments->show(); 97 if (state) attachments->show();