05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
// Copyright (C) 2013 2013 Thorbjørn Lund Martsum - tmartsum[at]gmail.com
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#ifndef MESSAGEBOXPANEL_H
|
|
#define MESSAGEBOXPANEL_H
|
|
|
|
#include <QWidget>
|
|
#include <QCheckBox>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QComboBox;
|
|
class QCheckBox;
|
|
class QPushButton;
|
|
class QLineEdit;
|
|
class QValidator;
|
|
class QLabel;
|
|
class QMessageBox;
|
|
class QCheckBox;
|
|
QT_END_NAMESPACE
|
|
|
|
class MessageBoxPanel : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MessageBoxPanel(QWidget *parent = nullptr);
|
|
~MessageBoxPanel();
|
|
|
|
public slots:
|
|
void doExec();
|
|
void doShowApply();
|
|
|
|
private:
|
|
QComboBox *m_iconComboBox;
|
|
QLineEdit *m_textInMsgBox;
|
|
QLineEdit *m_informativeText;
|
|
QLineEdit *m_detailedtext;
|
|
QLineEdit *m_buttonsMask;
|
|
QPushButton *m_btnExec;
|
|
QPushButton *m_btnShowApply;
|
|
QValidator *m_validator;
|
|
QLabel *m_resultLabel;
|
|
QCheckBox *m_chkReallocMsgBox;
|
|
QLineEdit *m_checkboxText;
|
|
QLabel *m_checkBoxResult;
|
|
QMessageBox *m_msgbox;
|
|
void setupMessageBox(QMessageBox &box);
|
|
};
|
|
|
|
#endif
|