mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 06:50:21 +00:00
23 lines
645 B
C
23 lines
645 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
#include "desktop_events.h"
|
|
#include "../helpers/slideshow_filename.h"
|
|
|
|
#define SLIDESHOW_FS_PATH INT_PATH(SLIDESHOW_FILE_NAME)
|
|
|
|
typedef struct DesktopSlideshowView DesktopSlideshowView;
|
|
|
|
typedef void (*DesktopSlideshowViewCallback)(DesktopEvent event, void* context);
|
|
|
|
DesktopSlideshowView* desktop_view_slideshow_alloc();
|
|
|
|
void desktop_view_slideshow_free(DesktopSlideshowView* main_view);
|
|
|
|
View* desktop_view_slideshow_get_view(DesktopSlideshowView* main_view);
|
|
|
|
void desktop_view_slideshow_set_callback(
|
|
DesktopSlideshowView* main_view,
|
|
DesktopSlideshowViewCallback callback,
|
|
void* context);
|