1 // Copyright 2015 Dolphin Emulator Project
2 // Licensed under GPLv2+
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 #include <QDialog>
8 
9 class QTabWidget;
10 
11 enum class TabIndex
12 {
13   General = 0,
14   Audio = 2
15 };
16 
17 class SettingsWindow final : public QDialog
18 {
19   Q_OBJECT
20 public:
21   explicit SettingsWindow(QWidget* parent = nullptr);
22   void SelectGeneralPane();
23   void SelectAudioPane();
24 
25 private:
26   QTabWidget* m_tab_widget;
27 };
28