dolphin/Source/Core/DolphinQt/Settings/AdvancedPane.h

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

44 lines
833 B
C
Raw Normal View History

2017-06-28 06:36:27 +02:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <vector>
2017-06-28 06:36:27 +02:00
#include <QWidget>
class QCheckBox;
class QComboBox;
2017-06-28 06:36:27 +02:00
class QLabel;
class QRadioButton;
2017-06-28 06:36:27 +02:00
class QSlider;
class QDateTimeEdit;
namespace Core
{
enum class State;
}
2017-06-28 06:36:27 +02:00
class AdvancedPane final : public QWidget
{
Q_OBJECT
public:
explicit AdvancedPane(QWidget* parent = nullptr);
private:
void CreateLayout();
void ConnectLayout();
void Update();
QComboBox* m_cpu_emulation_engine_combobox;
QCheckBox* m_enable_mmu_checkbox;
2017-06-28 06:36:27 +02:00
QCheckBox* m_cpu_clock_override_checkbox;
QSlider* m_cpu_clock_override_slider;
QLabel* m_cpu_clock_override_slider_label;
QLabel* m_cpu_clock_override_description;
QCheckBox* m_custom_rtc_checkbox;
QDateTimeEdit* m_custom_rtc_datetime;
};