Driver/Volkslogger: eliminate class VLA_SYS
[xcsoar.git] / src / UISettings.hpp
blob002f8a1d511de017720743b3d658088944edeb9a
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 #ifndef XCSOAR_UI_SETTINGS_HPP
25 #define XCSOAR_UI_SETTINGS_HPP
27 #include "Units/Settings.hpp"
28 #include "MapSettings.hpp"
29 #include "InfoBoxes/InfoBoxSettings.hpp"
30 #include "Gauge/VarioSettings.hpp"
31 #include "Gauge/TrafficSettings.hpp"
32 #include "PageSettings.hpp"
33 #include "Dialogs/DialogSettings.hpp"
34 #include "Geo/CoordinateFormat.hpp"
35 #include "DisplaySettings.hpp"
36 #include "Audio/Settings.hpp"
38 #include <type_traits>
40 #include <stdint.h>
42 /**
43 * User interface settings.
45 struct UISettings {
46 DisplaySettings display;
48 /** timeout in quarter seconds of menu button */
49 unsigned menu_timeout;
51 bool custom_fonts;
53 /** Show ThermalAssistant if circling */
54 bool enable_thermal_assistant_gauge;
56 enum class PopupMessagePosition : uint8_t {
57 CENTER,
58 TOP_LEFT,
59 } popup_message_position;
61 /** Haptic feedback settings */
62 enum class HapticFeedback : uint8_t {
63 DEFAULT,
64 OFF,
65 ON,
66 } haptic_feedback;
68 CoordinateFormat coordinate_format;
70 UnitSetting units;
71 MapSettings map;
72 InfoBoxSettings info_boxes;
73 VarioSettings vario;
74 TrafficSettings traffic;
75 PageSettings pages;
76 DialogSettings dialog;
77 SoundSettings sound;
79 void SetDefaults();
82 static_assert(std::is_trivial<UISettings>::value, "type is not trivial");
84 #endif