| 1 | // |
|---|
| 2 | // legprefs.cc |
|---|
| 3 | // |
|---|
| 4 | // Preferences page for survey legs. |
|---|
| 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 "legprefs.h" |
|---|
| 29 | #include "message.h" |
|---|
| 30 | #include <wx/statline.h> |
|---|
| 31 | |
|---|
| 32 | static const wxWindowID ID_LEG_PREFS = 1003; |
|---|
| 33 | static const wxWindowID ID_LEG_UG_LEGS = 2000; |
|---|
| 34 | static const wxWindowID ID_LEG_SURF_LEGS = 2001; |
|---|
| 35 | static const wxWindowID ID_LEG_LINE = 2002; |
|---|
| 36 | |
|---|
| 37 | LegPrefs::LegPrefs(wxWindow* parent) : PanelDlgPage(parent, ID_LEG_PREFS) |
|---|
| 38 | { |
|---|
| 39 | wxCheckBox* ug_legs = new wxCheckBox(this, ID_LEG_UG_LEGS, msg(/*Display underground survey legs*/357)); |
|---|
| 40 | wxCheckBox* surf_legs = new wxCheckBox(this, ID_LEG_SURF_LEGS, msg(/*Display surface survey legs*/358)); |
|---|
| 41 | |
|---|
| 42 | wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL); |
|---|
| 43 | |
|---|
| 44 | sizer->Add(ug_legs, 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 0); |
|---|
| 45 | sizer->Add(10, 8); |
|---|
| 46 | sizer->Add(new wxStaticLine(this, ID_LEG_LINE), 0, wxEXPAND | wxRIGHT, 16); |
|---|
| 47 | sizer->Add(10, 8); |
|---|
| 48 | sizer->Add(surf_legs, 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 4); |
|---|
| 49 | sizer->Add(col_surface, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 50 | sizer->Add(10, 4); |
|---|
| 51 | sizer->Add(dashed_surface, 0, wxALIGN_TOP | wxLEFT, 32); |
|---|
| 52 | |
|---|
| 53 | SetAutoLayout(true); |
|---|
| 54 | SetSizer(sizer); |
|---|
| 55 | } |
|---|
| 56 | |
|---|
| 57 | LegPrefs::~LegPrefs() |
|---|
| 58 | { |
|---|
| 59 | |
|---|
| 60 | } |
|---|
| 61 | |
|---|
| 62 | const wxString LegPrefs::GetName() |
|---|
| 63 | { |
|---|
| 64 | return "Legs"; |
|---|
| 65 | } |
|---|
| 66 | |
|---|
| 67 | const wxBitmap LegPrefs::GetIcon() |
|---|
| 68 | { |
|---|
| 69 | return GetParent()->LoadPreferencesIcon("legs"); |
|---|
| 70 | } |
|---|
| 71 | |
|---|