2020-06-22 15:27:53 +00:00
|
|
|
//
|
|
|
|
// GuiGeneralScreensaverOptions.h
|
|
|
|
//
|
|
|
|
// User interface for the screensaver options.
|
|
|
|
// Based on the GuiScreenSaverOptions template.
|
2020-06-28 16:39:18 +00:00
|
|
|
// Submenu to the GuiMenu main menu.
|
2020-06-22 15:27:53 +00:00
|
|
|
//
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
|
|
|
#define ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
2017-09-09 03:45:50 +00:00
|
|
|
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
|
|
|
|
class GuiGeneralScreensaverOptions : public GuiScreensaverOptions
|
|
|
|
{
|
|
|
|
public:
|
2020-06-22 15:27:53 +00:00
|
|
|
GuiGeneralScreensaverOptions(Window* window, const char* title);
|
|
|
|
virtual ~GuiGeneralScreensaverOptions();
|
2017-09-09 03:45:50 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-22 15:27:53 +00:00
|
|
|
void openVideoScreensaverOptions();
|
|
|
|
void openSlideshowScreensaverOptions();
|
2017-09-09 03:45:50 +00:00
|
|
|
};
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#endif // ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|