mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
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>
33 lines
913 B
C
33 lines
913 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include "desktop_events.h"
|
|
|
|
#define HINT_TIMEOUT 2
|
|
|
|
typedef struct DesktopLockMenuView DesktopLockMenuView;
|
|
|
|
typedef void (*DesktopLockMenuViewCallback)(DesktopEvent event, void* context);
|
|
|
|
struct DesktopLockMenuView {
|
|
View* view;
|
|
DesktopLockMenuViewCallback callback;
|
|
void* context;
|
|
};
|
|
|
|
typedef struct {
|
|
uint8_t idx;
|
|
uint8_t hint_timeout;
|
|
bool pin_set;
|
|
} DesktopLockMenuViewModel;
|
|
|
|
void desktop_lock_menu_set_callback(
|
|
DesktopLockMenuView* lock_menu,
|
|
DesktopLockMenuViewCallback callback,
|
|
void* context);
|
|
|
|
View* desktop_lock_menu_get_view(DesktopLockMenuView* lock_menu);
|
|
void desktop_lock_menu_pin_set(DesktopLockMenuView* lock_menu, bool pin_is_set);
|
|
void desktop_lock_menu_set_idx(DesktopLockMenuView* lock_menu, uint8_t idx);
|
|
DesktopLockMenuView* desktop_lock_menu_alloc();
|
|
void desktop_lock_menu_free(DesktopLockMenuView* lock_menu);
|