Add Dark theme, Icon theming

configure_general.ui: Add UI Option for Themes

config.cpp: Save Theme Settings
This commit is contained in:
N00byKing
2018-03-30 11:50:10 +02:00
parent cf643df792
commit 78e974ba68
57 changed files with 1424 additions and 5 deletions

View File

@ -2,12 +2,14 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <QIcon>
#include "common/scm_rev.h"
#include "ui_aboutdialog.h"
#include "yuzu/about_dialog.h"
AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) {
ui->setupUi(this);
ui->labelLogo->setPixmap(QIcon::fromTheme("yuzu").pixmap(200));
ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg(
Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
}