[Qt] Settings Window for Qt

AND Fix leftovers from full code, fixed styling and lint
This commit is contained in:
Corwin McKnight
2016-05-09 06:34:07 -07:00
parent c299a6a8cc
commit 321b775f02
7 changed files with 147 additions and 10 deletions

View File

@ -15,6 +15,7 @@
#include "DolphinQt2/GameList/GameList.h"
class PathDialog;
class SettingsWindow;
class MainWindow final : public QMainWindow
{
@ -68,6 +69,7 @@ private:
void HideRenderWidget();
void ShowPathsDialog();
void ShowSettingsWindow();
void ShowAboutDialog();
QStackedWidget* m_stack;
@ -79,4 +81,5 @@ private:
int m_state_slot = 1;
PathDialog* m_paths_dialog;
SettingsWindow* m_settings_window;
};