2015-03-18 22:00:27 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2015-03-18 22:00:27 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wx/arrstr.h>
|
|
|
|
#include <wx/panel.h>
|
2016-07-06 18:33:05 +00:00
|
|
|
|
2016-08-02 06:22:37 +00:00
|
|
|
class DolphinSlider;
|
2016-10-31 20:51:35 +00:00
|
|
|
class wxButton;
|
2015-03-18 22:00:27 +00:00
|
|
|
class wxCheckBox;
|
|
|
|
class wxChoice;
|
2016-10-31 20:51:35 +00:00
|
|
|
class wxListBox;
|
2016-09-12 18:25:36 +00:00
|
|
|
class wxSlider;
|
2015-03-18 22:00:27 +00:00
|
|
|
|
|
|
|
class WiiConfigPane final : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
WiiConfigPane(wxWindow* parent, wxWindowID id);
|
2015-03-18 22:00:27 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
void InitializeGUI();
|
|
|
|
void LoadGUIValues();
|
2016-11-05 12:29:29 +00:00
|
|
|
void BindEvents();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-31 20:51:35 +00:00
|
|
|
void PopulateUSBPassthroughListbox();
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void OnScreenSaverCheckBoxChanged(wxCommandEvent&);
|
|
|
|
void OnPAL60CheckBoxChanged(wxCommandEvent&);
|
|
|
|
void OnSDCardCheckBoxChanged(wxCommandEvent&);
|
|
|
|
void OnConnectKeyboardCheckBoxChanged(wxCommandEvent&);
|
|
|
|
void OnSystemLanguageChoiceChanged(wxCommandEvent&);
|
|
|
|
void OnAspectRatioChoiceChanged(wxCommandEvent&);
|
|
|
|
|
2016-10-31 20:51:35 +00:00
|
|
|
void OnUSBWhitelistAddButton(wxCommandEvent&);
|
|
|
|
void OnUSBWhitelistRemoveButton(wxCommandEvent&);
|
|
|
|
void OnUSBWhitelistRemoveButtonUpdate(wxUpdateUIEvent&);
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
void OnSensorBarPosChanged(wxCommandEvent&);
|
|
|
|
void OnSensorBarSensChanged(wxCommandEvent&);
|
|
|
|
void OnSpeakerVolumeChanged(wxCommandEvent&);
|
|
|
|
void OnWiimoteMotorChanged(wxCommandEvent&);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxArrayString m_system_language_strings;
|
|
|
|
wxArrayString m_aspect_ratio_strings;
|
2016-09-12 18:25:36 +00:00
|
|
|
wxArrayString m_bt_sensor_bar_pos_strings;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxCheckBox* m_screensaver_checkbox;
|
|
|
|
wxCheckBox* m_pal60_mode_checkbox;
|
|
|
|
wxCheckBox* m_sd_card_checkbox;
|
|
|
|
wxCheckBox* m_connect_keyboard_checkbox;
|
|
|
|
wxChoice* m_system_language_choice;
|
|
|
|
wxChoice* m_aspect_ratio_choice;
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-10-31 20:51:35 +00:00
|
|
|
wxListBox* m_usb_passthrough_devices_listbox;
|
|
|
|
wxButton* m_usb_passthrough_add_device_btn;
|
|
|
|
wxButton* m_usb_passthrough_rem_device_btn;
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
wxChoice* m_bt_sensor_bar_pos;
|
2016-08-02 06:22:37 +00:00
|
|
|
DolphinSlider* m_bt_sensor_bar_sens;
|
|
|
|
DolphinSlider* m_bt_speaker_volume;
|
2017-08-11 19:15:51 +00:00
|
|
|
wxCheckBox* m_bt_wiimote_motor_checkbox;
|
2015-03-18 22:00:27 +00:00
|
|
|
};
|