mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
40 lines
865 B
C++
40 lines
865 B
C++
|
#ifndef CSM_PREFS_INTSETTING_H
|
||
|
#define CSM_PREFS_INTSETTING_H
|
||
|
|
||
|
#include "setting.hpp"
|
||
|
|
||
|
namespace CSMPrefs
|
||
|
{
|
||
|
class IntSetting : public Setting
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
int mMin;
|
||
|
int mMax;
|
||
|
std::string mTooltip;
|
||
|
int mDefault;
|
||
|
|
||
|
public:
|
||
|
|
||
|
IntSetting (Category *parent, Settings::Manager *values,
|
||
|
const std::string& key, const std::string& label, int default_);
|
||
|
|
||
|
IntSetting& setRange (int min, int max);
|
||
|
|
||
|
IntSetting& setMin (int min);
|
||
|
|
||
|
IntSetting& setMax (int max);
|
||
|
|
||
|
IntSetting& setTooltip (const std::string& tooltip);
|
||
|
|
||
|
/// Return label, input widget.
|
||
|
virtual std::pair<QWidget *, QWidget *> makeWidgets (QWidget *parent);
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void valueChanged (int value);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|