2020-06-23 18:07:00 +00:00
|
|
|
//
|
2020-06-28 16:39:18 +00:00
|
|
|
// GuiSlideshowScreensaverOptions.h
|
2020-06-23 18:07:00 +00:00
|
|
|
//
|
|
|
|
// User interface for the slideshow screensaver options.
|
|
|
|
// Submenu to GuiGeneralScreensaverOptions.
|
|
|
|
//
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|
|
|
|
#define ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|
2017-09-09 03:45:50 +00:00
|
|
|
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
|
|
|
|
class GuiSlideshowScreensaverOptions : public GuiScreensaverOptions
|
|
|
|
{
|
|
|
|
public:
|
2020-06-23 18:07:00 +00:00
|
|
|
GuiSlideshowScreensaverOptions(Window* window, const char* title);
|
|
|
|
virtual ~GuiSlideshowScreensaverOptions();
|
2017-09-09 03:45:50 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-23 18:07:00 +00:00
|
|
|
void addWithLabel(ComponentListRow row, const std::string label,
|
|
|
|
std::shared_ptr<GuiComponent> component);
|
2017-09-09 03:45:50 +00:00
|
|
|
};
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#endif // ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|