mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// GuiLaunchScreen.h
|
|
//
|
|
// Screen shown when launching a game.
|
|
//
|
|
|
|
#ifndef ES_APP_GUIS_GUI_LAUNCH_SCREEN_H
|
|
#define ES_APP_GUIS_GUI_LAUNCH_SCREEN_H
|
|
|
|
#include "GuiComponent.h"
|
|
#include "Window.h"
|
|
#include "components/ComponentGrid.h"
|
|
#include "components/ImageComponent.h"
|
|
#include "components/NinePatchComponent.h"
|
|
#include "components/TextComponent.h"
|
|
|
|
class FileData;
|
|
|
|
class GuiLaunchScreen : public Window::GuiLaunchScreen, GuiComponent
|
|
{
|
|
public:
|
|
GuiLaunchScreen();
|
|
virtual ~GuiLaunchScreen();
|
|
|
|
void displayLaunchScreen(FileData* game) override;
|
|
void closeLaunchScreen() override;
|
|
|
|
void onSizeChanged() override;
|
|
|
|
void update(int deltaTime) override;
|
|
void render(const glm::mat4& parentTrans) override;
|
|
|
|
private:
|
|
NinePatchComponent mBackground;
|
|
ComponentGrid* mGrid;
|
|
|
|
std::shared_ptr<TextComponent> mTitle;
|
|
std::shared_ptr<TextComponent> mGameName;
|
|
std::shared_ptr<TextComponent> mSystemName;
|
|
|
|
ImageComponent* mMarquee;
|
|
std::string mImagePath;
|
|
|
|
float mScaleUp;
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_LAUNCH_SCREEN_H
|