Qt/GeneralPane: Disable certain options while emulation is running

This commit is contained in:
spycrab
2018-04-21 22:09:46 +02:00
parent 9dcc8131df
commit b2e5f1d85f
2 changed files with 21 additions and 0 deletions

View File

@ -14,6 +14,11 @@ class QRadioButton;
class QSlider;
class QVBoxLayout;
namespace Core
{
enum class State;
}
class GeneralPane final : public QWidget
{
Q_OBJECT
@ -29,6 +34,7 @@ private:
void LoadConfig();
void OnSaveConfig();
void OnEmulationStateChanged(Core::State state);
// Widgets
QVBoxLayout* m_main_layout;