summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/mainwindowbase.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/mail2/mainwindowbase.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mail2/mainwindowbase.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/noncore/unsupported/mail2/mainwindowbase.cpp b/noncore/unsupported/mail2/mainwindowbase.cpp
index d61899b..bffe8b3 100644
--- a/noncore/unsupported/mail2/mainwindowbase.cpp
+++ b/noncore/unsupported/mail2/mainwindowbase.cpp
@@ -49,18 +49,14 @@ MainWindowBase::MainWindowBase(QWidget *parent, const char *name, WFlags fl)
49 49
50 findmails = new QAction(tr("Search mails"), QIconSet(Resource::loadPixmap("mail/find")), 0, 0, this); 50 findmails = new QAction(tr("Search mails"), QIconSet(Resource::loadPixmap("mail/find")), 0, 0, this);
51 findmails->addTo(toolbar); 51 findmails->addTo(toolbar);
52 findmails->addTo(mailmenu); 52 findmails->addTo(mailmenu);
53 53
54 configure = new QAction(tr("Configuration"), QIconSet(Resource::loadPixmap("mail/configure")), 0, 0, this); 54 configure = new QAction(tr("Configuration"), QIconSet(Resource::loadPixmap("mail/configure")), 0, 0, this);
55 configure->addTo(toolbar);
56 configure->addTo(servermenu); 55 configure->addTo(servermenu);
57 56
58 stop = new QAction(tr("Abort"), QIconSet(Resource::loadPixmap("mail/abort")), 0, 0, this);
59 stop->addTo(toolbar);
60
61 QVBox *view = new QVBox(this); 57 QVBox *view = new QVBox(this);
62 setCentralWidget(view); 58 setCentralWidget(view);
63 59
64 folderView = new FolderWidget(view); 60 folderView = new FolderWidget(view);
65 folderView->setMinimumHeight(90); 61 folderView->setMinimumHeight(90);
66 folderView->setMaximumHeight(90); 62 folderView->setMaximumHeight(90);
@@ -73,12 +69,17 @@ MainWindowBase::MainWindowBase(QWidget *parent, const char *name, WFlags fl)
73 69
74 statusLabel = new QLabel(status); 70 statusLabel = new QLabel(status);
75 QFont tmpFont = statusLabel->font(); 71 QFont tmpFont = statusLabel->font();
76 tmpFont.setPixelSize(8); 72 tmpFont.setPixelSize(8);
77 statusLabel->setFont(tmpFont); 73 statusLabel->setFont(tmpFont);
78 74
75 stopButton = new QToolButton(status);
76 stopButton->setText(" X ");
77 stopButton->setMaximumHeight(15);
78 stopButton->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
79
79 statusProgress = new QProgressBar(status); 80 statusProgress = new QProgressBar(status);
80 statusProgress->setCenterIndicator(true); 81 statusProgress->setCenterIndicator(true);
81 statusProgress->setMaximumHeight(15); 82 statusProgress->setMaximumHeight(15);
82 statusProgress->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed)); 83 statusProgress->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
83} 84}
84 85