parent
bf19abea21
commit
55a238572c
7 changed files with 140 additions and 75 deletions
@ -0,0 +1,89 @@ |
||||
/*
|
||||
Copyright (C) 2016 Laurent Montel <montel@kde.org> |
||||
|
||||
This library is free software; you can redistribute it and/or |
||||
modify it under the terms of the GNU Library General Public |
||||
License as published by the Free Software Foundation; either |
||||
version 2 of the License, or (at your option) any later version. |
||||
|
||||
This library is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
Library General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Library General Public License |
||||
along with this library; see the file COPYING.LIB. If not, write to |
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
||||
Boston, MA 02110-1301, USA. |
||||
*/ |
||||
|
||||
#include "filteractionmissingtransportdialog.h" |
||||
#include "kernel/mailkernel.h" |
||||
|
||||
#include <KLocalizedString> |
||||
|
||||
#include <QDialogButtonBox> |
||||
#include <QLabel> |
||||
#include <QVBoxLayout> |
||||
#include <QPushButton> |
||||
|
||||
#include <MailTransport/TransportComboBox> |
||||
|
||||
using namespace MailCommon; |
||||
|
||||
FilterActionMissingTransportDialog::FilterActionMissingTransportDialog(const QString &filtername, |
||||
QWidget *parent) |
||||
: QDialog(parent) |
||||
{ |
||||
setModal(true); |
||||
setWindowTitle(i18n("Select Transport")); |
||||
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
||||
QWidget *mainWidget = new QWidget(this); |
||||
mainLayout->addWidget(mainWidget); |
||||
|
||||
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
||||
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
||||
okButton->setDefault(true); |
||||
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
||||
connect(buttonBox, &QDialogButtonBox::accepted, this, &FilterActionMissingTransportDialog::accept); |
||||
connect(buttonBox, &QDialogButtonBox::rejected, this, &FilterActionMissingTransportDialog::reject); |
||||
mainLayout->addWidget(buttonBox); |
||||
okButton->setDefault(true); |
||||
QVBoxLayout *lay = new QVBoxLayout(mainWidget); |
||||
QLabel *label = new QLabel(this); |
||||
label->setText(i18n("Filter transport is missing. " |
||||
"Please select a transport to use with filter \"%1\"", |
||||
filtername)); |
||||
label->setWordWrap(true); |
||||
lay->addWidget(label); |
||||
mComboBoxTransport = new MailTransport::TransportComboBox(this); |
||||
lay->addWidget(mComboBoxTransport); |
||||
readConfig(); |
||||
} |
||||
|
||||
FilterActionMissingTransportDialog::~FilterActionMissingTransportDialog() |
||||
{ |
||||
writeConfig(); |
||||
} |
||||
|
||||
void FilterActionMissingTransportDialog::readConfig() |
||||
{ |
||||
KConfigGroup group(KernelIf->config(), "FilterActionMissingTransportDialog"); |
||||
|
||||
const QSize size = group.readEntry("Size", QSize(500, 300)); |
||||
if (size.isValid()) { |
||||
resize(size); |
||||
} |
||||
} |
||||
|
||||
void FilterActionMissingTransportDialog::writeConfig() |
||||
{ |
||||
KConfigGroup group(KernelIf->config(), "FilterActionMissingTransportDialog"); |
||||
group.writeEntry("Size", size()); |
||||
} |
||||
|
||||
int FilterActionMissingTransportDialog::selectedTransport() const |
||||
{ |
||||
return mComboBoxTransport->currentTransportId(); |
||||
} |
||||
|
||||
@ -0,0 +1,47 @@ |
||||
/*
|
||||
Copyright (C) 2016 Laurent Montel <montel@kde.org> |
||||
|
||||
This library is free software; you can redistribute it and/or |
||||
modify it under the terms of the GNU Library General Public |
||||
License as published by the Free Software Foundation; either |
||||
version 2 of the License, or (at your option) any later version. |
||||
|
||||
This library is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
Library General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Library General Public License |
||||
along with this library; see the file COPYING.LIB. If not, write to |
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
||||
Boston, MA 02110-1301, USA. |
||||
*/ |
||||
|
||||
#ifndef FILTERACTIONMISSINGTRANSPORTDIALOG_H |
||||
#define FILTERACTIONMISSINGTRANSPORTDIALOG_H |
||||
|
||||
#include <QDialog> |
||||
namespace MailTransport |
||||
{ |
||||
class TransportComboBox; |
||||
} |
||||
|
||||
namespace MailCommon |
||||
{ |
||||
class FilterActionMissingTransportDialog : public QDialog |
||||
{ |
||||
Q_OBJECT |
||||
public: |
||||
explicit FilterActionMissingTransportDialog(const QString &filtername, |
||||
QWidget *parent = Q_NULLPTR); |
||||
~FilterActionMissingTransportDialog(); |
||||
int selectedTransport() const; |
||||
|
||||
private: |
||||
void writeConfig(); |
||||
void readConfig(); |
||||
MailTransport::TransportComboBox *mComboBoxTransport; |
||||
}; |
||||
} |
||||
|
||||
#endif // FILTERACTIONMISSINGTRANSPORTDIALOG_H
|
||||
Loading…
Reference in new issue