dlgTextEntry_Keyboard: rename to TouchTextEntry
[xcsoar.git] / src / Units / Settings.cpp
blob02321b925aee53b4becc21d0dcc7e0111244a8f0
1 /*
2 Copyright_License {
4 XCSoar Glide Computer - http://www.xcsoar.org/
5 Copyright (C) 2000-2013 The XCSoar Project
6 A detailed list of copyright holders can be found in the file "AUTHORS".
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include "Settings.hpp"
26 void
27 UnitSetting::SetDefaults()
29 distance_unit = Unit::KILOMETER;
30 altitude_unit = Unit::METER;
31 temperature_unit = Unit::DEGREES_CELCIUS;
32 speed_unit = Unit::KILOMETER_PER_HOUR;
33 vertical_speed_unit = Unit::METER_PER_SECOND;
34 wind_speed_unit = Unit::KILOMETER_PER_HOUR;
35 task_speed_unit = Unit::KILOMETER_PER_HOUR;
36 pressure_unit = Unit::HECTOPASCAL;
39 Unit
40 UnitSetting::GetByGroup(UnitGroup group) const
42 switch (group) {
43 case UnitGroup::NONE:
44 break;
46 case UnitGroup::DISTANCE:
47 return distance_unit;
49 case UnitGroup::ALTITUDE:
50 return altitude_unit;
52 case UnitGroup::TEMPERATURE:
53 return temperature_unit;
55 case UnitGroup::HORIZONTAL_SPEED:
56 return speed_unit;
58 case UnitGroup::VERTICAL_SPEED:
59 return vertical_speed_unit;
61 case UnitGroup::WIND_SPEED:
62 return wind_speed_unit;
64 case UnitGroup::TASK_SPEED:
65 return task_speed_unit;
67 case UnitGroup::PRESSURE:
68 return pressure_unit;
71 return Unit::UNDEFINED;
74 bool
75 UnitSetting::operator==(const UnitSetting &right) const
77 return (distance_unit == right.distance_unit &&
78 altitude_unit == right.altitude_unit &&
79 temperature_unit == right.temperature_unit &&
80 speed_unit == right.speed_unit &&
81 vertical_speed_unit == right.vertical_speed_unit &&
82 wind_speed_unit == right.wind_speed_unit &&
83 task_speed_unit == right.task_speed_unit &&
84 pressure_unit == right.pressure_unit);