summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-08-29 09:07:01 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-08-29 09:07:01 (GMT)
commit52b06bd89d91e2f5e0c1ae439cd1e5c3e4b9bf2e (patch)
tree6bc018aa8457ed664f733936162fd75c5fb1d234 /Swift/QtUI/QtAboutWidget.cpp
parent0de707a4fddfbf2b9ee85d277596d33faa327ff2 (diff)
downloadswift-52b06bd89d91e2f5e0c1ae439cd1e5c3e4b9bf2e.zip
swift-52b06bd89d91e2f5e0c1ae439cd1e5c3e4b9bf2e.tar.bz2
Basic About dialog
Diffstat (limited to 'Swift/QtUI/QtAboutWidget.cpp')
-rw-r--r--Swift/QtUI/QtAboutWidget.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/Swift/QtUI/QtAboutWidget.cpp b/Swift/QtUI/QtAboutWidget.cpp
new file mode 100644
index 0000000..bc3fb4b
--- /dev/null
+++ b/Swift/QtUI/QtAboutWidget.cpp
@@ -0,0 +1,45 @@
+#include "Swift/QtUI/QtAboutWidget.h"
+
+#include <QCoreApplication>
+#include <QIcon>
+#include <QLabel>
+#include <QVBoxLayout>
+#include <QtGlobal>
+
+
+#include "Swiften/Application/Application.h"
+
+namespace Swift {
+QtAboutWidget* QtAboutWidget::instance() {
+ if (!instance_) {
+ instance_ = new QtAboutWidget();
+ }
+ return instance_;
+}
+
+QtAboutWidget::QtAboutWidget() : QWidget() {
+ 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);
+
+}
+
+QtAboutWidget* QtAboutWidget::instance_ = NULL;
+} \ No newline at end of file