2017-11-04 23:29:27 +05:30
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-03-27 16:41:04 +05:30
|
|
|
#include <QIcon>
|
2017-11-04 23:29:27 +05:30
|
|
|
#include "aboutdialog.h"
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "ui_aboutdialog.h"
|
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget* parent)
|
|
|
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint),
|
|
|
|
ui(new Ui::AboutDialog) {
|
|
|
|
ui->setupUi(this);
|
2019-08-10 14:31:18 +05:30
|
|
|
ui->labelLogo->setPixmap(QIcon::fromTheme(QStringLiteral("citra")).pixmap(200));
|
|
|
|
ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg(
|
|
|
|
QString::fromUtf8(Common::g_build_fullname), QString::fromUtf8(Common::g_scm_branch),
|
|
|
|
QString::fromUtf8(Common::g_scm_desc), QString::fromUtf8(Common::g_build_date).left(10)));
|
2017-11-04 23:29:27 +05:30
|
|
|
}
|
|
|
|
|
2018-08-24 20:44:09 +05:30
|
|
|
AboutDialog::~AboutDialog() = default;
|