BaseWidgetValue

template<typename T>
struct Ref
#include <BaseWidgetValue.h>

A wrapper for reference values that provides value semantics.

This struct allows widgets to work with references while maintaining a consistent interface with value types.

Template Parameters:

T – The type being referenced (must be a non-reference type)

Public Functions

inline Ref(T &value)
inline bool operator==(T const &other) const noexcept
inline bool operator!=(T const &other) const noexcept
inline bool operator>(T const &other) const noexcept
inline bool operator<(T const &other) const noexcept
inline bool operator>=(T const &other) const noexcept
inline bool operator<=(T const &other) const noexcept
inline Ref<T> operator++(int) noexcept
inline Ref<T> operator--(int) noexcept
inline Ref<T> operator+(T other) noexcept
inline Ref<T> operator-(T other) noexcept
inline Ref<T> &operator=(T other) noexcept
inline Ref<T> &operator=(Ref<T> other) noexcept
inline operator T() const noexcept

Public Members

T &value
template<typename T>
class BaseWidgetValue : public BaseWidget
#include <BaseWidgetValue.h>

Base class for widget holding some value.

See also

BaseWidget

Template Parameters:

T – The type of value this widget holds

Subclassed by WidgetBool< V >, WidgetList< T, V >, WidgetRange< T, V >

Public Functions

inline BaseWidgetValue(const T &value, const char *format, const uint8_t cursorOffset = 0, void (*callback)(const T&) = nullptr)
inline const T &getValue() const

Retrieve current value.

inline virtual void setValue(const T &newValue)

Sets the value.

Note

You need to call LcdMenu::refresh after this method to see the changes.

Parameters:

newValue – The value to set.

~BaseWidgetValue() override = default

Protected Functions

inline virtual uint8_t draw(char *buffer, const uint8_t start) override

Draw the widget into specified buffer.

Parameters:
  • buffer – the buffer where widget will be drawn

  • start – the index where to start drawing in the buffer

virtual bool process(LcdMenu *menu, unsigned char command) override = 0

Process a command for this widget.

Parameters:
  • menu – Pointer to the menu instance

  • command – The command to process

Returns:

true if the command was handled, false otherwise

inline void handleChange()

Protected Attributes

T value
const char *format = nullptr
void (*callback)(const T&) = nullptr