30#include <wx/datetime.h>
36#include "model/route_point.h"
37#include "model/routeman.h"
38#include "model/hyperlink.h"
42#define WIDTH_UNDEFINED -1
44#define ROUTE_DEFAULT_SPEED 5.0
45#define RTE_TIME_DISP_UTC "UTC"
46#define RTE_TIME_DISP_PC "PC"
47#define RTE_TIME_DISP_LOCAL "LOCAL"
48#define RTE_TIME_DISP_GLOBAL "GLOBAL SETTING"
49#define RTE_UNDEF_DEPARTURE wxInvalidDateTime
55const wxString GpxxColorNames[] = {
56 _T(
"Black"), _T(
"DarkRed"), _T(
"DarkGreen"),
57 _T(
"DarkYellow"), _T(
"DarkBlue"), _T(
"DarkMagenta"),
58 _T(
"DarkCyan"), _T(
"LightGray"), _T(
"DarkGray"),
59 _T(
"Red"), _T(
"Green"), _T (
"Yellow"),
60 _T(
"Blue"), _T(
"Magenta"), _T(
"Cyan"),
63const wxColour GpxxColors[] = {
64 wxColour(0x00, 0x00, 0x00), wxColour(0x60, 0x00, 0x00),
65 wxColour(0x00, 0x60, 0x00), wxColour(0x80, 0x80, 0x00),
66 wxColour(0x00, 0x00, 0x60), wxColour(0x60, 0x00, 0x60),
67 wxColour(0x00, 0x80, 0x80), wxColour(0xC0, 0xC0, 0xC0),
68 wxColour(0x60, 0x60, 0x60), wxColour(0xFF, 0x00, 0x00),
69 wxColour(0x00, 0xFF, 0x00), wxColour(0xF0, 0xF0, 0x00),
70 wxColour(0x00, 0x00, 0xFF), wxColour(0xFE, 0x00, 0xFE),
71 wxColour(0x00, 0xFF, 0xFF), wxColour(0xFF, 0xFF, 0xFF)};
72const int StyleValues[] = {-1, wxSOLID, wxDOT,
73 wxLONG_DASH, wxSHORT_DASH, wxDOT_DASH};
74const int WidthValues[] = {-1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
103 virtual int GetnPoints(
void) {
return pRoutePointList->GetCount(); }
104 wxString IsPointNameValid(
RoutePoint *pRP,
const wxString &name)
const;
106 void AddPoint(
RoutePoint *pNewPoint,
bool b_rename_in_sequence =
true,
107 bool b_deferBoxCalc =
false);
108 void InsertPointAndSegment(
RoutePoint *pNewPoint,
int insert_after,
109 bool b_rename_in_sequence =
true,
110 bool b_deferBoxCalc =
false);
111 void AddPointAndSegment(
RoutePoint *pNewPoint,
112 bool b_rename_in_sequence =
true,
113 bool b_deferBoxCalc =
false);
118 bool bRenamePoints =
false);
120 bool bRenamePoints =
false);
123 void DeletePoint(
RoutePoint *rp,
bool bRenamePoints =
false);
124 void RemovePoint(
RoutePoint *rp,
bool bRenamePoints =
false);
125 void DeSelectRoute();
126 void FinalizeForRendering();
128 double planspeed = -1.0);
129 void UpdateSegmentDistances(
double planspeed = -1.0);
131 void SetHiLite(
int width) { m_hiliteWidth = width; }
132 void Reverse(
bool bRenamePoints =
false);
133 void RebuildGUIDList(
void);
134 void RenameRoutePoints();
135 void ReloadRoutePointIcons();
136 wxString GetNewMarkSequenced(
void);
137 void AssembleRoute();
138 bool IsEqualTo(
Route *ptargetroute);
139 void CloneRoute(
Route *psourceroute,
int start_nPoint,
int end_nPoint,
140 const wxString &suffix,
141 const bool duplicate_first_point =
false);
142 void ClearHighlights(
void);
144 void SetVisible(
bool visible =
true,
bool includeWpts =
true);
145 void SetListed(
bool visible =
true);
146 bool IsVisible() {
return m_bVisible; }
147 bool IsListed() {
return m_bListed; }
148 bool IsActive() {
return m_bRtIsActive; }
149 bool IsSelected() {
return m_bRtIsSelected; }
151 bool ContainsSharedWP();
152 void SetSharedWPViz(
bool sharedWPVIZ) { m_bsharedWPViz = sharedWPVIZ; }
153 bool GetSharedWPViz() {
return m_bsharedWPViz; }
155 double GetRouteArrivalRadius(
void) {
return m_ArrivalRadius; }
156 void SetRouteArrivalRadius(
double radius) { m_ArrivalRadius = radius; }
157 void SetDepartureDate(
const wxDateTime &dt) {
158 if (dt.IsValid()) m_PlannedDeparture = dt;
161 wxString GetName()
const {
return m_RouteNameString; }
162 wxString GetTo()
const {
return m_RouteEndString; }
163 wxString GetGUID()
const {
return m_GUID; }
164 void ShowWaypointNames(
bool bshow);
165 bool AreWaypointNamesVisible();
167 int m_ConfigRouteNum;
168 bool m_bRtIsSelected;
171 bool m_bIsBeingCreated;
172 bool m_bIsBeingEdited;
173 double m_route_length;
175 wxString m_RouteNameString;
176 wxString m_RouteStartString;
177 wxString m_RouteEndString;
178 wxString m_RouteDescription;
179 bool m_bDeleteOnArrival;
185 int m_lastMousePointIndex;
186 bool m_NextLegGreatCircle;
187 double m_PlannedSpeed;
188 wxDateTime m_PlannedDeparture;
189 wxString m_TimeDisplayFormat;
191 RoutePointList *pRoutePointList;
193 wxRect active_pt_rect;
197 HyperlinkList *m_HyperlinkList;
205 double m_ArrivalRadius;
209WX_DECLARE_LIST(
Route, RouteList);
Represents a waypoint or mark within the navigation system.
Represents a navigational route in the navigation system.