dolphin/Source/Core/DolphinQt/Config/SettingsWindow.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
409 B
C
Raw Normal View History

// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QDialog>
2017-06-01 01:53:46 +02:00
2018-04-16 22:55:37 +02:00
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:
2018-04-16 22:55:37 +02:00
QTabWidget* m_tab_widget;
};