Flipper Zero Firmware
Loading...
Searching...
No Matches
desktop_view_slideshow.h
1#pragma once
2
3#include <gui/view.h>
4
5#include "desktop_events.h"
6#include "../helpers/slideshow_filename.h"
7#include <storage/storage.h>
8
9#define SLIDESHOW_FS_PATH INT_PATH(SLIDESHOW_FILE_NAME)
10
12
13typedef void (*DesktopSlideshowViewCallback)(DesktopEvent event, void* context);
14
15DesktopSlideshowView* desktop_view_slideshow_alloc(void);
16
17void desktop_view_slideshow_free(DesktopSlideshowView* main_view);
18
19View* desktop_view_slideshow_get_view(DesktopSlideshowView* main_view);
20
21void desktop_view_slideshow_set_callback(
22 DesktopSlideshowView* main_view,
23 DesktopSlideshowViewCallback callback,
24 void* context);
APIs for working with storages, directories and files.
Definition desktop_view_slideshow.c:11
Definition view_i.h:16
GUI: View API.