ItemSubMenu

Functions

inline MenuItem *ITEM_SUBMENU(const char *text, MenuScreen *&screen)
class ItemSubMenu : public BaseItemZeroWidget
#include <ItemSubMenu.h>

Represents a submenu item in a menu.

This class extends the MenuItem class and provides functionality to navigate to a different screen when the item is selected.

Public Functions

inline ItemSubMenu(const char *text, MenuScreen *&screen)
Parameters:
  • text – text to display for the item

  • screen – the next screen to show

inline void setScreen(MenuScreen *&screen)

Set the screen to navigate to when the item is selected. This method can be used to change the screen dynamically at runtime. This is useful when the screen to navigate to is not known at compile time.

Parameters:

screen – the screen to navigate to

Protected Functions

inline virtual void handleCommit(LcdMenu *menu) override

Private Members

MenuScreen *&screen