mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
24 lines
430 B
C
24 lines
430 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "../GuiComponent.h"
|
||
|
|
#include "../components/ImageComponent.h"
|
||
|
|
#include "../components/TextComponent.h"
|
||
|
|
#include "../components/ScrollableContainer.h"
|
||
|
|
|
||
|
|
class SystemData;
|
||
|
|
|
||
|
|
class SystemView : public GuiComponent
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SystemView(Window* window, SystemData* system);
|
||
|
|
|
||
|
|
void updateData();
|
||
|
|
|
||
|
|
private:
|
||
|
|
SystemData* mSystem;
|
||
|
|
|
||
|
|
TextComponent mHeaderText;
|
||
|
|
ImageComponent mHeaderImage;
|
||
|
|
ImageComponent mImage;
|
||
|
|
};
|