2017-10-01 19:09:42 +00:00
|
|
|
#include "AboutDialog.h"
|
|
|
|
#include "ui_AboutDialog.h"
|
2017-04-05 02:12:00 +00:00
|
|
|
#include "r_version.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::AboutDialog)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-03-31 00:51:14 +00:00
|
|
|
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
2017-09-25 12:55:41 +00:00
|
|
|
ui->label->setText(tr("<h1>Cutter</h1>"
|
2017-09-27 20:23:18 +00:00
|
|
|
"Version 1.0 alpha<br />"
|
|
|
|
"Using r2-" R2_GITTAP
|
|
|
|
"<h2>License</h2>"
|
|
|
|
"This Software is released under the GNU General Public License v3.0"
|
|
|
|
"<h2>Authors</h2>"
|
|
|
|
"Hugo Teso <hugo.teso@gmail.org>\nSoon to be thousands more!"));
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
AboutDialog::~AboutDialog() {}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
void AboutDialog::on_buttonBox_rejected()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|