blob: 150a7a8bf6dce163e539c19c099ee30b3b478ad8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#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(); }
private:
wxCheckBox* should_check_for_updates_box_;
wxCheckBox* hybrid_areas_box_;
};
#endif /* end of include guard: SETTINGS_DIALOG_H_D8635719 */
|