mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Analytics: Implement UI.
* Opt-in popup on first start. * Checkbox and button in the main config dialog.
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
#include <wx/arrstr.h>
|
||||
#include <wx/panel.h>
|
||||
|
||||
class wxButton;
|
||||
class wxCheckBox;
|
||||
class wxChoice;
|
||||
class wxRadioBox;
|
||||
@ -34,6 +35,8 @@ private:
|
||||
void OnForceNTSCJCheckBoxChanged(wxCommandEvent&);
|
||||
void OnThrottlerChoiceChanged(wxCommandEvent&);
|
||||
void OnCPUEngineRadioBoxChanged(wxCommandEvent&);
|
||||
void OnAnalyticsCheckBoxChanged(wxCommandEvent&);
|
||||
void OnAnalyticsNewIdButtonClick(wxCommandEvent&);
|
||||
|
||||
wxArrayString m_throttler_array_string;
|
||||
wxArrayString m_cpu_engine_array_string;
|
||||
@ -43,6 +46,9 @@ private:
|
||||
wxCheckBox* m_cheats_checkbox;
|
||||
wxCheckBox* m_force_ntscj_checkbox;
|
||||
|
||||
wxCheckBox* m_analytics_checkbox;
|
||||
wxButton* m_analytics_new_id;
|
||||
|
||||
wxChoice* m_throttler_choice;
|
||||
|
||||
wxRadioBox* m_cpu_engine_radiobox;
|
||||
|
Reference in New Issue
Block a user