1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/****************************************************************************
**
** Copyright (C) 2013 Thorbjørn Lund Martsum - tmartsum[at]gmail.com
** Contact: http://www.qt-project.org/legal
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** 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
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "messageboxpanel.h"
#include <QGroupBox>
#include <QPushButton>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QMessageBox>
#include <QPushButton>
#include <QDebug>
#include <QComboBox>
#include <QLineEdit>
#include <QLabel>
#include <QCheckBox>
MessageBoxPanel::MessageBoxPanel(QWidget *parent) : QWidget(parent)
,m_iconComboBox(new QComboBox)
,m_textInMsgBox(new QLineEdit)
,m_informativeText(new QLineEdit)
,m_detailedtext(new QLineEdit)
,m_buttonsMask(new QLineEdit)
,m_btnExec(new QPushButton)
,m_btnShowApply(new QPushButton)
,m_resultLabel(new QLabel)
,m_chkReallocMsgBox(new QCheckBox(QString::fromLatin1("Reallocate Message Box")))
,m_checkboxText(new QLineEdit)
,m_checkBoxResult(new QLabel)
,m_msgbox(new QMessageBox)
{
// --- Options ---
QGroupBox *optionsGroupBox = new QGroupBox(tr("Options"), this);
QVBoxLayout *optionsLayout = new QVBoxLayout(optionsGroupBox);
// text
optionsLayout->addWidget(new QLabel(QString::fromLatin1("Message box text")));
m_textInMsgBox->setText(QString::fromLatin1("This is a simple test with a text that is not long"));
optionsLayout->addWidget(m_textInMsgBox);
// informative text
optionsLayout->addWidget(new QLabel(QString::fromLatin1("Informative Text")));
optionsLayout->addWidget(m_informativeText);
// detailed text
optionsLayout->addWidget(new QLabel(QString::fromLatin1("detailed Text")));
optionsLayout->addWidget(m_detailedtext);
// icon
QStringList items;
items << "NoIcon" << "Information" << "Warning" << "Critical" << "Question";
m_iconComboBox->addItems(items);
optionsLayout->addWidget(new QLabel(QString::fromLatin1("Message box icon")));
optionsLayout->addWidget(m_iconComboBox);
// buttons mask
optionsLayout->addWidget(new QLabel(QString::fromLatin1("Message box button mask (in hex)")));
m_validator = new QRegExpValidator(QRegExp("0[xX]?[0-9a-fA-F]+"), this);
m_buttonsMask->setMaxLength(10);
m_buttonsMask->setValidator(m_validator);
m_buttonsMask->setText(QString::fromLatin1("0x00300400"));
optionsLayout->addWidget(m_buttonsMask);
// check box check
optionsLayout->addWidget(new QLabel(QString::fromLatin1("Checkbox text ("" => no chkbox)")));
optionsLayout->addWidget(m_checkboxText);
// reallocate
optionsLayout->addWidget(m_chkReallocMsgBox);
optionsLayout->addItem(new QSpacerItem(10, 10, QSizePolicy::Expanding, QSizePolicy::Expanding));
// Exec/Show
QGroupBox *execGroupBox = new QGroupBox(tr("Exec"));
QVBoxLayout *execLayout = new QVBoxLayout(execGroupBox);
m_btnExec->setText(QString::fromLatin1("Exec message box"));
connect(m_btnExec, SIGNAL(clicked()), this, SLOT(doExec()));
execLayout->addWidget(m_btnExec);
m_btnShowApply->setText(QString::fromLatin1("Show / apply"));
connect(m_btnShowApply, SIGNAL(clicked()), this, SLOT(doShowApply()));
execLayout->addWidget(m_btnShowApply);
// result label
execLayout->addWidget(m_resultLabel);
execLayout->addWidget(m_checkBoxResult);
execLayout->addItem(new QSpacerItem(10, 10, QSizePolicy::Expanding, QSizePolicy::Expanding));
execGroupBox->setLayout(execLayout);
// Main layout
QHBoxLayout *mainLayout = new QHBoxLayout();
mainLayout->addWidget(optionsGroupBox);
mainLayout->addWidget(execGroupBox);
setLayout(mainLayout);
}
void MessageBoxPanel::setupMessageBox(QMessageBox &box)
{
m_resultLabel->setText(QString());
m_checkBoxResult->setText(QString());
box.setText(m_textInMsgBox->text());
box.setInformativeText(m_informativeText->text());
box.setDetailedText(m_detailedtext->text());
QString btnHexText = m_buttonsMask->text();
btnHexText = btnHexText.replace(QString::fromLatin1("0x"), QString(), Qt::CaseInsensitive);
bool ok;
QMessageBox::StandardButtons btns = (QMessageBox::StandardButtons) btnHexText.toUInt(&ok, 16);
box.setStandardButtons((QMessageBox::StandardButtons) btns);
if (box.standardButtons() == (QMessageBox::StandardButtons) 0)
box.setStandardButtons(QMessageBox::Ok); // just to have something.
#if QT_VERSION >= 0x050000
box.setCheckBox(0);
if (m_checkboxText->text().length() > 0)
box.setCheckBox(new QCheckBox(m_checkboxText->text()));
#endif // Qt 5
box.setIcon((QMessageBox::Icon) m_iconComboBox->currentIndex());
}
MessageBoxPanel::~MessageBoxPanel()
{
if (m_msgbox)
m_msgbox->deleteLater();
}
void MessageBoxPanel::doExec()
{
if (!m_msgbox || m_chkReallocMsgBox->isChecked()) {
if (m_msgbox)
m_msgbox->deleteLater();
m_msgbox = new QMessageBox;
}
setupMessageBox(*m_msgbox);
m_msgbox->setWindowModality(Qt::NonModal);
int res = m_msgbox->exec();
QString sres;
sres.setNum(res, 16);
m_resultLabel->setText(QString::fromLatin1("Return value (hex): %1").arg(sres));
#if QT_VERSION >= 0x050000
if (m_msgbox->checkBox()) {
if (m_msgbox->checkBox()->isChecked())
m_checkBoxResult->setText(QString::fromLatin1("Checkbox was checked"));
else
m_checkBoxResult->setText(QString::fromLatin1("Checkbox was not checked"));
}
#endif // Qt 5
}
void MessageBoxPanel::doShowApply()
{
if (!m_msgbox || m_chkReallocMsgBox->isChecked()) {
if (m_msgbox)
m_msgbox->deleteLater();
m_msgbox = new QMessageBox;
}
setupMessageBox(*m_msgbox);
if (!m_msgbox->isVisible()) {
m_msgbox->setWindowModality(Qt::NonModal);
m_msgbox->show();
}
}
|