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
30 class OrderedTaskPoint
;
33 class WindowProjection
;
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
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
,
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
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);
73 * Draw a detailed view of a TaskPoint into a rectangle.
74 * @highlight_index highlight the task point as beeing manually edited
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);