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
@@ -43,48 +43,49 @@ MainWindowBase::MainWindowBase(QWidget *parent, const char *name, WFlags fl)
43 sendQueue->addTo(mailmenu); 43 sendQueue->addTo(mailmenu);
44 44
45 folders = new QAction(tr("Show/hide folders"), QIconSet(Resource::loadPixmap("mail/folder")), 0, 0, this, 0, true); 45 folders = new QAction(tr("Show/hide folders"), QIconSet(Resource::loadPixmap("mail/folder")), 0, 0, this, 0, true);
46 folders->addTo(toolbar); 46 folders->addTo(toolbar);
47 folders->addTo(servermenu); 47 folders->addTo(servermenu);
48 connect(folders, SIGNAL(toggled(bool)), SLOT(slotFoldersToggled(bool))); 48 connect(folders, SIGNAL(toggled(bool)), SLOT(slotFoldersToggled(bool)));
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);
67 folderView->hide(); 63 folderView->hide();
68 64
69 mailView = new MailTable(view); 65 mailView = new MailTable(view);
70 mailView->setMinimumHeight(50); 66 mailView->setMinimumHeight(50);
71 67
72 QHBox *status = new QHBox(view); 68 QHBox *status = new QHBox(view);
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
85void MainWindowBase::slotFoldersToggled(bool toggled) 86void MainWindowBase::slotFoldersToggled(bool toggled)
86{ 87{
87 if (folderView->isHidden() && toggled) folderView->show(); 88 if (folderView->isHidden() && toggled) folderView->show();
88 if (!folderView->isHidden() && !toggled) folderView->hide(); 89 if (!folderView->isHidden() && !toggled) folderView->hide();
89} 90}
90 91