/******************************************************************************* # # Copyright (C) 2010-2013 Matteo Paonessa # # This file is part of the Caesium distribution. # # Caesium 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 2 # of the License, or (at your option) any later version. # # Caesium 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 Caesium; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA. # # Author: Matteo Paonessa # # ******************************************************************************/ #include "about.h" #include "ui_about.h" #include "global.h" AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog) { ui->setupUi(this); ui->infoTextEdit->setHtml("" + tr("Name:") + " Caesium
" + tr("Version:") + " " + version_string + "
" + tr("Author:") + " Matteo Paonessa
eMail: matteo.paonessa@gmail.com
" + tr("Website: ") + "http://caesium.sourceforge.net"); ui->thanksTextBrowser->setHtml("

" + tr("Translations:") + "

" + "" + "

Pyexiv2 - http://tilloy.net/dev/pyexiv2/
" + tr("For Metatag manipulation") + "

Tango Desktop Project - http://tango.freedesktop.org/
" + "Elementary Icons - http://danrabbit.deviantart.com/art/elementary-Icons-65437279
" + tr("Base of the icon set")); } AboutDialog::~AboutDialog() { delete ui; } void AboutDialog::on_closeButton_clicked() { this->close(); }