OpenCPN Partial API docs
Loading...
Searching...
No Matches
track_gui.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: Track and Trackpoint drawing stuff
5 * Author: David Register, Alec Leamas
6 *
7 ***************************************************************************
8 * Copyright (C) 2022 by David Register, Alec Leamas *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
24 **************************************************************************/
25
26#ifndef _TRACK_GUI_H
27#define _TRACK_GUI_H
28
29#include <list>
30
31#include "bbox.h"
32#include "chcanv.h"
33#include "ocpndc.h"
34#include "model/track.h"
35#include "viewport.h"
36
38public:
39 TrackPointGui(const TrackPoint &point) : m_point(point) {}
40 void Draw(ChartCanvas *cc, ocpnDC &dc);
41
42private:
43 const TrackPoint &m_point;
44};
45
46class TrackGui {
47public:
48 TrackGui(Track &track) : m_track(track) {}
49 void Draw(ChartCanvas *cc, ocpnDC &dc, ViewPort &VP, const LLBBox &box);
50
51protected:
52 void Segments(ChartCanvas *cc, std::list<std::list<wxPoint> > &pointlists,
53 const LLBBox &box, double scale);
54
55private:
56 Track &m_track;
57 void GetPointLists(ChartCanvas *cc,
58 std::list<std::list<wxPoint> > &pointlists, ViewPort &VP,
59 const LLBBox &box);
60 void Finalize();
61 void Assemble(ChartCanvas *cc, std::list<std::list<wxPoint> > &pointlists,
62 const LLBBox &box, double scale, int &last, int level, int pos);
63 void AddPointToList(ChartCanvas *cc,
64 std::list<std::list<wxPoint> > &pointlists, int n);
65 void AddPointToLists(ChartCanvas *cc,
66 std::list<std::list<wxPoint> > &pointlists, int &last,
67 int n);
68};
69
70#endif // _TRACK_GUI_H
Chart display canvas.
Definition chcanv.h:135
Represents a single point in a track.
Definition track.h:52
Represents a track, which is a series of connected track points.
Definition track.h:78
Represents the view port for chart display in OpenCPN.
Definition viewport.h:84
Device context class that can use either wxDC or OpenGL for drawing.
Definition ocpndc.h:64