2015-02-25 23:27:09 +01:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
2015-02-26 22:34:33 +01:00
|
|
|
** All rights reserved. This program and the accompanying materials are made
|
|
|
|
** available under the terms of the GNU Lesser General Public License (LGPL)
|
|
|
|
** version 2.1 which accompanies this distribution, and is available at
|
|
|
|
** http://www.gnu.org/licenses/lgpl-2.1.html
|
2015-02-25 23:27:09 +01:00
|
|
|
**
|
2015-02-26 22:34:33 +01:00
|
|
|
** 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 Lesser General Public License
|
|
|
|
** for more details.
|
2015-02-25 23:27:09 +01:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CHECKABLEMESSAGEBOX_H
|
|
|
|
#define CHECKABLEMESSAGEBOX_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QDialog>
|
2015-02-25 23:27:09 +01:00
|
|
|
#include <QDialogButtonBox>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QFlags>
|
2015-02-25 23:27:09 +01:00
|
|
|
#include <QMessageBox>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "vpropertyexplorer_global.h"
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
class QSettings;
|
|
|
|
|
2015-03-02 18:11:43 +01:00
|
|
|
namespace Utils
|
|
|
|
{
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
class CheckableMessageBoxPrivate;
|
|
|
|
|
2015-10-23 19:47:33 +02:00
|
|
|
class VPROPERTYEXPLORERSHARED_EXPORT CheckableMessageBox : public QDialog
|
2015-02-25 23:27:09 +01:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_OBJECT // NOLINT
|
2015-02-25 23:27:09 +01:00
|
|
|
Q_PROPERTY(QString text READ text WRITE setText)
|
|
|
|
Q_PROPERTY(QPixmap iconPixmap READ iconPixmap WRITE setIconPixmap)
|
|
|
|
Q_PROPERTY(bool isChecked READ isChecked WRITE setChecked)
|
|
|
|
Q_PROPERTY(QString checkBoxText READ checkBoxText WRITE setCheckBoxText)
|
|
|
|
Q_PROPERTY(QDialogButtonBox::StandardButtons buttons READ standardButtons WRITE setStandardButtons)
|
|
|
|
Q_PROPERTY(QDialogButtonBox::StandardButton defaultButton READ defaultButton WRITE setDefaultButton)
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit CheckableMessageBox(QWidget *parent);
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual ~CheckableMessageBox() override;
|
2015-02-25 23:27:09 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto question(QWidget *parent, const QString &title, const QString &question, const QString &checkBoxText,
|
|
|
|
bool *checkBoxSetting,
|
|
|
|
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Yes | QDialogButtonBox::No,
|
|
|
|
QDialogButtonBox::StandardButton defaultButton = QDialogButtonBox::No)
|
|
|
|
-> QDialogButtonBox::StandardButton;
|
|
|
|
|
|
|
|
static auto information(QWidget *parent, const QString &title, const QString &text, const QString &checkBoxText,
|
|
|
|
bool *checkBoxSetting, QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Ok,
|
|
|
|
QDialogButtonBox::StandardButton defaultButton = QDialogButtonBox::NoButton)
|
|
|
|
-> QDialogButtonBox::StandardButton;
|
|
|
|
|
|
|
|
static auto doNotAskAgainQuestion(QWidget *parent, const QString &title, const QString &text, QSettings *settings,
|
|
|
|
const QString &settingsSubKey,
|
|
|
|
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Yes |
|
|
|
|
QDialogButtonBox::No,
|
|
|
|
QDialogButtonBox::StandardButton defaultButton = QDialogButtonBox::No,
|
|
|
|
QDialogButtonBox::StandardButton acceptButton = QDialogButtonBox::Yes)
|
|
|
|
-> QDialogButtonBox::StandardButton;
|
|
|
|
|
|
|
|
static auto doNotShowAgainInformation(QWidget *parent, const QString &title, const QString &text,
|
|
|
|
QSettings *settings, const QString &settingsSubKey,
|
|
|
|
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Ok,
|
|
|
|
QDialogButtonBox::StandardButton defaultButton = QDialogButtonBox::NoButton)
|
|
|
|
-> QDialogButtonBox::StandardButton;
|
|
|
|
|
|
|
|
auto text() const -> QString;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setText(const QString &);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto isChecked() const -> bool;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setChecked(bool s);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto checkBoxText() const -> QString;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setCheckBoxText(const QString &);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto isCheckBoxVisible() const -> bool;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setCheckBoxVisible(bool);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto standardButtons() const -> QDialogButtonBox::StandardButtons;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setStandardButtons(QDialogButtonBox::StandardButtons s);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto button(QDialogButtonBox::StandardButton b) const -> QPushButton *;
|
|
|
|
auto addButton(const QString &text, QDialogButtonBox::ButtonRole role) -> QPushButton *;
|
2015-02-25 23:27:09 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto defaultButton() const -> QDialogButtonBox::StandardButton;
|
2015-02-25 23:27:09 +01:00
|
|
|
void setDefaultButton(QDialogButtonBox::StandardButton s);
|
|
|
|
|
|
|
|
// See static QMessageBox::standardPixmap()
|
2023-05-03 13:07:02 +02:00
|
|
|
auto iconPixmap() const -> QPixmap;
|
2023-07-13 16:49:20 +02:00
|
|
|
void setIconPixmap(const QPixmap &p);
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
// Query the result
|
2023-05-03 13:07:02 +02:00
|
|
|
auto clickedButton() const -> QAbstractButton *;
|
|
|
|
auto clickedStandardButton() const -> QDialogButtonBox::StandardButton;
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
// Conversion convenience
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto dialogButtonBoxToMessageBoxButton(QDialogButtonBox::StandardButton) -> QMessageBox::StandardButton;
|
2015-02-25 23:27:09 +01:00
|
|
|
static void resetAllDoNotAskAgainQuestions(QSettings *settings);
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto hasSuppressedQuestions(QSettings *settings) -> bool;
|
|
|
|
static auto msgDoNotAskAgain() -> QString;
|
|
|
|
static auto msgDoNotShowAgain() -> QString;
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotClicked(QAbstractButton *b);
|
|
|
|
|
|
|
|
private:
|
2022-08-12 17:50:13 +02:00
|
|
|
// cppcheck-suppress unknownMacro
|
|
|
|
Q_DISABLE_COPY_MOVE(CheckableMessageBox) // NOLINT
|
2015-02-25 23:27:09 +01:00
|
|
|
CheckableMessageBoxPrivate *d;
|
2023-07-13 16:49:20 +02:00
|
|
|
enum DoNotAskAgainType
|
|
|
|
{
|
|
|
|
Question,
|
|
|
|
Information
|
|
|
|
};
|
2015-03-16 13:23:02 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto askAgain(QSettings *settings, const QString &settingsSubKey) -> bool;
|
2023-07-13 16:49:20 +02:00
|
|
|
static void initDoNotAskAgainMessageBox(CheckableMessageBox &messageBox, const QString &title, const QString &text,
|
|
|
|
QDialogButtonBox::StandardButtons buttons,
|
|
|
|
QDialogButtonBox::StandardButton defaultButton, DoNotAskAgainType type);
|
2015-03-16 13:23:02 +01:00
|
|
|
static void doNotAskAgain(QSettings *settings, const QString &settingsSubKey);
|
2015-02-25 23:27:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Utils
|
|
|
|
|
|
|
|
#endif // CHECKABLEMESSAGEBOX_H
|