openMSX
FloatSetting.cc
Go to the documentation of this file.
1#include "FloatSetting.hh"
2
3namespace openmsx {
4
6 std::string_view name_, static_string_view description_,
7 double initialValue,
8 double minValue_, double maxValue_)
9 : Setting(commandController_, name_, description_,
10 TclObject(initialValue), SAVE)
11 , minValue(minValue_)
12 , maxValue(maxValue_)
13{
14 auto& interp = getInterpreter();
15 setChecker([this, &interp](TclObject& newValue) {
16 double val = newValue.getDouble(interp); // may throw
17 newValue = std::clamp(val, minValue, maxValue);
18 });
19 init();
20}
21
22std::string_view FloatSetting::getTypeString() const
23{
24 return "float";
25}
26
28{
29 result.addListElement(makeTclList(minValue, maxValue));
30}
31
33{
35}
36
38{
39 setDouble(double(f));
40}
41
42} // namespace openmsx
FloatSetting(CommandController &commandController, std::string_view name, static_string_view description, double initialValue, double minValue, double maxValue)
void additionalInfo(TclObject &result) const override
Helper method for info().
void setDouble(double d)
void setFloat(float f)
std::string_view getTypeString() const override
Returns a string describing the setting type (integer, string, ..) Could be used in a GUI to pick an ...
void setChecker(std::function< void(TclObject &)> checkFunc_)
Set value-check-callback.
Definition Setting.hh:145
Interpreter & getInterpreter() const
Definition Setting.cc:139
void setValue(const TclObject &newValue) final
Change the value of this setting to the given value.
Definition Setting.cc:81
double getDouble(Interpreter &interp) const
Definition TclObject.cc:122
void addListElement(const T &t)
Definition TclObject.hh:131
static_string_view
This file implemented 3 utility functions:
Definition Autofire.cc:11
TclObject makeTclList(Args &&... args)
Definition TclObject.hh:293