mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
31 lines
623 B
C
31 lines
623 B
C
|
// Copyright 2015 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <wx/panel.h>
|
||
|
|
||
|
class wxCheckBox;
|
||
|
class wxSlider;
|
||
|
class wxStaticText;
|
||
|
|
||
|
class AdvancedConfigPane final : public wxPanel
|
||
|
{
|
||
|
public:
|
||
|
AdvancedConfigPane(wxWindow* parent, wxWindowID id);
|
||
|
|
||
|
private:
|
||
|
void InitializeGUI();
|
||
|
void LoadGUIValues();
|
||
|
|
||
|
void OnClockOverrideCheckBoxChanged(wxCommandEvent&);
|
||
|
void OnClockOverrideSliderChanged(wxCommandEvent&);
|
||
|
|
||
|
void UpdateCPUClock();
|
||
|
|
||
|
wxCheckBox* m_clock_override_checkbox;
|
||
|
wxSlider* m_clock_override_slider;
|
||
|
wxStaticText* m_clock_override_text;
|
||
|
};
|