mirror of
https://github.com/libretro/dolphin
synced 2024-11-05 04:53:51 -05:00
28 lines
432 B
C++
28 lines
432 B
C++
// Copyright 2015 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QTabWidget;
|
|
|
|
enum class TabIndex
|
|
{
|
|
General = 0,
|
|
Audio = 2
|
|
};
|
|
|
|
class SettingsWindow final : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SettingsWindow(QWidget* parent = nullptr);
|
|
void SelectGeneralPane();
|
|
void SelectAudioPane();
|
|
|
|
private:
|
|
QTabWidget* m_tab_widget;
|
|
};
|