mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-10 11:45:38 +00:00
e4fdd1e20d
As of this commit, the initial code cleanup and code documentation has been completed for the entire application.
26 lines
703 B
C++
26 lines
703 B
C++
//
|
|
// GuiSlideshowScreensaverOptions.h
|
|
//
|
|
// User interface for the slideshow screensaver options.
|
|
// Submenu to GuiGeneralScreensaverOptions.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|
|
#define ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|
|
|
|
#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);
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_SLIDESHOW_SCREENSAVER_OPTIONS_H
|