about summary refs log tree commit diff stats
path: root/data/maps/the_bearer/rooms/Blue Vegetable (View).txtpb
blob: 04beaea64f4f26381c6f2d3f032f3e33d0919b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
name: "Blue Vegetable (View)"
display_name: "Main Area"
panels {
  name: "THORN"
  path: "Panels/Blue/panel_1"
  clue: "thorn"
  answer: "corn"
  symbols: "zero"
}
'alt'>
                                  
                                  


                                                             
#ifndef SETTINGS_DIALOG_H_D8635719
#define SETTINGS_DIALOG_H_D8635719

#include <wx/wxprec.h>

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

#include <wx/radiobox.h>

#include "tracker_config.h"

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

  bool GetShouldCheckForUpdates() const {
    return should_check_for_updates_box_->GetValue();
  }
  bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); }
  TrackerConfig::VisiblePanels GetVisiblePanels() const {
    return static_cast<TrackerConfig::VisiblePanels>(
        visible_panels_box_->GetSelection());
  }
  bool GetTrackPosition() const { return track_position_box_->GetValue(); }

 private:
  wxCheckBox* should_check_for_updates_box_;
  wxCheckBox* hybrid_areas_box_;
  wxRadioBox* visible_panels_box_;
  wxCheckBox* track_position_box_;
};

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