111 lines
4.7 KiB
C++
Executable File
111 lines
4.7 KiB
C++
Executable File
// This file is part of RSS Guard.
|
|
//
|
|
// Copyright (C) 2011-2014 by Martin Rotter <rotter.martinos@gmail.com>
|
|
//
|
|
// RSS Guard is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// RSS Guard is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "gui/formabout.h"
|
|
|
|
#include "miscellaneous/iconfactory.h"
|
|
#include "miscellaneous/textfactory.h"
|
|
|
|
#if !defined(Q_OS_WIN)
|
|
#include "gui/messagebox.h"
|
|
#endif
|
|
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
|
|
|
|
FormAbout::FormAbout(QWidget *parent) : QDialog(parent), m_ui(new Ui::FormAbout) {
|
|
m_ui->setupUi(this);
|
|
|
|
// Set flags and attributes.
|
|
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog | Qt::WindowSystemMenuHint);
|
|
setWindowIcon(IconFactory::instance()->fromTheme("application-about"));
|
|
|
|
//: About RSS Guard dialog title.
|
|
setWindowTitle(tr("About %1").arg(APP_NAME));
|
|
|
|
#if !defined(Q_OS_WIN)
|
|
MessageBox::iconify(m_ui->m_buttonBox);
|
|
#endif
|
|
|
|
m_ui->m_lblIcon->setPixmap(QPixmap(APP_ICON_PATH));
|
|
|
|
// Load information from embedded text files.
|
|
QTextStream text_stream;
|
|
QFile file;
|
|
text_stream.setDevice(&file);
|
|
|
|
file.setFileName(APP_INFO_PATH + "/COPYING_GNU_GPL_HTML");
|
|
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
m_ui->m_txtLicenseGnu->setText(text_stream.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(text_stream.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(text_stream.readAll());
|
|
}
|
|
else {
|
|
m_ui->m_txtChangelog->setText(tr("Changelog not found."));
|
|
}
|
|
file.close();
|
|
|
|
// Set other informative texts.
|
|
m_ui->m_lblDesc->setText(tr("<b>%8</b><br>"
|
|
"<b>Version:</b> %1 (build on %2 with CMake %3)<br>"
|
|
"<b>Revision:</b> %4<br>"
|
|
"<b>Build date:</b> %5<br>"
|
|
"<b>Qt:</b> %6 (compiled against %7)<br>").arg(qApp->applicationVersion(),
|
|
CMAKE_SYSTEM,
|
|
CMAKE_VERSION,
|
|
APP_REVISION,
|
|
TextFactory::parseDateTime(QString("%1 %2").arg(__DATE__,
|
|
__TIME__)).toString(Qt::DefaultLocaleShortDate),
|
|
qVersion(),
|
|
QT_VERSION_STR,
|
|
APP_NAME));
|
|
|
|
m_ui->m_txtInfo->setText(tr("<body>%5 is a (very) tiny feed reader."
|
|
"<br><br>This software is distributed under the terms of GNU General Public License, version 3."
|
|
"<br><br>Contacts:"
|
|
"<ul><li><a href=\"mailto://%1\">%1</a> ~email</li>"
|
|
"<li><a href=\"%2\">%2</a> ~website</li></ul>"
|
|
"You can obtain source code for %5 from its website."
|
|
"<br><br><br>Copyright (C) 2011-%3 %4</body>").arg(APP_EMAIL,
|
|
APP_URL,
|
|
QString::number(QDateTime::currentDateTime().date().year()),
|
|
APP_AUTHOR,
|
|
APP_NAME));
|
|
}
|
|
|
|
FormAbout::~FormAbout() {
|
|
qDebug("Destroying FormAbout instance.");
|
|
delete m_ui;
|
|
}
|