Qt: Add controller (overview) window

This commit is contained in:
spycrab
2017-05-09 18:49:10 +02:00
parent a11775396f
commit c8d0b647ac
14 changed files with 708 additions and 27 deletions

View File

@ -16,6 +16,7 @@
class PathDialog;
class SettingsWindow;
class ControllersWindow;
class MainWindow final : public QMainWindow
{
@ -70,6 +71,7 @@ private:
void ShowPathsDialog();
void ShowSettingsWindow();
void ShowControllersWindow();
void ShowAboutDialog();
QStackedWidget* m_stack;
@ -81,5 +83,6 @@ private:
int m_state_slot = 1;
PathDialog* m_paths_dialog;
ControllersWindow* m_controllers_window;
SettingsWindow* m_settings_window;
};