2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-04 11:36:55 +01:00
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
#include "checkablemessagebox.h"
|
2013-10-31 15:39:49 +01:00
|
|
|
#include "qtcassert.h"
|
2009-06-19 16:34:38 +02:00
|
|
|
|
2013-10-31 15:39:49 +01:00
|
|
|
#include <QApplication>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCheckBox>
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QLabel>
|
2013-10-31 15:39:49 +01:00
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QSettings>
|
2019-03-15 11:50:41 +01:00
|
|
|
#include <QStyle>
|
2009-06-19 16:34:38 +02:00
|
|
|
|
2011-03-02 17:13:33 +01:00
|
|
|
/*!
|
|
|
|
|
\class Utils::CheckableMessageBox
|
|
|
|
|
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The CheckableMessageBox class implements a message box suitable for
|
|
|
|
|
questions with a
|
2011-03-02 17:13:33 +01:00
|
|
|
"Do not ask me again" checkbox.
|
|
|
|
|
|
|
|
|
|
Emulates the QMessageBox API with
|
|
|
|
|
static conveniences. The message label can open external URLs.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-10-31 15:39:49 +01:00
|
|
|
static const char kDoNotAskAgainKey[] = "DoNotAskAgain";
|
|
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
|
2011-12-18 00:58:28 +01:00
|
|
|
class CheckableMessageBoxPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CheckableMessageBoxPrivate(QDialog *q)
|
|
|
|
|
{
|
|
|
|
|
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred);
|
|
|
|
|
|
|
|
|
|
pixmapLabel = new QLabel(q);
|
|
|
|
|
sizePolicy.setHorizontalStretch(0);
|
|
|
|
|
sizePolicy.setVerticalStretch(0);
|
|
|
|
|
sizePolicy.setHeightForWidth(pixmapLabel->sizePolicy().hasHeightForWidth());
|
|
|
|
|
pixmapLabel->setSizePolicy(sizePolicy);
|
|
|
|
|
pixmapLabel->setVisible(false);
|
2019-12-16 19:05:52 +01:00
|
|
|
pixmapLabel->setFocusPolicy(Qt::NoFocus);
|
2011-12-18 00:58:28 +01:00
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto pixmapSpacer =
|
2011-12-18 00:58:28 +01:00
|
|
|
new QSpacerItem(0, 5, QSizePolicy::Minimum, QSizePolicy::MinimumExpanding);
|
|
|
|
|
|
|
|
|
|
messageLabel = new QLabel(q);
|
|
|
|
|
messageLabel->setMinimumSize(QSize(300, 0));
|
|
|
|
|
messageLabel->setWordWrap(true);
|
|
|
|
|
messageLabel->setOpenExternalLinks(true);
|
|
|
|
|
messageLabel->setTextInteractionFlags(Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse);
|
2019-12-16 19:05:52 +01:00
|
|
|
messageLabel->setFocusPolicy(Qt::NoFocus);
|
2011-12-18 00:58:28 +01:00
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto checkBoxRightSpacer =
|
2011-12-18 00:58:28 +01:00
|
|
|
new QSpacerItem(1, 1, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
2018-07-19 16:39:41 +02:00
|
|
|
auto buttonSpacer =
|
2011-12-18 00:58:28 +01:00
|
|
|
new QSpacerItem(0, 1, QSizePolicy::Minimum, QSizePolicy::Minimum);
|
|
|
|
|
|
|
|
|
|
checkBox = new QCheckBox(q);
|
2012-01-31 11:03:22 +01:00
|
|
|
checkBox->setText(CheckableMessageBox::tr("Do not ask again"));
|
2011-12-18 00:58:28 +01:00
|
|
|
|
|
|
|
|
buttonBox = new QDialogButtonBox(q);
|
|
|
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
|
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto verticalLayout = new QVBoxLayout();
|
2011-12-18 00:58:28 +01:00
|
|
|
verticalLayout->addWidget(pixmapLabel);
|
|
|
|
|
verticalLayout->addItem(pixmapSpacer);
|
|
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto horizontalLayout_2 = new QHBoxLayout();
|
2011-12-18 00:58:28 +01:00
|
|
|
horizontalLayout_2->addLayout(verticalLayout);
|
|
|
|
|
horizontalLayout_2->addWidget(messageLabel);
|
|
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto horizontalLayout = new QHBoxLayout();
|
2011-12-18 00:58:28 +01:00
|
|
|
horizontalLayout->addWidget(checkBox);
|
|
|
|
|
horizontalLayout->addItem(checkBoxRightSpacer);
|
|
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
auto verticalLayout_2 = new QVBoxLayout(q);
|
2011-12-18 00:58:28 +01:00
|
|
|
verticalLayout_2->addLayout(horizontalLayout_2);
|
|
|
|
|
verticalLayout_2->addLayout(horizontalLayout);
|
|
|
|
|
verticalLayout_2->addItem(buttonSpacer);
|
|
|
|
|
verticalLayout_2->addWidget(buttonBox);
|
|
|
|
|
}
|
2009-06-19 16:34:38 +02:00
|
|
|
|
2018-07-19 16:39:41 +02:00
|
|
|
QLabel *pixmapLabel = nullptr;
|
|
|
|
|
QLabel *messageLabel = nullptr;
|
|
|
|
|
QCheckBox *checkBox = nullptr;
|
|
|
|
|
QDialogButtonBox *buttonBox = nullptr;
|
|
|
|
|
QAbstractButton *clickedButton = nullptr;
|
2019-03-15 11:50:41 +01:00
|
|
|
QMessageBox::Icon icon = QMessageBox::NoIcon;
|
2009-06-19 16:34:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CheckableMessageBox::CheckableMessageBox(QWidget *parent) :
|
|
|
|
|
QDialog(parent),
|
2011-12-18 00:58:28 +01:00
|
|
|
d(new CheckableMessageBoxPrivate(this))
|
2009-06-19 16:34:38 +02:00
|
|
|
{
|
|
|
|
|
setModal(true);
|
|
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2015-03-05 22:00:05 +02:00
|
|
|
connect(d->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
|
|
|
|
connect(d->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
|
|
|
connect(d->buttonBox, &QDialogButtonBox::clicked,
|
|
|
|
|
this, [this](QAbstractButton *b) { d->clickedButton = b; });
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CheckableMessageBox::~CheckableMessageBox()
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
delete d;
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractButton *CheckableMessageBox::clickedButton() const
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
return d->clickedButton;
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox::StandardButton CheckableMessageBox::clickedStandardButton() const
|
|
|
|
|
{
|
2011-09-07 14:26:11 +02:00
|
|
|
if (d->clickedButton)
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->buttonBox->standardButton(d->clickedButton);
|
2009-06-19 16:34:38 +02:00
|
|
|
return QDialogButtonBox::NoButton;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CheckableMessageBox::text() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->messageLabel->text();
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setText(const QString &t)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
d->messageLabel->setText(t);
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
2019-03-15 11:50:41 +01:00
|
|
|
QMessageBox::Icon CheckableMessageBox::icon() const
|
2009-06-19 16:34:38 +02:00
|
|
|
{
|
2019-03-15 11:50:41 +01:00
|
|
|
return d->icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// See QMessageBoxPrivate::standardIcon
|
|
|
|
|
static QPixmap pixmapForIcon(QMessageBox::Icon icon, QWidget *w)
|
|
|
|
|
{
|
|
|
|
|
const QStyle *style = w ? w->style() : QApplication::style();
|
|
|
|
|
const int iconSize = style->pixelMetric(QStyle::PM_MessageBoxIconSize, nullptr, w);
|
|
|
|
|
QIcon tmpIcon;
|
|
|
|
|
switch (icon) {
|
|
|
|
|
case QMessageBox::Information:
|
|
|
|
|
tmpIcon = style->standardIcon(QStyle::SP_MessageBoxInformation, nullptr, w);
|
|
|
|
|
break;
|
|
|
|
|
case QMessageBox::Warning:
|
|
|
|
|
tmpIcon = style->standardIcon(QStyle::SP_MessageBoxWarning, nullptr, w);
|
|
|
|
|
break;
|
|
|
|
|
case QMessageBox::Critical:
|
|
|
|
|
tmpIcon = style->standardIcon(QStyle::SP_MessageBoxCritical, nullptr, w);
|
|
|
|
|
break;
|
|
|
|
|
case QMessageBox::Question:
|
|
|
|
|
tmpIcon = style->standardIcon(QStyle::SP_MessageBoxQuestion, nullptr, w);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!tmpIcon.isNull()) {
|
|
|
|
|
QWindow *window = nullptr;
|
|
|
|
|
if (w) {
|
|
|
|
|
window = w->windowHandle();
|
|
|
|
|
if (!window) {
|
|
|
|
|
if (const QWidget *nativeParent = w->nativeParentWidget())
|
|
|
|
|
window = nativeParent->windowHandle();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return tmpIcon.pixmap(window, QSize(iconSize, iconSize));
|
|
|
|
|
}
|
2009-06-19 16:34:38 +02:00
|
|
|
return QPixmap();
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-15 11:50:41 +01:00
|
|
|
void CheckableMessageBox::setIcon(QMessageBox::Icon icon)
|
2009-06-19 16:34:38 +02:00
|
|
|
{
|
2019-03-15 11:50:41 +01:00
|
|
|
d->icon = icon;
|
|
|
|
|
const QPixmap pixmap = pixmapForIcon(icon, this);
|
|
|
|
|
d->pixmapLabel->setPixmap(pixmap);
|
|
|
|
|
d->pixmapLabel->setVisible(!pixmap.isNull());
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CheckableMessageBox::isChecked() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->checkBox->isChecked();
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setChecked(bool s)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
d->checkBox->setChecked(s);
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CheckableMessageBox::checkBoxText() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->checkBox->text();
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setCheckBoxText(const QString &t)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
d->checkBox->setText(t);
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
2011-01-17 13:52:14 +01:00
|
|
|
bool CheckableMessageBox::isCheckBoxVisible() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->checkBox->isVisible();
|
2011-01-17 13:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setCheckBoxVisible(bool v)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
d->checkBox->setVisible(v);
|
2011-01-17 13:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
QDialogButtonBox::StandardButtons CheckableMessageBox::standardButtons() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->buttonBox->standardButtons();
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setStandardButtons(QDialogButtonBox::StandardButtons s)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
d->buttonBox->setStandardButtons(s);
|
2009-06-19 16:34:38 +02:00
|
|
|
}
|
|
|
|
|
|
2011-01-17 13:52:14 +01:00
|
|
|
QPushButton *CheckableMessageBox::button(QDialogButtonBox::StandardButton b) const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->buttonBox->button(b);
|
2011-01-17 13:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton *CheckableMessageBox::addButton(const QString &text, QDialogButtonBox::ButtonRole role)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->buttonBox->addButton(text, role);
|
2011-01-17 13:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
QDialogButtonBox::StandardButton CheckableMessageBox::defaultButton() const
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
foreach (QAbstractButton *b, d->buttonBox->buttons())
|
2018-07-19 16:39:41 +02:00
|
|
|
if (auto *pb = qobject_cast<QPushButton *>(b))
|
2009-06-19 16:34:38 +02:00
|
|
|
if (pb->isDefault())
|
2011-12-18 00:58:28 +01:00
|
|
|
return d->buttonBox->standardButton(pb);
|
2009-06-19 16:34:38 +02:00
|
|
|
return QDialogButtonBox::NoButton;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckableMessageBox::setDefaultButton(QDialogButtonBox::StandardButton s)
|
|
|
|
|
{
|
2011-12-18 00:58:28 +01:00
|
|
|
if (QPushButton *b = d->buttonBox->button(s)) {
|
2009-06-19 16:34:38 +02:00
|
|
|
b->setDefault(true);
|
|
|
|
|
b->setFocus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox::StandardButton
|
2011-12-18 00:58:28 +01:00
|
|
|
CheckableMessageBox::question(QWidget *parent,
|
|
|
|
|
const QString &title,
|
|
|
|
|
const QString &question,
|
|
|
|
|
const QString &checkBoxText,
|
|
|
|
|
bool *checkBoxSetting,
|
|
|
|
|
QDialogButtonBox::StandardButtons buttons,
|
|
|
|
|
QDialogButtonBox::StandardButton defaultButton)
|
2009-06-19 16:34:38 +02:00
|
|
|
{
|
|
|
|
|
CheckableMessageBox mb(parent);
|
|
|
|
|
mb.setWindowTitle(title);
|
2019-03-15 11:50:41 +01:00
|
|
|
mb.setIcon(QMessageBox::Question);
|
2009-06-19 16:34:38 +02:00
|
|
|
mb.setText(question);
|
|
|
|
|
mb.setCheckBoxText(checkBoxText);
|
|
|
|
|
mb.setChecked(*checkBoxSetting);
|
|
|
|
|
mb.setStandardButtons(buttons);
|
|
|
|
|
mb.setDefaultButton(defaultButton);
|
|
|
|
|
mb.exec();
|
|
|
|
|
*checkBoxSetting = mb.isChecked();
|
|
|
|
|
return mb.clickedStandardButton();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-13 16:12:04 +02:00
|
|
|
QDialogButtonBox::StandardButton
|
|
|
|
|
CheckableMessageBox::information(QWidget *parent,
|
|
|
|
|
const QString &title,
|
|
|
|
|
const QString &text,
|
|
|
|
|
const QString &checkBoxText,
|
|
|
|
|
bool *checkBoxSetting,
|
|
|
|
|
QDialogButtonBox::StandardButtons buttons,
|
|
|
|
|
QDialogButtonBox::StandardButton defaultButton)
|
|
|
|
|
{
|
|
|
|
|
CheckableMessageBox mb(parent);
|
|
|
|
|
mb.setWindowTitle(title);
|
2019-03-15 11:50:41 +01:00
|
|
|
mb.setIcon(QMessageBox::Information);
|
2013-09-13 16:12:04 +02:00
|
|
|
mb.setText(text);
|
|
|
|
|
mb.setCheckBoxText(checkBoxText);
|
|
|
|
|
mb.setChecked(*checkBoxSetting);
|
|
|
|
|
mb.setStandardButtons(buttons);
|
|
|
|
|
mb.setDefaultButton(defaultButton);
|
|
|
|
|
mb.exec();
|
|
|
|
|
*checkBoxSetting = mb.isChecked();
|
|
|
|
|
return mb.clickedStandardButton();
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
QMessageBox::StandardButton CheckableMessageBox::dialogButtonBoxToMessageBoxButton(QDialogButtonBox::StandardButton db)
|
|
|
|
|
{
|
|
|
|
|
return static_cast<QMessageBox::StandardButton>(int(db));
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-10 17:10:17 +01:00
|
|
|
bool CheckableMessageBox::shouldAskAgain(QSettings *settings, const QString &settingsSubKey)
|
2014-12-01 09:28:22 +01:00
|
|
|
{
|
2016-04-15 15:21:26 +02:00
|
|
|
if (QTC_GUARD(settings)) {
|
2014-12-01 09:28:22 +01:00
|
|
|
settings->beginGroup(QLatin1String(kDoNotAskAgainKey));
|
|
|
|
|
bool shouldNotAsk = settings->value(settingsSubKey, false).toBool();
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
if (shouldNotAsk)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum DoNotAskAgainType{Question, Information};
|
|
|
|
|
|
|
|
|
|
void initDoNotAskAgainMessageBox(CheckableMessageBox &messageBox, const QString &title,
|
|
|
|
|
const QString &text, QDialogButtonBox::StandardButtons buttons,
|
|
|
|
|
QDialogButtonBox::StandardButton defaultButton,
|
|
|
|
|
DoNotAskAgainType type)
|
|
|
|
|
{
|
|
|
|
|
messageBox.setWindowTitle(title);
|
2019-03-15 11:50:41 +01:00
|
|
|
messageBox.setIcon(type == Information ? QMessageBox::Information : QMessageBox::Question);
|
2014-12-01 09:28:22 +01:00
|
|
|
messageBox.setText(text);
|
|
|
|
|
messageBox.setCheckBoxVisible(true);
|
|
|
|
|
messageBox.setCheckBoxText(type == Information ? CheckableMessageBox::msgDoNotShowAgain()
|
|
|
|
|
: CheckableMessageBox::msgDoNotAskAgain());
|
|
|
|
|
messageBox.setChecked(false);
|
|
|
|
|
messageBox.setStandardButtons(buttons);
|
|
|
|
|
messageBox.setDefaultButton(defaultButton);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-10 17:10:17 +01:00
|
|
|
void CheckableMessageBox::doNotAskAgain(QSettings *settings, const QString &settingsSubKey)
|
2014-12-01 09:28:22 +01:00
|
|
|
{
|
|
|
|
|
if (!settings)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
settings->beginGroup(QLatin1String(kDoNotAskAgainKey));
|
|
|
|
|
settings->setValue(settingsSubKey, true);
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-31 15:39:49 +01:00
|
|
|
/*!
|
|
|
|
|
Shows a message box with given \a title and \a text, and a \gui {Do not ask again} check box.
|
|
|
|
|
If the user checks the check box and accepts the dialog with the \a acceptButton,
|
|
|
|
|
further invocations of this function with the same \a settings and \a settingsSubKey will not
|
|
|
|
|
show the dialog, but instantly return \a acceptButton.
|
|
|
|
|
|
|
|
|
|
Returns the clicked button, or QDialogButtonBox::NoButton if the user rejects the dialog
|
|
|
|
|
with the escape key, or \a acceptButton if the dialog is suppressed.
|
|
|
|
|
*/
|
|
|
|
|
QDialogButtonBox::StandardButton
|
|
|
|
|
CheckableMessageBox::doNotAskAgainQuestion(QWidget *parent, const QString &title,
|
|
|
|
|
const QString &text, QSettings *settings,
|
|
|
|
|
const QString &settingsSubKey,
|
|
|
|
|
QDialogButtonBox::StandardButtons buttons,
|
|
|
|
|
QDialogButtonBox::StandardButton defaultButton,
|
|
|
|
|
QDialogButtonBox::StandardButton acceptButton)
|
|
|
|
|
|
|
|
|
|
{
|
2018-12-10 17:10:17 +01:00
|
|
|
if (!shouldAskAgain(settings, settingsSubKey))
|
2014-12-01 09:28:22 +01:00
|
|
|
return acceptButton;
|
2013-10-31 15:39:49 +01:00
|
|
|
|
2014-12-01 09:28:22 +01:00
|
|
|
CheckableMessageBox messageBox(parent);
|
|
|
|
|
initDoNotAskAgainMessageBox(messageBox, title, text, buttons, defaultButton, Question);
|
|
|
|
|
messageBox.exec();
|
|
|
|
|
if (messageBox.isChecked() && (messageBox.clickedStandardButton() == acceptButton))
|
|
|
|
|
doNotAskAgain(settings, settingsSubKey);
|
2013-10-31 15:39:49 +01:00
|
|
|
|
2014-12-01 09:28:22 +01:00
|
|
|
return messageBox.clickedStandardButton();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Shows a message box with given \a title and \a text, and a \gui {Do not show again} check box.
|
|
|
|
|
If the user checks the check box and quits the dialog, further invocations of this
|
|
|
|
|
function with the same \a settings and \a settingsSubKey will not show the dialog, but instantly return.
|
|
|
|
|
|
|
|
|
|
Returns the clicked button, or QDialogButtonBox::NoButton if the user rejects the dialog
|
|
|
|
|
with the escape key, or \a defaultButton if the dialog is suppressed.
|
|
|
|
|
*/
|
|
|
|
|
QDialogButtonBox::StandardButton
|
|
|
|
|
CheckableMessageBox::doNotShowAgainInformation(QWidget *parent, const QString &title,
|
|
|
|
|
const QString &text, QSettings *settings,
|
|
|
|
|
const QString &settingsSubKey,
|
|
|
|
|
QDialogButtonBox::StandardButtons buttons,
|
|
|
|
|
QDialogButtonBox::StandardButton defaultButton)
|
|
|
|
|
|
|
|
|
|
{
|
2018-12-10 17:10:17 +01:00
|
|
|
if (!shouldAskAgain(settings, settingsSubKey))
|
2014-12-01 09:28:22 +01:00
|
|
|
return defaultButton;
|
|
|
|
|
|
|
|
|
|
CheckableMessageBox messageBox(parent);
|
|
|
|
|
initDoNotAskAgainMessageBox(messageBox, title, text, buttons, defaultButton, Information);
|
|
|
|
|
messageBox.exec();
|
|
|
|
|
if (messageBox.isChecked())
|
|
|
|
|
doNotAskAgain(settings, settingsSubKey);
|
|
|
|
|
|
|
|
|
|
return messageBox.clickedStandardButton();
|
2013-10-31 15:39:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Resets all suppression settings for doNotAskAgainQuestion() found in \a settings,
|
|
|
|
|
so all these message boxes are shown again.
|
|
|
|
|
*/
|
|
|
|
|
void CheckableMessageBox::resetAllDoNotAskAgainQuestions(QSettings *settings)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(settings, return);
|
|
|
|
|
settings->beginGroup(QLatin1String(kDoNotAskAgainKey));
|
2013-11-01 14:31:30 +01:00
|
|
|
settings->remove(QString());
|
2013-10-31 15:39:49 +01:00
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Returns whether any message boxes from doNotAskAgainQuestion() are suppressed
|
|
|
|
|
in the \a settings.
|
|
|
|
|
*/
|
|
|
|
|
bool CheckableMessageBox::hasSuppressedQuestions(QSettings *settings)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(settings, return false);
|
|
|
|
|
bool hasSuppressed = false;
|
|
|
|
|
settings->beginGroup(QLatin1String(kDoNotAskAgainKey));
|
|
|
|
|
foreach (const QString &subKey, settings->childKeys()) {
|
|
|
|
|
if (settings->value(subKey, false).toBool()) {
|
|
|
|
|
hasSuppressed = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
return hasSuppressed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Returns the standard \gui {Do not ask again} check box text.
|
|
|
|
|
\sa doNotAskAgainQuestion()
|
|
|
|
|
*/
|
|
|
|
|
QString CheckableMessageBox::msgDoNotAskAgain()
|
|
|
|
|
{
|
|
|
|
|
return QApplication::translate("Utils::CheckableMessageBox", "Do not &ask again");
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-01 09:28:22 +01:00
|
|
|
/*!
|
|
|
|
|
Returns the standard \gui {Do not show again} check box text.
|
|
|
|
|
\sa doNotShowAgainInformation()
|
|
|
|
|
*/
|
|
|
|
|
QString CheckableMessageBox::msgDoNotShowAgain()
|
|
|
|
|
{
|
|
|
|
|
return QApplication::translate("Utils::CheckableMessageBox", "Do not &show again");
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-19 16:34:38 +02:00
|
|
|
} // namespace Utils
|