#include "settings_dialog.h" #include "tracker_config.h" SettingsDialog::SettingsDialog() : wxDialog(nullptr, wxID_ANY, "Settings") { wxStaticBoxSizer* main_box = new wxStaticBoxSizer(wxVERTICAL, this, "General settings"); should_check_for_updates_box_ = new wxCheckBox(main_box->GetStaticBox(), wxID_ANY, "Check for updates when the tracker opens"); hybrid_areas_box_ = new wxCheckBox( main_box->GetStaticBox(), wxID_ANY, "Use two colors to show that an area has partial availability"); track_position_box_ = new wxCheckBox(main_box->GetStaticBox(), wxID_ANY, "Track player position"); should_check_for_updates_box_->SetValue( GetTrackerConfig().should_check_for_updates); hybrid_areas_box_->SetValue(GetTrackerConfig().hybrid_areas); track_position_box_->SetValue(GetTrackerConfig().track_position); main_box->Add(should_check_for_updates_box_, wxSizerFlags().Border()); main_box->AddSpacer(2); main_box->Add(hybrid_areas_box_, wxSizerFlags().Border()); main_box->AddSpacer(2); main_box->Add(track_position_box_, wxSizerFlags().Border()); const wxString visible_panels_choices[] = {"Only show locations", "Show locations and hunt panels", "Show all panels"}; visible_panels_box_ = new wxRadioBox(this, wxID_ANY, "Visible panels", wxDefaultPosition, wxDefaultSize, 3, visible_panels_choices, 1); visible_panels_box_->SetSelection( static_cast(GetTrackerConfig().visible_panels)); wxBoxSizer* form_sizer = new wxBoxSizer(wxVERTICAL); form_sizer->Add(main_box, wxSizerFlags().Border().Expand()); form_sizer->Add(visible_panels_box_, wxSizerFlags().Border().Expand()); form_sizer->Add(CreateButtonSizer(wxOK | wxCANCEL), wxSizerFlags().Center().Border()); SetSizerAndFit(form_sizer); Center(); }