2020-11-05 17:35:08 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//
|
|
|
|
// EmulationStation Desktop Edition
|
|
|
|
// GuiScreensaverOptions.h
|
|
|
|
//
|
|
|
|
// User interface for the screensaver options.
|
|
|
|
// Submenu to the GuiMenu main menu.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ES_APP_GUIS_GUI_SCREENSAVER_OPTIONS_H
|
|
|
|
#define ES_APP_GUIS_GUI_SCREENSAVER_OPTIONS_H
|
|
|
|
|
|
|
|
#include "guis/GuiSettings.h"
|
|
|
|
|
|
|
|
class GuiScreensaverOptions : public GuiSettings
|
|
|
|
{
|
|
|
|
public:
|
2020-12-16 22:59:00 +00:00
|
|
|
GuiScreensaverOptions(Window* window, const std::string& title);
|
2020-11-05 17:35:08 +00:00
|
|
|
|
|
|
|
private:
|
2021-10-24 12:11:19 +00:00
|
|
|
Window* mWindow;
|
|
|
|
|
2020-11-05 17:35:08 +00:00
|
|
|
void openSlideshowScreensaverOptions();
|
|
|
|
void openVideoScreensaverOptions();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ES_APP_GUIS_GUI_SCREENSAVER_OPTIONS_H
|