61aaed8abb
* Assets: update desktop animation frame rate and cleanup. * Power: update ViewPort only if changed. * Gui: tie IconAnimation with View, new update event generation scheme. Desktop: update IconAnimation usage. Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
44 lines
985 B
C
44 lines
985 B
C
#pragma once
|
|
|
|
#include <gui/gui_i.h>
|
|
#include <gui/view.h>
|
|
#include <gui/canvas.h>
|
|
#include <gui/elements.h>
|
|
#include <furi.h>
|
|
|
|
typedef enum {
|
|
DesktopMainEventOpenMenu,
|
|
DesktopMainEventOpenLockMenu,
|
|
DesktopMainEventOpenDebug,
|
|
DesktopMainEventUnlocked,
|
|
DesktopMainEventOpenArchive,
|
|
DesktopMainEventOpenFavorite,
|
|
} DesktopMainEvent;
|
|
|
|
typedef struct DesktopMainView DesktopMainView;
|
|
|
|
typedef void (*DesktopMainViewCallback)(DesktopMainEvent event, void* context);
|
|
|
|
struct DesktopMainView {
|
|
View* view;
|
|
DesktopMainViewCallback callback;
|
|
void* context;
|
|
};
|
|
|
|
typedef struct {
|
|
IconAnimation* animation;
|
|
uint8_t scene_num;
|
|
uint32_t hint_expire_at;
|
|
} DesktopMainViewModel;
|
|
|
|
void desktop_main_set_callback(
|
|
DesktopMainView* main_view,
|
|
DesktopMainViewCallback callback,
|
|
void* context);
|
|
|
|
View* desktop_main_get_view(DesktopMainView* main_view);
|
|
|
|
DesktopMainView* desktop_main_alloc();
|
|
|
|
void desktop_main_free(DesktopMainView* main_view);
|