dolphin/Source/Core/DolphinQt2/Config/SettingsWindow.h
2017-07-16 18:23:59 -07:00

23 lines
388 B
C++

// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QDialog>
class ListTabWidget;
class SettingsWindow final : public QDialog
{
Q_OBJECT
public:
explicit SettingsWindow(QWidget* parent = nullptr);
signals:
void EmulationStarted();
void EmulationStopped();
private:
ListTabWidget* m_tabs;
};