mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
24 lines
461 B
C++
Executable file
24 lines
461 B
C++
Executable file
struct SettingsLayout : HorizontalLayout {
|
|
Widget spacer;
|
|
VerticalLayout layout;
|
|
|
|
void append(Sizable &widget, const Size &size, unsigned spacing = 0);
|
|
SettingsLayout();
|
|
};
|
|
|
|
#include "video.hpp"
|
|
#include "audio.hpp"
|
|
#include "input.hpp"
|
|
#include "advanced.hpp"
|
|
|
|
struct SettingsWindow : Window {
|
|
HorizontalLayout layout;
|
|
ListView panelList;
|
|
|
|
void panelChanged();
|
|
|
|
SettingsWindow();
|
|
~SettingsWindow();
|
|
};
|
|
|
|
extern SettingsWindow *settingsWindow;
|