FastLED 3.9.15
|
#include <ui.h>
Classes | |
struct | Listener |
Public Types | |
using | Super = UINumberFieldImpl |
Public Member Functions | |
UINumberField (const char *name, double value, double min=0, double max=100) | |
~UINumberField () | |
void | clearCallbacks () |
FL_NO_COPY (UINumberField) | |
void | onChanged (function< void(double)> callback) |
void | onChangedEx (function< void(UINumberField &, double)> callback) |
operator double () const | |
operator int () const | |
UINumberField & | operator= (double value) |
UINumberField & | operator= (int value) |
void | setValue (double value) |
double | value () const |
![]() | |
UINumberFieldImpl (const char *name, double value, double min=0, double max=100) | |
~UINumberFieldImpl () | |
operator double () const | |
operator int () const | |
UINumberFieldImpl & | operator= (double value) |
UINumberFieldImpl & | operator= (int value) |
void | setValue (double value) |
double | value () const |
Private Member Functions | |
Super & | impl () |
Private Attributes | |
FunctionList< UINumberField &, double > | mCallbacks |
double | mLastFrameValue = 0 |
bool | mLastFrameValueValid = false |
Listener | mListener |