12 bool _changed =
false;
18 GuiSlider(std::string name,
float val = 0.5,
float min = 0.0,
float max = 0.1,
float step = 0.001);
19 int setup(std::string name,
float val,
float min,
float max,
float step);
28 float getStep() {
return _step; };
29 std::string& getName() {
return _name; };
30 std::wstring& getNameW() {
return _wname; }
31 float getMin() {
return _range[0]; };
32 float getMax() {
return _range[1]; };
33 float getIndex() {
return _index; };
34 bool hasChanged() {
return _changed; };
37 int setValue(
float val);
38 int setStep(
float step);
39 int setRange(
float min,
float max);
40 int setIndex(
int index) {
return (index < 0) ? -1 : _index=index; };
42 JSONObject getParametersAsJSON()
const;
Definition: GuiSlider.h:6
static float min(float x, float y)
Returns the maximum of two numbers.
Definition: Utilities.h:92
static float max(float x, float y)
Returns the minimum of two numbers.
Definition: Utilities.h:88