#pragma once #include "tt_app.h" #include "tt_hal_radio.h" #include 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: ~RadioSet(); void onShow(AppHandle context, lv_obj_t* parent); };