openMSX
FloatSetting.hh
Go to the documentation of this file.
1#ifndef FLOATSETTING_HH
2#define FLOATSETTING_HH
3
4#include "Setting.hh"
5
6namespace openmsx {
7
10class FloatSetting final : public Setting
11{
12public:
13 FloatSetting(CommandController& commandController,
14 std::string_view name, static_string_view description,
15 double initialValue, double minValue, double maxValue);
16
17 [[nodiscard]] std::string_view getTypeString() const override;
18 void additionalInfo(TclObject& result) const override;
19
20 [[nodiscard]] double getDouble() const noexcept { return getValue().getDouble(getInterpreter()); }
21 [[nodiscard]] float getFloat() const noexcept { return getValue().getFloat (getInterpreter()); }
22 void setDouble (double d);
23
24private:
25 const double minValue;
26 const double maxValue;
27};
28
29} // namespace openmsx
30
31#endif
A Setting with a floating point value.
Definition: FloatSetting.hh:11
double getDouble() const noexcept
Definition: FloatSetting.hh:20
FloatSetting(CommandController &commandController, std::string_view name, static_string_view description, double initialValue, double minValue, double maxValue)
Definition: FloatSetting.cc:5
void additionalInfo(TclObject &result) const override
Helper method for info().
Definition: FloatSetting.cc:27
void setDouble(double d)
Definition: FloatSetting.cc:32
std::string_view getTypeString() const override
Returns a string describing the setting type (integer, string, ..) Could be used in a GUI to pick an ...
Definition: FloatSetting.cc:22
float getFloat() const noexcept
Definition: FloatSetting.hh:21
Interpreter & getInterpreter() const
Definition: Setting.cc:148
const TclObject & getValue() const final
Gets the current value of this setting as a TclObject.
Definition: Setting.hh:142
double getDouble(Interpreter &interp) const
Definition: TclObject.cc:110
float getFloat(Interpreter &interp) const
Definition: TclObject.cc:102
static_string_view
This file implemented 3 utility functions:
Definition: Autofire.cc:9