mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 15:15:38 +00:00
37 lines
668 B
C
37 lines
668 B
C
|
#pragma once
|
||
|
|
||
|
#include "../GuiComponent.h"
|
||
|
#include "../SystemData.h"
|
||
|
#include "TextComponent.h"
|
||
|
#include "ComponentListComponent.h"
|
||
|
#include "OptionListComponent.h"
|
||
|
#include "SwitchComponent.h"
|
||
|
|
||
|
class GuiScraperStart : public GuiComponent
|
||
|
{
|
||
|
public:
|
||
|
GuiScraperStart(Window* window);
|
||
|
|
||
|
private:
|
||
|
NinePatchComponent mBox;
|
||
|
ComponentListComponent mList;
|
||
|
|
||
|
TextComponent mFilterLabel;
|
||
|
TextComponent mSystemsLabel;
|
||
|
TextComponent mManualLabel;
|
||
|
|
||
|
OptionListComponent<unsigned int> mFiltersOpt;
|
||
|
OptionListComponent<SystemData*> mSystemsOpt;
|
||
|
SwitchComponent mManualSwitch;
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
|
||
|
Filter: [MISSING IMAGES | ALL]
|
||
|
Systems: [# selected]
|
||
|
Manual Mode: [ON | OFF]
|
||
|
GO GO GO
|
||
|
|
||
|
*/
|
||
|
|