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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/Info/DetailedMessageBox.cpp
//! @brief Implements class DetailedMessageBox.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/View/Info/DetailedMessageBox.h"
#include <QApplication>
#include <QPushButton>
#include <QStyle>
#include <QVBoxLayout>
namespace {
const QSize default_dialog_size(512, 300);
} // namespace
DetailedMessageBox::DetailedMessageBox(QWidget* parent, const QString& title, const QString& text,
const QString& details)
: QDialog(parent)
, m_top_label(new QLabel)
, m_text_edit(new QTextEdit)
{
setWindowTitle(title);
m_top_label->setText(text);
m_text_edit->setText(details);
m_text_edit->setReadOnly(true);
m_text_edit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
setWindowFlags(Qt::Dialog);
resize(default_dialog_size);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
QColor bgColor(240, 240, 240, 255);
QPalette palette;
palette.setColor(QPalette::Window, bgColor);
setAutoFillBackground(true);
setPalette(palette);
auto* topLayout = new QHBoxLayout;
topLayout->addLayout(createLogoLayout());
topLayout->addLayout(createInfoLayout());
topLayout->addStretch(1);
auto* mainLayout = new QVBoxLayout;
mainLayout->addLayout(topLayout);
mainLayout->addWidget(m_text_edit);
mainLayout->addLayout(createButtonLayout());
setLayout(mainLayout);
setSizeGripEnabled(true);
}
//! Returns layout with icon for left part of the widget.
QBoxLayout* DetailedMessageBox::createLogoLayout() const
{
auto* result = new QVBoxLayout;
result->setContentsMargins(5, 5, 5, 5);
QIcon icon = QApplication::style()->standardIcon(QStyle::SP_MessageBoxWarning);
auto* label = new QLabel;
label->setPixmap(icon.pixmap(128));
result->addWidget(label);
return result;
}
//! Creates right layout with text and QComboBox selection.
QBoxLayout* DetailedMessageBox::createInfoLayout() const
{
m_top_label->setWordWrap(true);
auto* result = new QVBoxLayout;
result->setContentsMargins(5, 5, 5, 5);
result->addWidget(m_top_label);
return result;
}
//! Creates button layout with buttons.
QBoxLayout* DetailedMessageBox::createButtonLayout() const
{
auto* result = new QHBoxLayout;
auto* okButton = new QPushButton("Ok");
connect(okButton, &QPushButton::clicked, this, &DetailedMessageBox::reject);
result->addStretch(1);
result->addWidget(okButton);
return result;
}
|