Renderer, ...: use PixelRect::GetCenter()
[xcsoar.git] / src / Gauge / TaskView.hpp
blob53e74325444bf134a3d1f88258f12e7615919436
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_TASK_VIEW_HPP
25 #define XCSOAR_TASK_VIEW_HPP
27 struct PixelRect;
28 class Canvas;
29 class OrderedTask;
30 class OrderedTaskPoint;
31 class RasterTerrain;
32 class Airspaces;
33 class WindowProjection;
34 struct GeoPoint;
35 struct MapSettings;
36 struct TaskLook;
37 struct AirspaceLook;
39 /**
40 * Draw Task with the given projection.
42 * @param fai_sectors render FAI triangle sectors?
43 * @highlight_index highlight the task point as beeing manually edited
45 void
46 PaintTask(Canvas &canvas, const WindowProjection &projection,
47 const OrderedTask &task,
48 bool location_available, const GeoPoint &location,
49 const MapSettings &settings_map,
50 const TaskLook &task_look,
51 const AirspaceLook &airspace_look,
52 const RasterTerrain *terrain, const Airspaces *airspaces,
53 bool fai_sectors,
54 int highlight_index);
56 /**
57 * Draw the whole Task into a rectangle.
59 * @param fai_sectors render FAI triangle sectors?
60 * @highlight_index highlight the task point as beeing manually edited
62 void
63 PaintTask(Canvas &canvas, const PixelRect &rc, const OrderedTask &task,
64 bool location_available, const GeoPoint &location,
65 const MapSettings &settings_map,
66 const TaskLook &task_look,
67 const AirspaceLook &airspace_look,
68 const RasterTerrain *terrain, const Airspaces *airspaces,
69 bool fai_sectors=false,
70 int highlight_index = -1);
72 /**
73 * Draw a detailed view of a TaskPoint into a rectangle.
74 * @highlight_index highlight the task point as beeing manually edited
76 void
77 PaintTaskPoint(Canvas &canvas, const PixelRect &rc,
78 const OrderedTask &task, const OrderedTaskPoint &point,
79 bool location_available, const GeoPoint &location,
80 const MapSettings &settings_map,
81 const TaskLook &task_look,
82 const AirspaceLook &airspace_look,
83 const RasterTerrain *terrain, const Airspaces *airspaces,
84 int highlight_index = -1);
86 #endif