mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-19 07:25:39 +00:00
28 lines
739 B
C++
28 lines
739 B
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// GuiGeneralScreensaverOptions.h
|
|
//
|
|
// User interface for the screensaver options.
|
|
// Based on the GuiScreenSaverOptions template.
|
|
// Submenu to the GuiMenu main menu.
|
|
//
|
|
|
|
#ifndef ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
|
#define ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
class GuiGeneralScreensaverOptions : public GuiScreensaverOptions
|
|
{
|
|
public:
|
|
GuiGeneralScreensaverOptions(Window* window, const char* title);
|
|
virtual ~GuiGeneralScreensaverOptions();
|
|
|
|
private:
|
|
void openVideoScreensaverOptions();
|
|
void openSlideshowScreensaverOptions();
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|