72c9b2b113
* **New Features** * Added Material Design symbol fonts and LVGL font aliases for launcher, status bar, and shared UI icons. * **Style** * Migrated app icons across the UI to the new symbol font system. * Updated launcher button sizing, font styling, recoloring and icon text color for consistency. * Default text/icon font macros set for consistent sizing across the UI. * **Documentation** * Updated third‑party notices to include Material Design Icons links.
71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
#include <Tactility/app/App.h>
|
|
#include <Tactility/app/AppManifest.h>
|
|
#include <Tactility/hal/usb/Usb.h>
|
|
#include <Tactility/lvgl/Toolbar.h>
|
|
|
|
#include <lvgl.h>
|
|
|
|
#include <tactility/lvgl_symbols_shared.h>
|
|
|
|
#define TAG "usb_settings"
|
|
|
|
namespace tt::app::usbsettings {
|
|
|
|
static void onRebootMassStorageSdmmc(lv_event_t* event) {
|
|
hal::usb::rebootIntoMassStorageSdmmc();
|
|
}
|
|
|
|
// Flash reboot handler
|
|
static void onRebootMassStorageFlash(lv_event_t* event) {
|
|
hal::usb::rebootIntoMassStorageFlash();
|
|
}
|
|
|
|
class UsbSettingsApp : public App {
|
|
|
|
void onShow(AppContext& app, lv_obj_t* parent) override {
|
|
auto* toolbar = lvgl::toolbar_create(parent, app);
|
|
lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);
|
|
|
|
// Create a wrapper container for buttons
|
|
auto* wrapper = lv_obj_create(parent);
|
|
lv_obj_set_flex_flow(wrapper, LV_FLEX_FLOW_COLUMN);
|
|
lv_obj_set_flex_align(wrapper, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
|
|
lv_obj_set_size(wrapper, lv_pct(100), LV_SIZE_CONTENT);
|
|
lv_obj_align(wrapper, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
bool hasSd = hal::usb::canRebootIntoMassStorageSdmmc();
|
|
bool hasFlash = hal::usb::canRebootIntoMassStorageFlash();
|
|
|
|
if (hasSd) {
|
|
auto* button_sd = lv_button_create(wrapper);
|
|
auto* label_sd = lv_label_create(button_sd);
|
|
lv_label_set_text(label_sd, "Reboot as USB storage (SD)");
|
|
lv_obj_add_event_cb(button_sd, onRebootMassStorageSdmmc, LV_EVENT_SHORT_CLICKED, nullptr);
|
|
}
|
|
|
|
if (hasFlash) {
|
|
auto* button_flash = lv_button_create(wrapper);
|
|
auto* label_flash = lv_label_create(button_flash);
|
|
lv_label_set_text(label_flash, "Reboot as USB storage (Flash)");
|
|
lv_obj_add_event_cb(button_flash, onRebootMassStorageFlash, LV_EVENT_SHORT_CLICKED, nullptr);
|
|
}
|
|
|
|
if (!hasSd && !hasFlash) {
|
|
bool supported = hal::usb::isSupported();
|
|
const char* message = supported ? "USB storage not available" : "USB driver not supported";
|
|
auto* label = lv_label_create(wrapper);
|
|
lv_label_set_text(label, message);
|
|
}
|
|
}
|
|
};
|
|
|
|
extern const AppManifest manifest = {
|
|
.appId = "UsbSettings",
|
|
.appName = "USB",
|
|
.appIcon = LVGL_SYMBOL_USB,
|
|
.appCategory = Category::Settings,
|
|
.createApp = create<UsbSettingsApp>
|
|
};
|
|
|
|
} // namespace
|