2017-06-15 23:42:12 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "DolphinQt2/Config/Graphics/GraphicsChoice.h"
|
|
|
|
|
2017-07-09 23:17:36 +00:00
|
|
|
#include "Common/Config/Config.h"
|
2017-09-20 11:34:24 +00:00
|
|
|
#include "DolphinQt2/Settings.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
|
|
|
GraphicsChoice::GraphicsChoice(const QStringList& options, const Config::ConfigInfo<int>& setting)
|
|
|
|
: m_setting(setting)
|
|
|
|
{
|
|
|
|
addItems(options);
|
|
|
|
connect(this, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
&GraphicsChoice::Update);
|
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
|
|
|
|
2017-09-20 16:33:52 +00:00
|
|
|
connect(&Settings::Instance(), &Settings::ConfigChanged, [this] {
|
2017-09-20 16:12:03 +00:00
|
|
|
QFont bf = font();
|
|
|
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
|
|
|
setFont(bf);
|
2018-04-29 10:17:39 +00:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
2017-09-20 11:34:24 +00:00
|
|
|
});
|
2017-06-15 23:42:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GraphicsChoice::Update(int choice)
|
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, choice);
|
|
|
|
}
|