mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
22 lines
602 B
C++
22 lines
602 B
C++
#include "HelpTextWindow.hpp"
|
|
|
|
#include <QApplication>
|
|
#include <QString>
|
|
#include <QPalette>
|
|
|
|
#include "qt_helpers.hpp"
|
|
|
|
#include "moc_HelpTextWindow.cpp"
|
|
|
|
HelpTextWindow::HelpTextWindow (QString const& title, QString const& text, QFont const& font, QWidget * parent)
|
|
: QLabel {parent, Qt::WindowCloseButtonHint | Qt::WindowMinimizeButtonHint}
|
|
{
|
|
setWindowTitle(QApplication::applicationName () + " - " + title);
|
|
setMargin (10);
|
|
setBackgroundRole (QPalette::Base);
|
|
setAutoFillBackground (true);
|
|
setStyleSheet (font_as_stylesheet (font));
|
|
setText (text);
|
|
setMinimumSize (sizeHint ());
|
|
}
|