2017-11-04 18:59:27 +01:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-03-27 13:11:04 +02:00
|
|
|
#include <QIcon>
|
2017-11-04 18:59:27 +01:00
|
|
|
#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);
|
2018-03-27 13:11:04 +02:00
|
|
|
ui->labelLogo->setPixmap(QIcon::fromTheme("citra").pixmap(200));
|
2017-11-04 18:59:27 +01:00
|
|
|
ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg(
|
|
|
|
Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutDialog::~AboutDialog() {
|
|
|
|
delete ui;
|
|
|
|
}
|