2022-06-21 14:11:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gui/view.h>
|
|
|
|
|
|
|
|
#include "desktop_events.h"
|
2022-07-26 12:21:51 +00:00
|
|
|
#include "../helpers/slideshow_filename.h"
|
|
|
|
|
|
|
|
#define SLIDESHOW_FS_PATH INT_PATH(SLIDESHOW_FILE_NAME)
|
2022-06-21 14:11:34 +00:00
|
|
|
|
|
|
|
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);
|