2020-06-23 18:07:00 +00:00
|
|
|
//
|
|
|
|
// GuiVideoScreensaverOptions.h
|
|
|
|
//
|
|
|
|
// User interface for the video screensaver options.
|
|
|
|
// Submenu to GuiGeneralScreensaverOptions.
|
|
|
|
//
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|
|
|
|
#define ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|
2017-09-09 03:45:50 +00:00
|
|
|
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
|
|
|
|
class GuiVideoScreensaverOptions : public GuiScreensaverOptions
|
|
|
|
{
|
|
|
|
public:
|
2020-06-23 18:07:00 +00:00
|
|
|
GuiVideoScreensaverOptions(Window* window, const char* title);
|
|
|
|
virtual ~GuiVideoScreensaverOptions();
|
2017-09-09 03:45:50 +00:00
|
|
|
|
2020-06-23 18:07:00 +00:00
|
|
|
void save() override;
|
2017-09-09 03:45:50 +00:00
|
|
|
};
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#endif // ES_APP_GUIS_GUI_VIDEO_SCREENSAVER_OPTIONS_H
|