mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
ddf94786f4
This change adds an image slideshow screensaver mode with optional background audio. The existing menu and video screensaver have been refactored to include this new mode. By default, the slideshow screensaver will show images from the game list, but it can be configured in the menu to use a custom directory instead.
19 lines
485 B
C++
19 lines
485 B
C++
#ifndef _GUI_GENERAL_SCREENSAVER_OPTIONS_H_
|
|
#define _GUI_GENERAL_SCREENSAVER_OPTIONS_H_
|
|
|
|
#include "components/MenuComponent.h"
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
class GuiGeneralScreensaverOptions : public GuiScreensaverOptions
|
|
{
|
|
public:
|
|
GuiGeneralScreensaverOptions(Window* window, const char* title);
|
|
virtual ~GuiGeneralScreensaverOptions();
|
|
|
|
private:
|
|
void openVideoScreensaverOptions();
|
|
void openSlideshowScreensaverOptions();
|
|
};
|
|
|
|
#endif // _GUI_GENERAL_SCREENSAVER_OPTIONS_H_
|