| 1 | // |
|---|
| 2 | // unitsprefs.cc |
|---|
| 3 | // |
|---|
| 4 | // Preferences page for measurement unit options. |
|---|
| 5 | // |
|---|
| 6 | // Copyright (C) 2002 Mark R. Shinwell |
|---|
| 7 | // Copyright (C) 2004 Olly Betts |
|---|
| 8 | // |
|---|
| 9 | // This program is free software; you can redistribute it and/or modify |
|---|
| 10 | // it under the terms of the GNU General Public License as published by |
|---|
| 11 | // the Free Software Foundation; either version 2 of the License, or |
|---|
| 12 | // (at your option) any later version. |
|---|
| 13 | // |
|---|
| 14 | // This program is distributed in the hope that it will be useful, |
|---|
| 15 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | // GNU General Public License for more details. |
|---|
| 18 | // |
|---|
| 19 | // You should have received a copy of the GNU General Public License |
|---|
| 20 | // along with this program; if not, write to the Free Software |
|---|
| 21 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 22 | // |
|---|
| 23 | |
|---|
| 24 | #ifdef HAVE_CONFIG_H |
|---|
| 25 | #include <config.h> |
|---|
| 26 | #endif |
|---|
| 27 | |
|---|
| 28 | #include "unitsprefs.h" |
|---|
| 29 | #include "message.h" |
|---|
| 30 | |
|---|
| 31 | #include <wx/statline.h> |
|---|
| 32 | |
|---|
| 33 | static const wxWindowID ID_UNITS_PREFS = 5005; |
|---|
| 34 | static const wxWindowID ID_UNITS_METRIC = 2000; |
|---|
| 35 | static const wxWindowID ID_UNITS_IMPERIAL = 2001; |
|---|
| 36 | static const wxWindowID ID_UNITS_DEGREES = 2002; |
|---|
| 37 | static const wxWindowID ID_UNITS_GRADS = 2003; |
|---|
| 38 | static const wxWindowID ID_UNITS_LINE1 = 2004; |
|---|
| 39 | static const wxWindowID ID_UNITS_LABEL1 = 2005; |
|---|
| 40 | static const wxWindowID ID_UNITS_LABEL2 = 2006; |
|---|
| 41 | |
|---|
| 42 | UnitsPrefs::UnitsPrefs(wxWindow* parent) : PanelDlgPage(parent, ID_UNITS_PREFS) |
|---|
| 43 | { |
|---|
| 44 | wxRadioButton* metric = new wxRadioButton(this, ID_UNITS_METRIC, msg(/*metric units*/362), |
|---|
| 45 | wxDefaultPosition, wxDefaultSize, wxRB_GROUP); |
|---|
| 46 | wxRadioButton* imperial = new wxRadioButton(this, ID_UNITS_IMPERIAL, msg(/*imperial units*/363)); |
|---|
| 47 | wxRadioButton* degrees = new wxRadioButton(this, ID_UNITS_DEGREES, msg(/*degrees*/364), |
|---|
| 48 | wxDefaultPosition, wxDefaultSize, wxRB_GROUP); |
|---|
| 49 | wxRadioButton* grads = new wxRadioButton(this, ID_UNITS_GRADS, msg(/*grads*/365)); |
|---|
| 50 | |
|---|
| 51 | wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL); |
|---|
| 52 | |
|---|
| 53 | sizer->Add(new wxStaticText(this, ID_UNITS_LABEL1, msg(/*Display measurements in*/366)), |
|---|
| 54 | 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 4); |
|---|
| 55 | sizer->Add(metric, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 56 | sizer->Add(10, 4); |
|---|
| 57 | sizer->Add(imperial, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 58 | sizer->Add(10, 8); |
|---|
| 59 | sizer->Add(new wxStaticLine(this, ID_UNITS_LINE1), 0, wxEXPAND | wxRIGHT, 16); |
|---|
| 60 | sizer->Add(10, 8); |
|---|
| 61 | sizer->Add(new wxStaticText(this, ID_UNITS_LABEL2, msg(/*Display angles in*/367)), |
|---|
| 62 | 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 4); |
|---|
| 63 | sizer->Add(degrees, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 64 | sizer->Add(10, 4); |
|---|
| 65 | sizer->Add(grads, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 66 | |
|---|
| 67 | SetAutoLayout(true); |
|---|
| 68 | SetSizer(sizer); |
|---|
| 69 | } |
|---|
| 70 | |
|---|
| 71 | UnitsPrefs::~UnitsPrefs() |
|---|
| 72 | { |
|---|
| 73 | |
|---|
| 74 | } |
|---|
| 75 | |
|---|
| 76 | const wxString UnitsPrefs::GetName() |
|---|
| 77 | { |
|---|
| 78 | return "Units"; |
|---|
| 79 | } |
|---|
| 80 | |
|---|
| 81 | const wxBitmap UnitsPrefs::GetIcon() |
|---|
| 82 | { |
|---|
| 83 | return GetParent()->LoadPreferencesIcon("units"); |
|---|
| 84 | } |
|---|
| 85 | |
|---|