mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
Qt: Advanced config pane
This commit is contained in:
parent
7cb8d6612c
commit
4ea8166b93
6 changed files with 182 additions and 2 deletions
32
Source/Core/DolphinQt2/Settings/AdvancedPane.h
Normal file
32
Source/Core/DolphinQt2/Settings/AdvancedPane.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QCheckBox;
|
||||
class QLabel;
|
||||
class QSlider;
|
||||
class QDateTimeEdit;
|
||||
|
||||
class AdvancedPane final : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit AdvancedPane(QWidget* parent = nullptr);
|
||||
|
||||
private:
|
||||
void CreateLayout();
|
||||
void ConnectLayout();
|
||||
void Update();
|
||||
|
||||
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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue