GameCubeConfigPane.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Copyright 2015 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <wx/arrstr.h>
  6. #include <wx/panel.h>
  7. class wxButton;
  8. class wxCheckBox;
  9. class wxChoice;
  10. class wxString;
  11. class GameCubeConfigPane final : public wxPanel
  12. {
  13. public:
  14. GameCubeConfigPane(wxWindow* parent, wxWindowID id);
  15. private:
  16. void InitializeGUI();
  17. void LoadGUIValues();
  18. void RefreshGUI();
  19. void OnSystemLanguageChange(wxCommandEvent&);
  20. void OnSkipBiosCheckBoxChanged(wxCommandEvent&);
  21. void OnSlotAChanged(wxCommandEvent&);
  22. void OnSlotBChanged(wxCommandEvent&);
  23. void OnSP1Changed(wxCommandEvent&);
  24. void OnSlotAButtonClick(wxCommandEvent&);
  25. void OnSlotBButtonClick(wxCommandEvent&);
  26. void ChooseEXIDevice(const wxString& device_name, int device_id);
  27. void ChooseSlotPath(bool is_slot_a, TEXIDevices device_type);
  28. wxArrayString m_ipl_language_strings;
  29. wxChoice* m_system_lang_choice;
  30. wxCheckBox* m_skip_bios_checkbox;
  31. wxChoice* m_exi_devices[3];
  32. wxButton* m_memcard_path[2];
  33. };