source: git/src/legprefs.cc @ ecbc6c18

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since ecbc6c18 was ecbc6c18, checked in by Olly Betts <olly@…>, 14 years ago

src/: Update FSF address in licence notices.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@3417 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[2f2509e]1//
2//  legprefs.cc
3//
4//  Preferences page for survey legs.
5//
6//  Copyright (C) 2002 Mark R. Shinwell
[3675a18]7//  Copyright (C) 2004 Olly Betts
[2f2509e]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
[ecbc6c18]21//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[2f2509e]22//
23
[cbfa50d]24#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
27
[2f2509e]28#include "legprefs.h"
29#include "message.h"
30#include <wx/statline.h>
31
32static const wxWindowID ID_LEG_PREFS = 1003;
[d0867c3]33static const wxWindowID ID_LEG_UG_LEGS = 2000;
34static const wxWindowID ID_LEG_SURF_LEGS = 2001;
[9eb58d0]35static const wxWindowID ID_LEG_LINE = 2002;
[2f2509e]36
37LegPrefs::LegPrefs(wxWindow* parent) : PanelDlgPage(parent, ID_LEG_PREFS)
38{
[d0867c3]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));
[2f2509e]41
42    wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
43
[d0867c3]44    sizer->Add(ug_legs, 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 0);
[2f2509e]45    sizer->Add(10, 8);
[d0867c3]46    sizer->Add(new wxStaticLine(this, ID_LEG_LINE), 0, wxEXPAND | wxRIGHT, 16);
[2f2509e]47    sizer->Add(10, 8);
[d0867c3]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);
[2f2509e]52
53    SetAutoLayout(true);
54    SetSizer(sizer);
55}
56
57LegPrefs::~LegPrefs()
58{
59
60}
61
62const wxString LegPrefs::GetName()
63{
64    return "Legs";
65}
66
67const wxBitmap LegPrefs::GetIcon()
68{
[3675a18]69    return GetParent()->LoadPreferencesIcon("legs");
[2f2509e]70}
71
Note: See TracBrowser for help on using the repository browser.