mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Renamed `tt_app_context_*` to tt_app_*` - Renamed `AppContextHandle` to `AppHandle` - Created `tt_app_start()` and `tt_app_start_with_bundle()`
18 lines
389 B
C
18 lines
389 B
C
#pragma once
|
|
|
|
#include "tt_app.h"
|
|
#include <lvgl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Create a toolbar widget that shows the app name as title */
|
|
lv_obj_t* tt_lvgl_toolbar_create(lv_obj_t* parent, AppHandle context);
|
|
|
|
/** Create a toolbar widget with the provided title*/
|
|
lv_obj_t* tt_lvgl_toolbar_create_simple(lv_obj_t* parent, const char* title);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |