2021-05-16 11:12:31 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//
|
|
|
|
// EmulationStation Desktop Edition
|
|
|
|
// GuiMediaViewerOptions.h
|
|
|
|
//
|
|
|
|
// User interface for the media viewer options.
|
|
|
|
// Submenu to the GuiMenu main menu.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|
|
|
|
#define ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|
|
|
|
|
|
|
|
#include "guis/GuiSettings.h"
|
|
|
|
|
|
|
|
class GuiMediaViewerOptions : public GuiSettings
|
|
|
|
{
|
|
|
|
public:
|
2022-01-19 17:01:54 +00:00
|
|
|
GuiMediaViewerOptions(const std::string& title);
|
2021-05-16 11:12:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ES_APP_GUIS_GUI_MEDIA_VIEWER_OPTIONS_H
|