mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-12 19:30:44 +02:00
29 lines
465 B
C++
29 lines
465 B
C++
// Copyright 2015 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QTabWidget;
|
|
class InterfacePane;
|
|
|
|
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;
|
|
InterfacePane* m_interface_pane;
|
|
};
|