/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #include "Slimber/Qt/QtAboutDialog.h" #include #include #include #include QtAboutDialog::QtAboutDialog() { setAttribute(Qt::WA_DeleteOnClose); setWindowTitle("About Slimber"); QVBoxLayout* layout = new QVBoxLayout(this); QLabel* iconLabel = new QLabel(this); iconLabel->setPixmap(QPixmap(":/icons/Icon-128.png")); iconLabel->setAlignment(Qt::AlignHCenter); layout->addWidget(iconLabel); QLabel* appNameLabel = new QLabel("
" + QCoreApplication::applicationName() + "
", this); layout->addWidget(appNameLabel); QLabel* versionLabel = new QLabel(QString("
Version ") + QCoreApplication::applicationVersion() + "
", this); layout->addWidget(versionLabel); QString buildString = QString("
Built with: Qt version ") + QT_VERSION_STR; buildString += QString("
Running with Qt version ") + qVersion(); buildString += "
"; QLabel* buildLabel = new QLabel(buildString, this); layout->addWidget(buildLabel); setFixedSize(minimumSizeHint()); }