b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
48 lines
891 B
C
48 lines
891 B
C
#pragma once
|
|
#include <furi.h>
|
|
#include <gui/gui.h>
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
#include <notification/notification_messages.h>
|
|
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/modules/dialog_ex.h>
|
|
#include <gui/modules/popup.h>
|
|
|
|
#include <storage/storage.h>
|
|
#include <storage/storage_sd_api.h>
|
|
|
|
#include "scenes/storage_settings_scene.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
// records
|
|
Gui* gui;
|
|
NotificationApp* notification;
|
|
Storage* fs_api;
|
|
|
|
// view managment
|
|
SceneManager* scene_manager;
|
|
ViewDispatcher* view_dispatcher;
|
|
|
|
// view modules
|
|
Submenu* submenu;
|
|
DialogEx* dialog_ex;
|
|
|
|
// text
|
|
string_t text_string;
|
|
} StorageSettings;
|
|
|
|
typedef enum {
|
|
StorageSettingsViewSubmenu,
|
|
StorageSettingsViewDialogEx,
|
|
} StorageSettingsView;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|