about summary refs log tree commit diff stats
path: root/src/achievements_pane.h
Commit message (Expand)AuthorAgeFilesLines
* Show list of achievements on the sideStar Rauchenberger2023-05-211-0/+22
fferburbia@gmail.com> 2023-11-17 11:43:13 -0500 committer Star Rauchenberger <fefferburbia@gmail.com> 2023-11-17 11:43:13 -0500 Show hunt panels option' href='/lingo-ap-tracker/commit/src/settings_dialog.h?h=v2.0.2&id=4adfe42a300a597cf8e7036cd189d197b08a7f01'>4adfe42 ^
6e71467 ^
a9bc708 ^



4adfe42 ^
6e71467 ^
a9bc708 ^


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
















                                                                       
                                                                              
                                                                           



                                            
                                    
                                  


                                                             
#ifndef SETTINGS_DIALOG_H_D8635719
#define SETTINGS_DIALOG_H_D8635719

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

class SettingsDialog : public wxDialog {
 public:
  SettingsDialog();

  bool GetShouldCheckForUpdates() const {
    return should_check_for_updates_box_->GetValue();
  }
  bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); }
  bool GetShowHuntPanels() const { return show_hunt_panels_box_->GetValue(); }
  bool GetTrackPosition() const { return track_position_box_->GetValue(); }

 private:
  wxCheckBox* should_check_for_updates_box_;
  wxCheckBox* hybrid_areas_box_;
  wxCheckBox* show_hunt_panels_box_;
  wxCheckBox* track_position_box_;
};

#endif /* end of include guard: SETTINGS_DIALOG_H_D8635719 */