23 lines
401 B
C++
23 lines
401 B
C++
#pragma once
|
|
|
|
#include "tt_app.h"
|
|
|
|
#include <lvgl.h>
|
|
|
|
class TermView;
|
|
class SettingsView;
|
|
|
|
class RadioSet {
|
|
lv_obj_t* mainView = nullptr;
|
|
lv_obj_t* uiDropDownMenu = nullptr;
|
|
lv_obj_t* progressBar = nullptr;
|
|
lv_obj_t* progressText = nullptr;
|
|
|
|
TermView *termView = nullptr;
|
|
SettingsView *settingsView = nullptr;
|
|
|
|
public:
|
|
|
|
void onShow(AppHandle context, lv_obj_t* parent);
|
|
};
|