blob: 301661e0585de7a691f49e8fa74cf82ae3d4077d (
plain)
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
|
/*
* Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Slimber/Qt/QtAboutDialog.h>
#include <QCoreApplication>
#include <QLabel>
#include <QPixmap>
#include <QVBoxLayout>
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("<center><font size='+1'><b>" + QCoreApplication::applicationName() + "</b></font></center>", this);
layout->addWidget(appNameLabel);
QLabel* versionLabel = new QLabel(QString("<center><font size='-1'>Version ") + QCoreApplication::applicationVersion() + "</font></center>", this);
layout->addWidget(versionLabel);
QString buildString = QString("<center><font size='-1'>Built with: Qt version ") + QT_VERSION_STR;
buildString += QString("<br/>Running with Qt version ") + qVersion();
buildString += "</font></center>";
QLabel* buildLabel = new QLabel(buildString, this);
layout->addWidget(buildLabel);
setFixedSize(minimumSizeHint());
}
|