summaryrefslogtreecommitdiffstats
blob: 9edcb83761971941c03f8095cfcf04d22d0f29fd (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
#include "Swift/QtUI/QtAboutWidget.h"

#include <QCoreApplication>
#include <QIcon>
#include <QLabel>
#include <QVBoxLayout>
#include <QtGlobal>


#include "Swiften/Application/Application.h"

namespace Swift {

QtAboutWidget::QtAboutWidget() : QDialog() {
	resize(180, 240);
	QVBoxLayout *mainLayout = new QVBoxLayout(this);
	mainLayout->setAlignment(Qt::AlignHCenter);
	setLayout(mainLayout);
	
	QLabel* iconLabel = new QLabel(this);
	iconLabel->setPixmap(QIcon(":/logo-shaded-text.256.png").pixmap(90, 90));
	mainLayout->addWidget(iconLabel);
	
	QLabel* appNameLabel = new QLabel("<font size='+1'><b>" + QCoreApplication::applicationName() + "</b></font>", this);
	//appNameLabel->setTextFormat
	mainLayout->addWidget(appNameLabel);
	
	QLabel* versionLabel = new QLabel(QString("<font size='-1'>Version ") + QCoreApplication::applicationVersion() + "</font>", this);
	mainLayout->addWidget(versionLabel);
	QString buildString = QString("<font size='-1'><centre>Built with: Qt version ") + QT_VERSION_STR;
	buildString += QString("</centre><br/><centre>Running with Qt version ") + qVersion();
	buildString += "</centre></font>";
	QLabel* buildLabel = new QLabel(buildString, this);
	mainLayout->addWidget(buildLabel);
}

}