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

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

28 lines
432 B
C
Raw Normal View History

// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#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;
};