mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
32 lines
688 B
C++
32 lines
688 B
C++
|
#ifndef CSM_PREFS_BOOLSETTING_H
|
||
|
#define CSM_PREFS_BOOLSETTING_H
|
||
|
|
||
|
#include "setting.hpp"
|
||
|
|
||
|
namespace CSMPrefs
|
||
|
{
|
||
|
class BoolSetting : public Setting
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
std::string mTooltip;
|
||
|
bool mDefault;
|
||
|
|
||
|
public:
|
||
|
|
||
|
BoolSetting (Category *parent, Settings::Manager *values,
|
||
|
const std::string& key, const std::string& label, bool default_);
|
||
|
|
||
|
BoolSetting& setTooltip (const std::string& tooltip);
|
||
|
|
||
|
/// Return label, input widget.
|
||
|
virtual std::pair<QWidget *, QWidget *> makeWidgets (QWidget *parent);
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void valueChanged (int value);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|