You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- using namespace rack;
- #include "rack.hpp"
- // #include "ui.hpp"
-
- namespace rack_plugin_Alikins {
-
- // TODO/FIXME: This is more or less adhoc TextField mixed with QuantityWidget
- // just inherit from both?
- struct ParamFloatField : TextField
- {
- Module *module;
- float hovered_value;
-
- ParamFloatField(Module *module);
-
- void setValue(float value);
- void onChange(EventChange &e) override;
-
- };
-
- } // namespace rack_plugin_Alikins
-
- using namespace rack_plugin_Alikins;
|