#include #include #include "core/datetime.h" #include "gui/formabout.h" #include "gui/themefactory.h" FormAbout::FormAbout(QWidget *parent) : QDialog(parent), m_ui(new Ui::FormAbout) { m_ui->setupUi(this); // Set flags and attributes. setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog); setWindowIcon(ThemeFactory::fromTheme("help-about")); m_ui->m_lblIcon->setPixmap(QPixmap(APP_ICON_PATH)); // Load information from embedded text files. QTextStream str; QFile file; str.setDevice(&file); file.setFileName(APP_INFO_PATH + "/COPYING_GNU_GPL_HTML"); if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { m_ui->m_txtLicenseGnu->setText(str.readAll()); } else { m_ui->m_txtLicenseGnu->setText(tr("License not found.")); } file.close(); file.setFileName(APP_INFO_PATH + "/COPYING_BSD"); if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { m_ui->m_txtLicenseBsd->setText(str.readAll()); } else { m_ui->m_txtLicenseBsd->setText(tr("License not found.")); } file.close(); file.setFileName(APP_INFO_PATH + "/CHANGELOG"); if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { m_ui->m_txtChangelog->setText(str.readAll()); } else { m_ui->m_txtChangelog->setText(tr("Changelog not found.")); } file.close(); // Set other informative texts. m_ui->m_lblDesc->setText(tr("%8
" "Version: %1 (build on %2 with CMake %3)
" "Revision: %4
" "Build date: %5
" "Qt: %6 (compiled against %7)
").arg(qApp->applicationVersion(), CMAKE_SYSTEM, CMAKE_VERSION, APP_REVISION, DateTime::fromString(QString("%1 %2").arg(__DATE__, __TIME__)).toString(Qt::DefaultLocaleShortDate), QT_VERSION_STR, qVersion(), APP_NAME)); m_ui->m_txtThanks->setText(tr("" "Authors and contributors:" "" "")); m_ui->m_txtInfo->setText(tr("RSS Guard is a (very) tiny feed reader." "

This software is distributed under the terms of GNU General Public License, version 3 or later." "

Contacts:" "" "You can obtain source code for Qonverter from its website." "


Copyright © 2011-%1 Martin Rotter").arg(QDateTime::currentDateTime().date().year())); } FormAbout::~FormAbout() { delete m_ui; }