oveRTOS C++ API
C++20 RAII wrappers for the oveRTOS C API
Loading...
Searching...
No Matches
Classes | Functions
LVGL Layout, Focus & Screen

Layout helpers (vbox/hbox), focus groups, and screen helpers. More...

Classes

class  ove::lvgl::Group
 RAII wrapper for an LVGL input focus group (lv_group_t). More...
 
class  ove::lvgl::Screen
 Top-level LVGL screen — a display root without a parent. More...
 

Functions

Box ove::lvgl::vbox (ObjectView parent)
 Creates a vertical flex container (LV_FLEX_FLOW_COLUMN) sized to its content.
 
Box ove::lvgl::hbox (ObjectView parent)
 Creates a horizontal flex container (LV_FLEX_FLOW_ROW) sized to its content.
 

Detailed Description

Layout helpers (vbox/hbox), focus groups, and screen helpers.

Function Documentation

◆ vbox()

Box ove::lvgl::vbox ( ObjectView  parent)
inline

Creates a vertical flex container (LV_FLEX_FLOW_COLUMN) sized to its content.

Parameters
[in]parentThe parent ObjectView.
Returns
A Box configured as a vertical flex container.

◆ hbox()

Box ove::lvgl::hbox ( ObjectView  parent)
inline

Creates a horizontal flex container (LV_FLEX_FLOW_ROW) sized to its content.

Parameters
[in]parentThe parent ObjectView.
Returns
A Box configured as a horizontal flex container.