You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
703 B
C++
32 lines
703 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,
|
|
QMutex *mutex, 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
|