mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
120 lines
4.2 KiB
C
120 lines
4.2 KiB
C
#include <gui/gui_i.h>
|
|
#include <gui/view.h>
|
|
#include <gui/elements.h>
|
|
#include <gui/canvas.h>
|
|
#include <furi.h>
|
|
#include <input/input.h>
|
|
#include <dolphin/dolphin.h>
|
|
|
|
#include "../desktop_i.h"
|
|
#include "desktop_view_main.h"
|
|
|
|
struct DesktopMainView {
|
|
View* view;
|
|
DesktopMainViewCallback callback;
|
|
void* context;
|
|
FuriTimer* poweroff_timer;
|
|
bool dummy_mode;
|
|
};
|
|
|
|
#define DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT 5000
|
|
|
|
static void desktop_main_poweroff_timer_callback(void* context) {
|
|
DesktopMainView* main_view = context;
|
|
main_view->callback(DesktopMainEventOpenPowerOff, main_view->context);
|
|
}
|
|
|
|
void desktop_main_set_callback(
|
|
DesktopMainView* main_view,
|
|
DesktopMainViewCallback callback,
|
|
void* context) {
|
|
furi_assert(main_view);
|
|
furi_assert(callback);
|
|
main_view->callback = callback;
|
|
main_view->context = context;
|
|
}
|
|
|
|
View* desktop_main_get_view(DesktopMainView* main_view) {
|
|
furi_assert(main_view);
|
|
return main_view->view;
|
|
}
|
|
|
|
void desktop_main_set_dummy_mode_state(DesktopMainView* main_view, bool dummy_mode) {
|
|
furi_assert(main_view);
|
|
main_view->dummy_mode = dummy_mode;
|
|
}
|
|
|
|
bool desktop_main_input_callback(InputEvent* event, void* context) {
|
|
furi_assert(event);
|
|
furi_assert(context);
|
|
|
|
DesktopMainView* main_view = context;
|
|
|
|
if(main_view->dummy_mode == false) {
|
|
if(event->type == InputTypeShort) {
|
|
if(event->key == InputKeyOk) {
|
|
main_view->callback(DesktopMainEventOpenMenu, main_view->context);
|
|
} else if(event->key == InputKeyUp) {
|
|
main_view->callback(DesktopMainEventOpenLockMenu, main_view->context);
|
|
} else if(event->key == InputKeyDown) {
|
|
main_view->callback(DesktopMainEventOpenArchive, main_view->context);
|
|
} else if(event->key == InputKeyLeft) {
|
|
main_view->callback(DesktopMainEventOpenFavoriteLeftShort, main_view->context);
|
|
}
|
|
// Right key short is handled by animation manager
|
|
} else if(event->type == InputTypeLong) {
|
|
if(event->key == InputKeyUp) {
|
|
main_view->callback(DesktopMainEventLock, main_view->context);
|
|
} else if(event->key == InputKeyDown) {
|
|
main_view->callback(DesktopMainEventOpenDebug, main_view->context);
|
|
} else if(event->key == InputKeyLeft) {
|
|
main_view->callback(DesktopMainEventOpenFavoriteLeftLong, main_view->context);
|
|
} else if(event->key == InputKeyRight) {
|
|
main_view->callback(DesktopMainEventOpenFavoriteRightLong, main_view->context);
|
|
}
|
|
}
|
|
} else {
|
|
if(event->type == InputTypeShort) {
|
|
if(event->key == InputKeyOk) {
|
|
main_view->callback(DesktopDummyEventOpenOk, main_view->context);
|
|
} else if(event->key == InputKeyUp) {
|
|
main_view->callback(DesktopMainEventOpenLockMenu, main_view->context);
|
|
} else if(event->key == InputKeyDown) {
|
|
main_view->callback(DesktopDummyEventOpenDown, main_view->context);
|
|
} else if(event->key == InputKeyLeft) {
|
|
main_view->callback(DesktopDummyEventOpenLeft, main_view->context);
|
|
}
|
|
// Right key short is handled by animation manager
|
|
}
|
|
}
|
|
|
|
if(event->key == InputKeyBack) {
|
|
if(event->type == InputTypePress) {
|
|
furi_timer_start(main_view->poweroff_timer, DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT);
|
|
} else if(event->type == InputTypeRelease) {
|
|
furi_timer_stop(main_view->poweroff_timer);
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
DesktopMainView* desktop_main_alloc(void) {
|
|
DesktopMainView* main_view = malloc(sizeof(DesktopMainView));
|
|
|
|
main_view->view = view_alloc();
|
|
view_set_context(main_view->view, main_view);
|
|
view_set_input_callback(main_view->view, desktop_main_input_callback);
|
|
|
|
main_view->poweroff_timer =
|
|
furi_timer_alloc(desktop_main_poweroff_timer_callback, FuriTimerTypeOnce, main_view);
|
|
|
|
return main_view;
|
|
}
|
|
|
|
void desktop_main_free(DesktopMainView* main_view) {
|
|
furi_assert(main_view);
|
|
view_free(main_view->view);
|
|
furi_timer_free(main_view->poweroff_timer);
|
|
free(main_view);
|
|
}
|