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:
|
|
|
|
GuiSlideshowScreensaverOptions(Window* window, const char* title);
|
|
|
|
virtual ~GuiSlideshowScreensaverOptions();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void addWithLabel(ComponentListRow row, const std::string label, std::shared_ptr<GuiComponent> component);
|
|
|
|
};
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#endif // ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|