// Copyright 2017 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #include "DolphinQt2/Config/Graphics/GraphicsChoice.h" #include "Common/Config/Config.h" #include "DolphinQt2/Settings.h" GraphicsChoice::GraphicsChoice(const QStringList& options, const Config::ConfigInfo& setting) : m_setting(setting) { addItems(options); connect(this, static_cast(&QComboBox::currentIndexChanged), this, &GraphicsChoice::Update); setCurrentIndex(Config::Get(m_setting)); connect(&Settings::Instance(), &Settings::EmulationStateChanged, [this]() { if (Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base) { QFont bf = font(); bf.setBold(true); setFont(bf); } }); } void GraphicsChoice::Update(int choice) { Config::SetBaseOrCurrent(m_setting, choice); }