mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
29 lines
517 B
C++
Executable file
29 lines
517 B
C++
Executable file
struct SlotLoaderPath : HorizontalLayout {
|
|
Label label;
|
|
LineEdit path;
|
|
Button browse;
|
|
|
|
string name;
|
|
lstring filter;
|
|
|
|
SlotLoaderPath();
|
|
};
|
|
|
|
struct SlotLoader : Window {
|
|
VerticalLayout layout;
|
|
SlotLoaderPath base;
|
|
SlotLoaderPath slot[2];
|
|
HorizontalLayout controlLayout;
|
|
Widget spacer;
|
|
Button loadButton;
|
|
|
|
void synchronize();
|
|
void loadSatellaviewSlotted();
|
|
void loadSatellaview();
|
|
void loadSufamiTurbo();
|
|
void loadSuperGameBoy();
|
|
|
|
SlotLoader();
|
|
};
|
|
|
|
extern SlotLoader *slotLoader;
|