mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
28 lines
703 B
C++
28 lines
703 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinQt/Config/ConfigControls/ConfigControl.h"
|
|
#include "DolphinQt/Config/ToolTipControls/ToolTipCheckBox.h"
|
|
|
|
#include "Common/Config/ConfigInfo.h"
|
|
|
|
class ConfigBool final : public ConfigControl<ToolTipCheckBox>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ConfigBool(const QString& label, const Config::Info<bool>& setting, bool reverse = false);
|
|
ConfigBool(const QString& label, const Config::Info<bool>& setting, Config::Layer* layer,
|
|
bool reverse = false);
|
|
|
|
protected:
|
|
void OnConfigChanged() override;
|
|
|
|
private:
|
|
void Update();
|
|
|
|
const Config::Info<bool> m_setting;
|
|
bool m_reverse;
|
|
};
|