PageActions: make LoadLayout() static
[xcsoar.git] / src / UIState.hpp
bloba91fbfac7c56a0f5d3d52e643e27d3eaab182c27
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_STATE_HPP
25 #define XCSOAR_UI_STATE_HPP
27 #include "DisplayMode.hpp"
28 #include "Util/StaticString.hpp"
29 #include "PageSettings.hpp"
31 /**
32 * The state of the user interface.
34 struct UIState {
35 /**
36 * Is the display currently blanked?
38 bool screen_blanked;
40 /**
41 * The display mode forced by the user. If not NONE, it overrides
42 * the automatic display mode.
44 DisplayMode force_display_mode;
46 /**
47 * The effective display mode.
49 DisplayMode display_mode;
51 /**
52 * Are the info boxes showing an "auxiliary" set?
54 bool auxiliary_enabled;
56 /**
57 * Which "auxiliary" set is visible if #auxiliary_enabled is true?
59 unsigned auxiliary_index;
61 /**
62 * The index of the InfoBox panel currently being displayed. If
63 * #auxiliary_enabled is true, then this is the same as
64 * #auxiliary_index.
66 unsigned panel_index;
68 /**
69 * A copy of the current InfoBox panel name. This copy is necessary
70 * because the original name is in InfoBoxSettings, but MapWindow
71 * does not know InfoBoxSettings or UISettings, and needs to know
72 * the name for rendering the overlay.
74 StaticString<32u> panel_name;
76 /**
77 * The index of the current page in the list of configured pages,
78 * see #PageSettings.
80 * This setting is only active if #special_page is not defined.
81 * Otherwise, it is the page that we will return to after the user
82 * decides to leave the #special_page.
84 unsigned page_index;
86 /**
87 * If this attribute is defined (see PageLayout::IsDefined()), then
88 * the current page is not the one in #PageSettings, specified by
89 * #page_index, but a page that was created automatically. For
90 * example, it could be a page that was created by clicking on the
91 * FLARM radar. Pressing left/right will return to the last
92 * configured page.
94 PageLayout special_page;
96 void Clear();
99 #endif