1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#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<int>(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();
}
|