dlgTextEntry_Keyboard: rename to TouchTextEntry
[xcsoar.git] / src / MapWindow / Items / Builder.hpp
blob7b38fa981a83dc78e231a478b8f2468c96f5428c
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_MAP_ITEM_LIST_BUILDER_HPP
25 #define XCSOAR_MAP_ITEM_LIST_BUILDER_HPP
27 #include "Geo/GeoPoint.hpp"
29 class MapItemList;
30 class Angle;
31 class Airspaces;
32 class ProtectedAirspaceWarningManager;
33 struct AirspaceComputerSettings;
34 struct AirspaceRendererSettings;
35 class Waypoints;
36 struct MoreData;
37 struct DerivedInfo;
38 class ProtectedTaskManager;
39 class ProtectedMarkers;
40 struct TrafficList;
41 struct ThermalLocatorInfo;
42 struct NMEAInfo;
43 class RasterTerrain;
44 class ProtectedRoutePlanner;
45 class NOAAStore;
47 class MapItemListBuilder
49 MapItemList &list;
50 GeoPoint location;
51 fixed range;
53 public:
54 MapItemListBuilder(MapItemList &_list, GeoPoint _location, fixed _range)
55 :list(_list), location(_location), range(_range) {}
57 void AddLocation(const NMEAInfo &basic, const RasterTerrain *terrain);
58 void AddArrivalAltitudes(const ProtectedRoutePlanner &route_planner,
59 const RasterTerrain *terrain, fixed safety_height);
60 void AddSelfIfNear(const GeoPoint &self, Angle bearing);
61 void AddWaypoints(const Waypoints &waypoints);
62 void AddVisibleAirspace(const Airspaces &airspaces,
63 const ProtectedAirspaceWarningManager *warning_manager,
64 const AirspaceComputerSettings &computer_settings,
65 const AirspaceRendererSettings &renderer_settings,
66 const MoreData &basic, const DerivedInfo &calculated);
67 void AddTaskOZs(const ProtectedTaskManager &task);
68 void AddMarkers(const ProtectedMarkers &marks);
69 void AddTraffic(const TrafficList &flarm);
70 void AddSkyLinesTraffic();
71 void AddThermals(const ThermalLocatorInfo &thermals,
72 const MoreData &basic, const DerivedInfo &calculated);
74 void AddWeatherStations(NOAAStore &store);
77 #endif