Flipper Zero Firmware
Loading...
Searching...
No Matches
desktop_view_debug.h
1#pragma once
2
3#include <stdint.h>
4#include <gui/view.h>
5#include "desktop_events.h"
6
8
9typedef void (*DesktopDebugViewCallback)(DesktopEvent event, void* context);
10
12 View* view;
13 FuriTimer* timer;
14 DesktopDebugViewCallback callback;
15 void* context;
16};
17
18void desktop_debug_set_callback(
19 DesktopDebugView* debug_view,
20 DesktopDebugViewCallback callback,
21 void* context);
22
23View* desktop_debug_get_view(DesktopDebugView* debug_view);
24
25DesktopDebugView* desktop_debug_alloc(void);
26
27void desktop_debug_free(DesktopDebugView* debug_view);
Definition desktop_view_debug.h:11
Definition timer.c:9
Definition view_i.h:16
GUI: View API.