From dfddd07b8b5cbff7c09103a694aed40bda254a2d Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 12:47:54 -0400 Subject: Obsolete savefile reader + IPC solves Now, panel solve state is all read from the sync fields in datastorage. The "show hunt panels" field in settings is now a radio box, and you can choose to show all panels. --- src/settings_dialog.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/settings_dialog.h') diff --git a/src/settings_dialog.h b/src/settings_dialog.h index 12f2439..c4dacfa 100644 --- a/src/settings_dialog.h +++ b/src/settings_dialog.h @@ -7,6 +7,10 @@ #include #endif +#include + +#include "tracker_config.h" + class SettingsDialog : public wxDialog { public: SettingsDialog(); @@ -15,13 +19,16 @@ class SettingsDialog : public wxDialog { return should_check_for_updates_box_->GetValue(); } bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); } - bool GetShowHuntPanels() const { return show_hunt_panels_box_->GetValue(); } + TrackerConfig::VisiblePanels GetVisiblePanels() const { + return static_cast( + visible_panels_box_->GetSelection()); + } bool GetTrackPosition() const { return track_position_box_->GetValue(); } private: wxCheckBox* should_check_for_updates_box_; wxCheckBox* hybrid_areas_box_; - wxCheckBox* show_hunt_panels_box_; + wxRadioBox* visible_panels_box_; wxCheckBox* track_position_box_; }; -- cgit 1.4.1