source: git/src/indicatorprefs.cc @ ecbc6c18

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
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.2 KB
Line 
1//
2//  indicatorprefs.cc
3//
4//  Preferences page for indicators.
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 "indicatorprefs.h"
29#include "message.h"
30
31static const wxWindowID ID_IND_PREFS = 5010;
32static const wxWindowID ID_IND_SCALE = 4000;
33static const wxWindowID ID_IND_DEPTH = 4001;
34static const wxWindowID ID_IND_COMPASS = 4002;
35static const wxWindowID ID_IND_CLINO = 4003;
36
37IndicatorPrefs::IndicatorPrefs(wxWindow* parent) : PanelDlgPage(parent, ID_IND_PREFS)
38{
39    wxCheckBox* scalebar = new wxCheckBox(this, ID_IND_SCALE, msg(/*Display scale bar*/369));
40    wxCheckBox* depthbar = new wxCheckBox(this, ID_IND_DEPTH, msg(/*Display depth bar*/370));
41    wxCheckBox* compass = new wxCheckBox(this, ID_IND_COMPASS, msg(/*Display compass*/371));
42    wxCheckBox* clino = new wxCheckBox(this, ID_IND_CLINO, msg(/*Display clinometer*/372));
43
44    wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
45
46    sizer->Add(scalebar, 0 /* not vertically stretchable */, wxALIGN_TOP | wxBOTTOM, 4);
47    sizer->Add(depthbar, 0, wxALIGN_TOP | wxBOTTOM, 4);
48    sizer->Add(compass, 0, wxALIGN_TOP | wxBOTTOM, 4);
49    sizer->Add(clino, 0, wxALIGN_TOP | wxBOTTOM, 4);
50
51    SetAutoLayout(true);
52    SetSizer(sizer);
53}
54
55IndicatorPrefs::~IndicatorPrefs()
56{
57
58}
59
60const wxString IndicatorPrefs::GetName()
61{
62    return "Indicators";
63}
64
65const wxBitmap IndicatorPrefs::GetIcon()
66{
67    return GetParent()->LoadPreferencesIcon("indicator");
68}
69
Note: See TracBrowser for help on using the repository browser.