mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
aa8a369e2a
* Rpc: add desktop service * Protobuf: sync to latest release. Desktop: rewrite PIN locking, finalize locking API * Desktop: cleanup code a little bit
34 lines
1 KiB
C
34 lines
1 KiB
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;
|
|
bool dummy_mode;
|
|
bool stealth_mode;
|
|
} 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_set_dummy_mode_state(DesktopLockMenuView* lock_menu, bool dummy_mode);
|
|
void desktop_lock_menu_set_stealth_mode_state(DesktopLockMenuView* lock_menu, bool stealth_mode);
|
|
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);
|