mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-25 10:05:38 +00:00
e4fdd1e20d
As of this commit, the initial code cleanup and code documentation has been completed for the entire application.
27 lines
682 B
C++
27 lines
682 B
C++
//
|
|
// GuiGeneralScreensaverOptions.h
|
|
//
|
|
// User interface for the screensaver options.
|
|
// Based on the GuiScreenSaverOptions template.
|
|
// Submenu to the GuiMenu main menu.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
|
#define ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|
|
|
|
#include "GuiScreensaverOptions.h"
|
|
|
|
class GuiGeneralScreensaverOptions : public GuiScreensaverOptions
|
|
{
|
|
public:
|
|
GuiGeneralScreensaverOptions(Window* window, const char* title);
|
|
virtual ~GuiGeneralScreensaverOptions();
|
|
|
|
private:
|
|
void openVideoScreensaverOptions();
|
|
void openSlideshowScreensaverOptions();
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_GENERAL_SCREENSAVER_OPTIONS_H
|