OpenCPN Partial API docs
Loading...
Searching...
No Matches
routemanagerdialog.cpp
1/*
2 This program is free software; you can redistribute it and/or
3 modify it under the terms of the GNU General Public License
4 as published by the Free Software Foundation; either version 2
5 of the License, or (at your option) any later version.
6
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
11
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor,
15 Boston, MA 02110-1301, USA.
16
17 ---
18 Copyright (C) 2010, Anders Lund <anders@alweb.dk>
19 Copyright (c) 2025 NoCodeHummel
20 */
21
22#include "config.h"
23
24#include "routemanagerdialog.h"
25#include "route_gui.h"
26
27// For compilers that support precompilation, includes "wx/wx.h".
28#include <wx/wxprec.h>
29
30#ifndef WX_PRECOMP
31#include <wx/wx.h>
32#endif
33
34#include <wx/filename.h>
35#include <wx/stdpaths.h>
36#include <wx/progdlg.h>
37#include <wx/clipbrd.h>
38#include <wx/statline.h>
39
40#include <iostream>
41#include <vector>
42#include <algorithm>
43
44#include "model/ais_decoder.h"
45#include "model/config_vars.h"
46#include "model/georef.h"
47#include "model/mdns_cache.h"
48#include "model/mdns_query.h"
49#include "model/navutil_base.h"
50#include "model/own_ship.h"
51#include "model/route.h"
52#include "model/routeman.h"
53#include "model/select.h"
54#include "model/track.h"
55
56#include "chartbase.h"
57#include "chcanv.h"
58#include "dychart.h"
59#include "Layer.h"
60#include "MarkInfo.h"
61#include "navutil.h"
62#include "ocpn_frame.h"
63#include "OCPNPlatform.h"
64#include "routeman_gui.h"
65#include "route_point_gui.h"
66#include "RoutePropDlgImpl.h"
67#include "SendToGpsDlg.h"
68#include "SendToPeerDlg.h"
69#include "styles.h"
70#include "svg_utils.h"
71#include "TrackPropDlg.h"
72
73#ifdef __ANDROID__
74#include "androidUTIL.h"
75#endif
76
77#define DIALOG_MARGIN 10
78
79enum { rmVISIBLE = 0, rmROUTENAME, rmROUTEDESC }; // RMColumns;
80enum { colTRKVISIBLE = 0, colTRKNAME, colTRKLENGTH, colTRKDATE };
81enum { colLAYVISIBLE = 0, colLAYNAME, colLAYITEMS, colLAYPERSIST };
82enum { colWPTICON = 0, colWPTSCALE, colWPTNAME, colWPTDIST };
83
84// GLOBALS :0
85extern RouteList *pRouteList;
86extern std::vector<Track *> g_TrackList;
87extern LayerList *pLayerList;
88extern wxString GetLayerName(int id);
89extern RoutePropDlgImpl *pRoutePropDialog;
90extern TrackPropDlg *pTrackPropDialog;
91extern Routeman *g_pRouteMan;
92extern MyConfig *pConfig;
93extern ActiveTrack *g_pActiveTrack;
94extern MarkInfoDlg *g_pMarkInfoDialog;
95extern MyFrame *gFrame;
96extern bool g_bShowLayers;
97extern wxString g_default_wp_icon;
98extern OCPNPlatform *g_Platform;
99
100// Helper for conditional file name separator
101void appendOSDirSlash(wxString *pString);
102
103static int SortRouteTrack(const int order, const wxString &it1,
104 const wxString &it2) {
105 if (order & 1) return it2.CmpNoCase(it1);
106
107 return it1.CmpNoCase(it2);
108}
109
110// sort callback. Sort by route name.
111static int sort_route_name_dir;
112#if wxCHECK_VERSION(2, 9, 0)
113static int wxCALLBACK SortRoutesOnName(wxIntPtr item1, wxIntPtr item2,
114 wxIntPtr list)
115#else
116int wxCALLBACK SortRoutesOnName(long item1, long item2, long list)
117#endif
118{
119 return SortRouteTrack(sort_route_name_dir, ((Route *)item1)->GetName(),
120 ((Route *)item2)->GetName());
121}
122
123// sort callback. Sort by route Destination.
124static int sort_route_to_dir;
125#if wxCHECK_VERSION(2, 9, 0)
126static int wxCALLBACK SortRoutesOnTo(wxIntPtr item1, wxIntPtr item2,
127 wxIntPtr list)
128#else
129int wxCALLBACK SortRoutesOnTo(long item1, long item2, long list)
130#endif
131{
132 return SortRouteTrack(sort_route_to_dir, ((Route *)item1)->GetTo(),
133 ((Route *)item2)->GetTo());
134}
135
136// sort callback. Sort by track name.
137static int sort_track_name_dir;
138#if wxCHECK_VERSION(2, 9, 0)
139static int wxCALLBACK SortTracksOnName(wxIntPtr item1, wxIntPtr item2,
140 wxIntPtr list)
141#else
142int wxCALLBACK SortTracksOnName(long item1, long item2, long list)
143#endif
144{
145 return SortRouteTrack(sort_track_name_dir, ((Track *)item1)->GetName(),
146 ((Track *)item2)->GetName());
147}
148
149static int SortDouble(const int order, const double &it1, const double &it2) {
150 double l1;
151 double l2;
152
153 if (order & 1) {
154 l1 = it2;
155 l2 = it1;
156 } else {
157 l1 = it1;
158 l2 = it2;
159 }
160
161 if (l1 == l2) return 0;
162 if (l2 < l1) return 1;
163 return -1;
164}
165
166// sort callback. Sort by track length.
167static int sort_track_len_dir;
168#if wxCHECK_VERSION(2, 9, 0)
169static int wxCALLBACK SortTracksOnDistance(wxIntPtr item1, wxIntPtr item2,
170 wxIntPtr list)
171#else
172int wxCALLBACK SortTracksOnDistance(long item1, long item2, long list)
173#endif
174{
175 return SortDouble(sort_track_len_dir, ((Track *)item1)->Length(),
176 ((Track *)item2)->Length());
177}
178
179// sort callback. Sort by track start date.
180static int sort_track_date_dir;
181#if wxCHECK_VERSION(2, 9, 0)
182static int wxCALLBACK SortTracksOnDate(wxIntPtr item1, wxIntPtr item2,
183 wxIntPtr list)
184#else
185int wxCALLBACK SortTracksOnDate(long item1, long item2, long list)
186#endif
187{
188 // Sort date/time using ISO format, which is sortable as a string.
189 return SortRouteTrack(sort_track_date_dir, ((Track *)item1)->GetIsoDateTime(),
190 ((Track *)item2)->GetIsoDateTime());
191}
192
193static int sort_wp_key;
194static int sort_track_key;
195
196// sort callback. Sort by wpt name.
197static int sort_wp_name_dir;
198#if wxCHECK_VERSION(2, 9, 0)
199static int wxCALLBACK SortWaypointsOnName(wxIntPtr item1, wxIntPtr item2,
200 wxIntPtr list)
201#else
202int wxCALLBACK SortWaypointsOnName(long item1, long item2, long list)
203#endif
204
205{
206 RoutePoint *pRP1 = (RoutePoint *)item1;
207 RoutePoint *pRP2 = (RoutePoint *)item2;
208
209 if (pRP1 && pRP2) {
210 if (sort_wp_name_dir & 1)
211 return pRP2->GetName().CmpNoCase(pRP1->GetName());
212 else
213 return pRP1->GetName().CmpNoCase(pRP2->GetName());
214 } else
215 return 0;
216}
217
218// sort callback. Sort by wpt distance.
219static int sort_wp_len_dir;
220#if wxCHECK_VERSION(2, 9, 0)
221static int wxCALLBACK SortWaypointsOnDistance(wxIntPtr item1, wxIntPtr item2,
222 wxIntPtr list)
223#else
224int wxCALLBACK SortWaypointsOnDistance(long item1, long item2, long list)
225#endif
226{
227 double dst1, dst2;
228 DistanceBearingMercator(((RoutePoint *)item1)->m_lat,
229 ((RoutePoint *)item1)->m_lon, gLat, gLon, NULL,
230 &dst1);
231 DistanceBearingMercator(((RoutePoint *)item2)->m_lat,
232 ((RoutePoint *)item2)->m_lon, gLat, gLon, NULL,
233 &dst2);
234 return SortDouble(sort_wp_len_dir, dst1, dst2);
235}
236
237// sort callback. Sort by layer name.
238static int sort_layer_name_dir;
239#if wxCHECK_VERSION(2, 9, 0)
240static int wxCALLBACK SortLayersOnName(wxIntPtr item1, wxIntPtr item2,
241 wxIntPtr list)
242#else
243int wxCALLBACK SortLayersOnName(long item1, long item2, long list)
244#endif
245{
246 return SortRouteTrack(sort_layer_name_dir, ((Layer *)item1)->m_LayerName,
247 ((Layer *)item2)->m_LayerName);
248}
249
250// sort callback. Sort by layer size.
251static int sort_layer_len_dir;
252#if wxCHECK_VERSION(2, 9, 0)
253static int wxCALLBACK SortLayersOnSize(wxIntPtr item1, wxIntPtr item2,
254 wxIntPtr list)
255#else
256int wxCALLBACK SortLayersOnSize(long item1, long item2, long list)
257#endif
258{
259 return SortDouble(sort_layer_len_dir, ((Layer *)item1)->m_NoOfItems,
260 ((Layer *)item2)->m_NoOfItems);
261}
262
263// event table. Mostly empty, because I find it much easier to see what is
264// connected to what using Connect() where possible, so that it is visible in
265// the code.
266BEGIN_EVENT_TABLE(RouteManagerDialog, wxFrame)
267EVT_NOTEBOOK_PAGE_CHANGED(
268 wxID_ANY,
269 RouteManagerDialog::OnTabSwitch) // This should work under Windows :-(
270EVT_CLOSE(RouteManagerDialog::OnClose)
271EVT_COMMAND(wxID_OK, wxEVT_COMMAND_BUTTON_CLICKED, RouteManagerDialog::OnOK)
272EVT_CHAR_HOOK(RouteManagerDialog::OnKey)
273END_EVENT_TABLE()
274
275void RouteManagerDialog::OnKey(wxKeyEvent &ke) {
276 if (ke.GetKeyCode() == WXK_ESCAPE)
277 Close(true);
278 else
279 ke.Skip();
280}
281
282void RouteManagerDialog::OnTabSwitch(wxNotebookEvent &event) {
283 if (!m_pNotebook) return;
284 int current_page = m_pNotebook->GetSelection();
285 if (current_page == 3) {
286 if (btnImport) btnImport->Enable(false);
287 if (btnExport) btnExport->Enable(false);
288 if (btnExportViz) btnExportViz->Enable(false);
289 } else {
290 if (btnImport) btnImport->Enable(true);
291 if (btnExport) btnExport->Enable(true);
292 if (btnExportViz) btnExportViz->Enable(true);
293 }
294 event.Skip(); // remove if using event table... why?
295}
296
297// implementation
298
299bool RouteManagerDialog::instanceFlag = false;
300RouteManagerDialog *RouteManagerDialog::single = NULL;
301
302RouteManagerDialog *RouteManagerDialog::getInstance(wxWindow *parent) {
303 if (!instanceFlag) {
304 single = new RouteManagerDialog(parent);
305 instanceFlag = true;
306 return single;
307 } else {
308 return single;
309 }
310}
311
312RouteManagerDialog::RouteManagerDialog(wxWindow *parent) {
313 long style =
314 wxDEFAULT_FRAME_STYLE | wxRESIZE_BORDER | wxFRAME_FLOAT_ON_PARENT;
315
316 wxFrame::Create(parent, -1, wxString(_("Route & Mark Manager")),
317 wxDefaultPosition, wxDefaultSize, style);
318
319 wxFont *qFont = GetOCPNScaledFont(_("Dialog"));
320 SetFont(*qFont);
321
322 m_lastWptItem = -1;
323 m_lastTrkItem = -1;
324 m_lastRteItem = -1;
325 sort_wp_key = SORT_ON_NAME;
326 sort_track_key = SORT_ON_NAME;
327
328 btnImport = NULL;
329 btnExport = NULL;
330 btnExportViz = NULL;
331
332 Create();
333 routes_update_listener.Init(g_pRouteMan->on_routes_update,
334 [&](wxCommandEvent) { UpdateRouteListCtrl(); });
335}
336
337void RouteManagerDialog::Create() {
338 // Get a text height metric for reference
339 int char_width, char_height;
340 GetTextExtent(_T("W"), &char_width, &char_height);
341 m_charWidth = char_width;
342
343 wxBoxSizer *itemBoxSizer1 = new wxBoxSizer(wxVERTICAL);
344 SetSizer(itemBoxSizer1);
345
346 m_pNotebook = new wxNotebook(this, wxID_ANY, wxDefaultPosition,
347 wxSize(-1, -1), wxNB_TOP);
348 itemBoxSizer1->Add(m_pNotebook, 1, wxALL | wxEXPAND, 5);
349
350 // Create "Routes" panel
351 m_pPanelRte = new wxPanel(m_pNotebook, wxID_ANY, wxDefaultPosition,
352 wxDefaultSize, wxNO_BORDER | wxTAB_TRAVERSAL);
353
354 wxBoxSizer *sbsRoutes = new wxBoxSizer(wxHORIZONTAL);
355 m_pPanelRte->SetSizer(sbsRoutes);
356 m_pNotebook->AddPage(m_pPanelRte, _("Routes"));
357
358 sort_wp_len_dir = 1;
359 sort_wp_name_dir = 0;
360 sort_track_len_dir = 1;
361 sort_route_to_dir = 0;
362 sort_track_name_dir = 0;
363 sort_route_name_dir = 0;
364 sort_layer_name_dir = 0;
365 sort_layer_len_dir = 1;
366
367 m_listIconSize = 2 * GetCharHeight();
368
369 // Setup GUI
370 wxBoxSizer *bSizerRteContents;
371 bSizerRteContents = new wxBoxSizer(wxVERTICAL);
372
373 wxFlexGridSizer *fgSizerFilterRte;
374 fgSizerFilterRte = new wxFlexGridSizer(0, 2, 0, 0);
375 fgSizerFilterRte->AddGrowableCol(1);
376 fgSizerFilterRte->SetFlexibleDirection(wxBOTH);
377 fgSizerFilterRte->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_SPECIFIED);
378
379 m_stFilterRte = new wxStaticText(m_pPanelRte, wxID_ANY, _("Filter"),
380 wxDefaultPosition, wxDefaultSize, 0);
381 m_stFilterRte->Wrap(-1);
382 fgSizerFilterRte->Add(m_stFilterRte, 0, wxALL, 5);
383
384 m_tFilterRte = new wxTextCtrl(m_pPanelRte, wxID_ANY, wxEmptyString,
385 wxDefaultPosition, wxDefaultSize, 0);
386 fgSizerFilterRte->Add(m_tFilterRte, 1, wxALL | wxEXPAND, 5);
387
388 bSizerRteContents->Add(fgSizerFilterRte, 0, wxEXPAND, 5);
389 m_tFilterRte->Connect(
390 wxEVT_COMMAND_TEXT_UPDATED,
391 wxCommandEventHandler(RouteManagerDialog::OnFilterChanged), NULL, this);
392
393 m_cbShowAllRte = new wxCheckBox(m_pPanelRte, wxID_ANY, _("Show all routes"));
394 bSizerRteContents->Add(m_cbShowAllRte, 0, wxEXPAND | wxLEFT, 5);
395 m_cbShowAllRte->Connect(
396 wxEVT_COMMAND_CHECKBOX_CLICKED,
397 wxCommandEventHandler(RouteManagerDialog::OnShowAllRteCBClicked), NULL,
398 this);
399
400 m_pRouteListCtrl =
401 new wxListCtrl(m_pPanelRte, -1, wxDefaultPosition, wxSize(-1, -1),
402 wxLC_REPORT | wxLC_SORT_ASCENDING | wxLC_HRULES |
403 wxBORDER_SUNKEN /*|wxLC_VRULES*/);
404#ifdef __ANDROID__
405 m_pRouteListCtrl->GetHandle()->setStyleSheet(getAdjustedDialogStyleSheet());
406#endif
407
408 m_pRouteListCtrl->Connect(
409 wxEVT_COMMAND_LIST_ITEM_SELECTED,
410 wxListEventHandler(RouteManagerDialog::OnRteSelected), NULL, this);
411 m_pRouteListCtrl->Connect(
412 wxEVT_COMMAND_LIST_ITEM_DESELECTED,
413 wxListEventHandler(RouteManagerDialog::OnRteSelected), NULL, this);
414 m_pRouteListCtrl->Connect(
415 wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
416 wxListEventHandler(RouteManagerDialog::OnRteDefaultAction), NULL, this);
417 m_pRouteListCtrl->Connect(
418 wxEVT_LEFT_DOWN,
419 wxMouseEventHandler(RouteManagerDialog::OnRteToggleVisibility), NULL,
420 this);
421 m_pRouteListCtrl->Connect(
422 wxEVT_COMMAND_LIST_COL_CLICK,
423 wxListEventHandler(RouteManagerDialog::OnRteColumnClicked), NULL, this);
424 bSizerRteContents->Add(m_pRouteListCtrl, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
425 sbsRoutes->Add(bSizerRteContents, 1, wxEXPAND, 5);
426
427 // Columns: visibility ctrl, name
428 // note that under MSW for SetColumnWidth() to work we need to create the
429 // items with images initially even if we specify dummy image id
430 m_pRouteListCtrl->InsertColumn(rmVISIBLE, _("Show"), wxLIST_FORMAT_LEFT,
431 10 /*4 * char_width*/);
432 m_pRouteListCtrl->InsertColumn(rmROUTENAME, _("Route Name"),
433 wxLIST_FORMAT_LEFT, 15 * char_width);
434 m_pRouteListCtrl->InsertColumn(rmROUTEDESC, _("From <-> To"),
435 wxLIST_FORMAT_LEFT, 10 * char_width);
436
437 // Buttons: Delete, Properties...
438 wxBoxSizer *bsRouteButtons = new wxBoxSizer(wxVERTICAL);
439 sbsRoutes->Add(bsRouteButtons, 0, wxEXPAND);
440
441 wxScrolledWindow *winr = new wxScrolledWindow(
442 m_pPanelRte, wxID_ANY, wxDefaultPosition, wxDefaultSize,
443 wxNO_BORDER | wxTAB_TRAVERSAL | wxVSCROLL);
444 winr->SetScrollRate(0, 5);
445
446 bsRouteButtons->Add(winr, 1, wxALL | wxEXPAND, DIALOG_MARGIN);
447
448 wxBoxSizer *bsRouteButtonsInner = new wxBoxSizer(wxVERTICAL);
449 winr->SetSizer(bsRouteButtonsInner);
450
451 btnRteProperties = new wxButton(winr, -1, _("&Properties") + _T("..."));
452 bsRouteButtonsInner->Add(btnRteProperties, 0, wxALL | wxEXPAND,
453 DIALOG_MARGIN);
454 btnRteProperties->Connect(
455 wxEVT_COMMAND_BUTTON_CLICKED,
456 wxCommandEventHandler(RouteManagerDialog::OnRtePropertiesClick), NULL,
457 this);
458
459 btnRteActivate = new wxButton(winr, -1, _("&Activate"));
460 bsRouteButtonsInner->Add(btnRteActivate, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
461 btnRteActivate->Connect(
462 wxEVT_COMMAND_BUTTON_CLICKED,
463 wxCommandEventHandler(RouteManagerDialog::OnRteActivateClick), NULL,
464 this);
465 btnRteActivate->Connect(
466 wxEVT_LEFT_DOWN,
467 wxMouseEventHandler(RouteManagerDialog::OnRteBtnLeftDown), NULL, this);
468
469 btnRteZoomto = new wxButton(winr, -1, _("&Center View"));
470 bsRouteButtonsInner->Add(btnRteZoomto, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
471 btnRteZoomto->Connect(
472 wxEVT_COMMAND_BUTTON_CLICKED,
473 wxCommandEventHandler(RouteManagerDialog::OnRteZoomtoClick), NULL, this);
474 btnRteZoomto->Connect(
475 wxEVT_LEFT_DOWN,
476 wxMouseEventHandler(RouteManagerDialog::OnRteBtnLeftDown), NULL, this);
477
478 btnRteReverse = new wxButton(winr, -1, _("&Reverse"));
479 bsRouteButtonsInner->Add(btnRteReverse, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
480 btnRteReverse->Connect(
481 wxEVT_COMMAND_BUTTON_CLICKED,
482 wxCommandEventHandler(RouteManagerDialog::OnRteReverseClick), NULL, this);
483
484 btnRteDelete = new wxButton(winr, -1, _("&Delete"));
485 bsRouteButtonsInner->Add(btnRteDelete, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
486 btnRteDelete->Connect(
487 wxEVT_COMMAND_BUTTON_CLICKED,
488 wxCommandEventHandler(RouteManagerDialog::OnRteDeleteClick), NULL, this);
489
490 wxString reseq_label(_("&Resequence Waypoints"));
491 wxString export_label(_("&Export selected..."));
492 wxString send_to_gps_label(_("&Send to GPS..."));
493 wxString send_to_peer_label(_("Send to &Peer..."));
494
495#ifdef __ANDROID__
496 reseq_label = wxString(_("Resequence"));
497 export_label = wxString(_("Export"));
498 send_to_gps_label = wxString(_("Send to GPS"));
499 send_to_peer_label = wxString(_("Send to Peer"));
500#endif
501
502 btnRteExport = new wxButton(winr, -1, export_label);
503 bsRouteButtonsInner->Add(btnRteExport, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
504 btnRteExport->Connect(
505 wxEVT_COMMAND_BUTTON_CLICKED,
506 wxCommandEventHandler(RouteManagerDialog::OnRteExportClick), NULL, this);
507
508 btnRteResequence = new wxButton(winr, -1, reseq_label);
509 bsRouteButtonsInner->Add(btnRteResequence, 0, wxALL | wxEXPAND,
510 DIALOG_MARGIN);
511 btnRteResequence->Connect(
512 wxEVT_COMMAND_BUTTON_CLICKED,
513 wxCommandEventHandler(RouteManagerDialog::OnRteResequenceClick), NULL,
514 this);
515
516 btnRteSendToPeer = new wxButton(winr, -1, send_to_peer_label);
517 bsRouteButtonsInner->Add(btnRteSendToPeer, 0, wxALL | wxEXPAND,
518 DIALOG_MARGIN);
519 btnRteSendToPeer->Connect(
520 wxEVT_COMMAND_BUTTON_CLICKED,
521 wxCommandEventHandler(RouteManagerDialog::OnRteSendToPeerClick), NULL,
522 this);
523
524 btnRteSendToGPS = new wxButton(winr, -1, send_to_gps_label);
525 bsRouteButtonsInner->Add(btnRteSendToGPS, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
526 btnRteSendToGPS->Connect(
527 wxEVT_COMMAND_BUTTON_CLICKED,
528 wxCommandEventHandler(RouteManagerDialog::OnRteSendToGPSClick), NULL,
529 this);
530
531 bsRouteButtonsInner->AddSpacer(10);
532
533 btnRteDeleteAll = new wxButton(winr, -1, _("&Delete All"));
534 bsRouteButtonsInner->Add(btnRteDeleteAll, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
535 btnRteDeleteAll->Connect(
536 wxEVT_COMMAND_BUTTON_CLICKED,
537 wxCommandEventHandler(RouteManagerDialog::OnRteDeleteAllClick), NULL,
538 this);
539
540 // Create "Tracks" panel
541 m_pPanelTrk = new wxPanel(m_pNotebook, wxID_ANY, wxDefaultPosition,
542 wxDefaultSize, wxNO_BORDER | wxTAB_TRAVERSAL);
543 wxBoxSizer *sbsTracks = new wxBoxSizer(wxHORIZONTAL);
544 m_pPanelTrk->SetSizer(sbsTracks);
545 m_pNotebook->AddPage(m_pPanelTrk, _("Tracks"));
546
547 wxBoxSizer *bSizerTrkContents;
548 bSizerTrkContents = new wxBoxSizer(wxVERTICAL);
549
550 wxFlexGridSizer *fgSizerFilterTrk;
551 fgSizerFilterTrk = new wxFlexGridSizer(0, 2, 0, 0);
552 fgSizerFilterTrk->AddGrowableCol(1);
553 fgSizerFilterTrk->SetFlexibleDirection(wxBOTH);
554 fgSizerFilterTrk->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_SPECIFIED);
555
556 m_stFilterTrk = new wxStaticText(m_pPanelTrk, wxID_ANY, _("Filter"),
557 wxDefaultPosition, wxDefaultSize, 0);
558 m_stFilterTrk->Wrap(-1);
559 fgSizerFilterTrk->Add(m_stFilterTrk, 0, wxALL, 5);
560
561 m_tFilterTrk = new wxTextCtrl(m_pPanelTrk, wxID_ANY, wxEmptyString,
562 wxDefaultPosition, wxDefaultSize, 0);
563 fgSizerFilterTrk->Add(m_tFilterTrk, 1, wxALL | wxEXPAND, 5);
564
565 bSizerTrkContents->Add(fgSizerFilterTrk, 0, wxEXPAND, 5);
566 m_tFilterTrk->Connect(
567 wxEVT_COMMAND_TEXT_UPDATED,
568 wxCommandEventHandler(RouteManagerDialog::OnFilterChanged), NULL, this);
569
570 m_cbShowAllTrk = new wxCheckBox(m_pPanelTrk, wxID_ANY, _("Show all tracks"));
571 bSizerTrkContents->Add(m_cbShowAllTrk, 0, wxEXPAND | wxLEFT, 5);
572 m_cbShowAllTrk->Connect(
573 wxEVT_COMMAND_CHECKBOX_CLICKED,
574 wxCommandEventHandler(RouteManagerDialog::OnShowAllTrkCBClicked), NULL,
575 this);
576
577 m_pTrkListCtrl =
578 new wxListCtrl(m_pPanelTrk, -1, wxDefaultPosition, wxDefaultSize,
579 wxLC_REPORT | wxLC_SORT_ASCENDING | wxLC_HRULES |
580 wxBORDER_SUNKEN /*|wxLC_VRULES*/);
581
582#ifdef __ANDROID__
583 m_pTrkListCtrl->GetHandle()->setStyleSheet(getAdjustedDialogStyleSheet());
584#endif
585
586 m_pTrkListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_SELECTED,
587 wxListEventHandler(RouteManagerDialog::OnTrkSelected),
588 NULL, this);
589 m_pTrkListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_DESELECTED,
590 wxListEventHandler(RouteManagerDialog::OnTrkSelected),
591 NULL, this);
592 m_pTrkListCtrl->Connect(
593 wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
594 wxListEventHandler(RouteManagerDialog::OnTrkDefaultAction), NULL, this);
595 m_pTrkListCtrl->Connect(
596 wxEVT_LEFT_DOWN,
597 wxMouseEventHandler(RouteManagerDialog::OnTrkToggleVisibility), NULL,
598 this);
599 m_pTrkListCtrl->Connect(
600 wxEVT_COMMAND_LIST_COL_CLICK,
601 wxListEventHandler(RouteManagerDialog::OnTrkColumnClicked), NULL, this);
602 m_pTrkListCtrl->Connect(
603 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK,
604 wxListEventHandler(RouteManagerDialog::OnTrkRightClick), NULL, this);
605 this->Connect(wxEVT_COMMAND_MENU_SELECTED,
606 wxCommandEventHandler(RouteManagerDialog::OnTrkMenuSelected),
607 NULL, this);
608
609 bSizerTrkContents->Add(m_pTrkListCtrl, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
610 sbsTracks->Add(bSizerTrkContents, 1, wxEXPAND, 5);
611
612 m_pTrkListCtrl->InsertColumn(colTRKVISIBLE, _("Show"), wxLIST_FORMAT_LEFT,
613 4 * char_width);
614 m_pTrkListCtrl->InsertColumn(colTRKNAME, _("Track Name"), wxLIST_FORMAT_LEFT,
615 20 * char_width);
616 m_pTrkListCtrl->InsertColumn(colTRKDATE, _("Start Date"), wxLIST_FORMAT_LEFT,
617 20 * char_width);
618 m_pTrkListCtrl->InsertColumn(colTRKLENGTH, _("Length"), wxLIST_FORMAT_LEFT,
619 5 * char_width);
620
621 wxBoxSizer *bsTrkButtons = new wxBoxSizer(wxVERTICAL);
622 sbsTracks->Add(bsTrkButtons, 0, wxEXPAND);
623
624 wxScrolledWindow *wint = new wxScrolledWindow(
625 m_pPanelTrk, wxID_ANY, wxDefaultPosition, wxDefaultSize,
626 wxNO_BORDER | wxTAB_TRAVERSAL | wxVSCROLL);
627 wint->SetScrollRate(0, 5);
628
629 bsTrkButtons->Add(wint, 1, wxALL | wxEXPAND, DIALOG_MARGIN);
630
631 wxBoxSizer *bsTrkButtonsInner = new wxBoxSizer(wxVERTICAL);
632 wint->SetSizer(bsTrkButtonsInner);
633
634 btnTrkNew = new wxButton(wint, -1, _("&Start Track"));
635 bsTrkButtonsInner->Add(btnTrkNew, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
636 btnTrkNew->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
637 wxCommandEventHandler(RouteManagerDialog::OnTrkNewClick),
638 NULL, this);
639
640 btnTrkProperties = new wxButton(wint, -1, _("&Properties"));
641 bsTrkButtonsInner->Add(btnTrkProperties, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
642 btnTrkProperties->Connect(
643 wxEVT_COMMAND_BUTTON_CLICKED,
644 wxCommandEventHandler(RouteManagerDialog::OnTrkPropertiesClick), NULL,
645 this);
646
647 btnTrkDelete = new wxButton(wint, -1, _("&Delete"));
648 bsTrkButtonsInner->Add(btnTrkDelete, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
649 btnTrkDelete->Connect(
650 wxEVT_COMMAND_BUTTON_CLICKED,
651 wxCommandEventHandler(RouteManagerDialog::OnTrkDeleteClick), NULL, this);
652
653 btnTrkExport = new wxButton(wint, -1, _("&Export selected..."));
654 bsTrkButtonsInner->Add(btnTrkExport, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
655 btnTrkExport->Connect(
656 wxEVT_COMMAND_BUTTON_CLICKED,
657 wxCommandEventHandler(RouteManagerDialog::OnTrkExportClick), NULL, this);
658
659 btnTrkRouteFromTrack = new wxButton(wint, -1, _("Route from Track"));
660 bsTrkButtonsInner->Add(btnTrkRouteFromTrack, 0, wxALL | wxEXPAND,
661 DIALOG_MARGIN);
662 btnTrkRouteFromTrack->Connect(
663 wxEVT_COMMAND_BUTTON_CLICKED,
664 wxCommandEventHandler(RouteManagerDialog::OnTrkRouteFromTrackClick), NULL,
665 this);
666
667 btnTrkSendToPeer = new wxButton(wint, -1, _("Send to &Peer"));
668 bsTrkButtonsInner->Add(btnTrkSendToPeer, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
669 btnTrkSendToPeer->Connect(
670 wxEVT_COMMAND_BUTTON_CLICKED,
671 wxCommandEventHandler(RouteManagerDialog::OnTrkSendToPeerClick), NULL,
672 this);
673
674 bsTrkButtonsInner->AddSpacer(10);
675
676 btnTrkDeleteAll = new wxButton(wint, -1, _("&Delete All"));
677 bsTrkButtonsInner->Add(btnTrkDeleteAll, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
678 btnTrkDeleteAll->Connect(
679 wxEVT_COMMAND_BUTTON_CLICKED,
680 wxCommandEventHandler(RouteManagerDialog::OnTrkDeleteAllClick), NULL,
681 this);
682
683 // Create "Marks" panel
684 m_pPanelWpt = new wxPanel(m_pNotebook, wxID_ANY, wxDefaultPosition,
685 wxDefaultSize, wxNO_BORDER | wxTAB_TRAVERSAL);
686 wxBoxSizer *sbsWpts = new wxBoxSizer(wxHORIZONTAL);
687 m_pPanelWpt->SetSizer(sbsWpts);
688 m_pNotebook->AddPage(m_pPanelWpt, _("Marks"));
689
690 wxBoxSizer *bSizerWptContents;
691 bSizerWptContents = new wxBoxSizer(wxVERTICAL);
692
693 wxFlexGridSizer *fgSizerFilterWpt;
694 fgSizerFilterWpt = new wxFlexGridSizer(0, 2, 0, 0);
695 fgSizerFilterWpt->AddGrowableCol(1);
696 fgSizerFilterWpt->SetFlexibleDirection(wxBOTH);
697 fgSizerFilterWpt->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_SPECIFIED);
698
699 m_stFilterWpt = new wxStaticText(m_pPanelWpt, wxID_ANY, _("Filter"),
700 wxDefaultPosition, wxDefaultSize, 0);
701 m_stFilterWpt->Wrap(-1);
702 fgSizerFilterWpt->Add(m_stFilterWpt, 0, wxALL, 5);
703
704 m_tFilterWpt = new wxTextCtrl(m_pPanelWpt, wxID_ANY, wxEmptyString,
705 wxDefaultPosition, wxDefaultSize, 0);
706 fgSizerFilterWpt->Add(m_tFilterWpt, 1, wxALL | wxEXPAND, 5);
707
708 bSizerWptContents->Add(fgSizerFilterWpt, 0, wxEXPAND, 5);
709 m_tFilterWpt->Connect(
710 wxEVT_COMMAND_TEXT_UPDATED,
711 wxCommandEventHandler(RouteManagerDialog::OnFilterChanged), NULL, this);
712
713 m_cbShowAllWP = new wxCheckBox(m_pPanelWpt, wxID_ANY, _("Show all marks"));
714 bSizerWptContents->Add(m_cbShowAllWP, 0, wxEXPAND | wxLEFT, 5);
715 m_cbShowAllWP->Connect(
716 wxEVT_COMMAND_CHECKBOX_CLICKED,
717 wxCommandEventHandler(RouteManagerDialog::OnShowAllWpCBClicked), NULL,
718 this);
719
720 m_pWptListCtrl =
721 new wxListCtrl(m_pPanelWpt, -1, wxDefaultPosition, wxDefaultSize,
722 wxLC_REPORT | wxLC_SORT_ASCENDING | wxLC_HRULES |
723 wxBORDER_SUNKEN /*|wxLC_VRULES*/);
724#ifdef __ANDROID__
725 m_pWptListCtrl->GetHandle()->setStyleSheet(getAdjustedDialogStyleSheet());
726#endif
727
728 m_pWptListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_SELECTED,
729 wxListEventHandler(RouteManagerDialog::OnWptSelected),
730 NULL, this);
731 m_pWptListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_DESELECTED,
732 wxListEventHandler(RouteManagerDialog::OnWptSelected),
733 NULL, this);
734 m_pWptListCtrl->Connect(
735 wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
736 wxListEventHandler(RouteManagerDialog::OnWptDefaultAction), NULL, this);
737 m_pWptListCtrl->Connect(
738 wxEVT_LEFT_DOWN,
739 wxMouseEventHandler(RouteManagerDialog::OnWptToggleVisibility), NULL,
740 this);
741 m_pWptListCtrl->Connect(
742 wxEVT_COMMAND_LIST_COL_CLICK,
743 wxListEventHandler(RouteManagerDialog::OnWptColumnClicked), NULL, this);
744 bSizerWptContents->Add(m_pWptListCtrl, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
745 sbsWpts->Add(bSizerWptContents, 1, wxEXPAND, 5);
746
747 m_pWptListCtrl->InsertColumn(colWPTICON, _("Icon"), wxLIST_FORMAT_LEFT,
748 4 * char_width);
749 m_pWptListCtrl->InsertColumn(colWPTSCALE, _("Scale"), wxLIST_FORMAT_LEFT,
750 8 * char_width);
751 m_pWptListCtrl->InsertColumn(colWPTNAME, _("Mark Name"), wxLIST_FORMAT_LEFT,
752 15 * char_width);
753 m_pWptListCtrl->InsertColumn(colWPTDIST, _("Distance from own ship"),
754 wxLIST_FORMAT_LEFT, 14 * char_width);
755
756 wxBoxSizer *bsWptButtons = new wxBoxSizer(wxVERTICAL);
757 sbsWpts->Add(bsWptButtons, 0, wxEXPAND);
758
759 wxScrolledWindow *winw = new wxScrolledWindow(
760 m_pPanelWpt, wxID_ANY, wxDefaultPosition, wxDefaultSize,
761 wxNO_BORDER | wxTAB_TRAVERSAL | wxVSCROLL);
762 winw->SetScrollRate(0, 5);
763
764 bsWptButtons->Add(winw, 1, wxALL | wxEXPAND, DIALOG_MARGIN);
765
766 wxBoxSizer *bsWptButtonsInner = new wxBoxSizer(wxVERTICAL);
767 winw->SetSizer(bsWptButtonsInner);
768
769 btnWptNew = new wxButton(winw, -1, _("&New"));
770 bsWptButtonsInner->Add(btnWptNew, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
771 btnWptNew->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
772 wxCommandEventHandler(RouteManagerDialog::OnWptNewClick),
773 NULL, this);
774
775 btnWptProperties = new wxButton(winw, -1, _("&Properties"));
776 bsWptButtonsInner->Add(btnWptProperties, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
777 btnWptProperties->Connect(
778 wxEVT_COMMAND_BUTTON_CLICKED,
779 wxCommandEventHandler(RouteManagerDialog::OnWptPropertiesClick), NULL,
780 this);
781
782 btnWptZoomto = new wxButton(winw, -1, _("&Center View"));
783 bsWptButtonsInner->Add(btnWptZoomto, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
784 btnWptZoomto->Connect(
785 wxEVT_COMMAND_BUTTON_CLICKED,
786 wxCommandEventHandler(RouteManagerDialog::OnWptZoomtoClick), NULL, this);
787
788 btnWptDelete = new wxButton(winw, -1, _("&Delete"));
789 bsWptButtonsInner->Add(btnWptDelete, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
790 btnWptDelete->Connect(
791 wxEVT_COMMAND_BUTTON_CLICKED,
792 wxCommandEventHandler(RouteManagerDialog::OnWptDeleteClick), NULL, this);
793
794 btnWptGoTo = new wxButton(winw, -1, _("&Go To"));
795 bsWptButtonsInner->Add(btnWptGoTo, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
796 btnWptGoTo->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
797 wxCommandEventHandler(RouteManagerDialog::OnWptGoToClick),
798 NULL, this);
799
800 btnWptExport = new wxButton(winw, -1, _("&Export selected..."));
801 bsWptButtonsInner->Add(btnWptExport, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
802 btnWptExport->Connect(
803 wxEVT_COMMAND_BUTTON_CLICKED,
804 wxCommandEventHandler(RouteManagerDialog::OnWptExportClick), NULL, this);
805
806 btnWptSendToGPS = new wxButton(winw, -1, _("&Send to GPS"));
807 bsWptButtonsInner->Add(btnWptSendToGPS, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
808 btnWptSendToGPS->Connect(
809 wxEVT_COMMAND_BUTTON_CLICKED,
810 wxCommandEventHandler(RouteManagerDialog::OnWptSendToGPSClick), NULL,
811 this);
812
813 btnWptSendToPeer = new wxButton(winw, -1, _("Send to &Peer"));
814 bsWptButtonsInner->Add(btnWptSendToPeer, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
815 btnWptSendToPeer->Connect(
816 wxEVT_COMMAND_BUTTON_CLICKED,
817 wxCommandEventHandler(RouteManagerDialog::OnWptSendToPeerClick), NULL,
818 this);
819
820 bsWptButtonsInner->AddSpacer(10);
821
822 btnWptDeleteAll = new wxButton(winw, -1, _("Delete All"));
823 bsWptButtonsInner->Add(btnWptDeleteAll, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
824 btnWptDeleteAll->Connect(
825 wxEVT_COMMAND_BUTTON_CLICKED,
826 wxCommandEventHandler(RouteManagerDialog::OnWptDeleteAllClick), NULL,
827 this);
828
829 wxBoxSizer *itemBoxSizer5 = new wxBoxSizer(wxHORIZONTAL);
830 itemBoxSizer1->Add(itemBoxSizer5, 0, wxALL | wxEXPAND);
831
832 wxBoxSizer *itemBoxSizer6 = new wxBoxSizer(wxHORIZONTAL);
833 itemBoxSizer5->Add(itemBoxSizer6, 1, wxALL | wxEXPAND);
834
835 btnImport = new wxButton(this, -1, _("I&mport GPX..."));
836 itemBoxSizer6->Add(btnImport, 0, wxALL | wxALIGN_LEFT, DIALOG_MARGIN);
837 btnImport->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
838 wxCommandEventHandler(RouteManagerDialog::OnImportClick),
839 NULL, this);
840 /*
841 * btnExport = new wxButton( this, -1, _("E&xport All...") );
842 * itemBoxSizer6->Add( btnExport, 0, wxALL | wxALIGN_LEFT, DIALOG_MARGIN );
843 * btnExport->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
844 * wxCommandEventHandler(RouteManagerDialog::OnExportClick), NULL,
845 * this );
846 */
847 btnExportViz = new wxButton(this, -1, _("Export All Visible..."));
848 itemBoxSizer6->Add(btnExportViz, 0, wxALL | wxALIGN_LEFT, DIALOG_MARGIN);
849 btnExportViz->Connect(
850 wxEVT_COMMAND_BUTTON_CLICKED,
851 wxCommandEventHandler(RouteManagerDialog::OnExportVizClick), NULL, this);
852
853 // Dialog OK button
854 wxSize sz = ::wxGetDisplaySize();
855 if (sz.y < sz.x) { // landscape
856 itemBoxSizer6->Add(0, 0, 1, wxEXPAND, 5); // Spacer
857 itemBoxSizer6->Add(new wxButton(this, wxID_OK), 0, wxALL, DIALOG_MARGIN);
858 } else {
859 wxStaticLine *staticLine121 = new wxStaticLine(
860 this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL);
861 itemBoxSizer1->Add(staticLine121, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
862
863 wxBoxSizer *itemBoxSizer7 = new wxBoxSizer(wxHORIZONTAL);
864 itemBoxSizer1->Add(itemBoxSizer7, 0, wxEXPAND);
865
866 wxBoxSizer *itemBoxSizer7a = new wxBoxSizer(wxHORIZONTAL);
867 itemBoxSizer7->Add(itemBoxSizer7a, 1, wxEXPAND);
868
869 itemBoxSizer7a->AddStretchSpacer();
870 itemBoxSizer7a->Add(new wxButton(this, wxID_OK), 0, wxRIGHT | wxALIGN_RIGHT,
871 DIALOG_MARGIN * 4);
872 }
873
874 // Create "Layers" panel
875 m_pPanelLay = new wxPanel(m_pNotebook, wxID_ANY, wxDefaultPosition,
876 wxDefaultSize, wxNO_BORDER | wxTAB_TRAVERSAL);
877 wxBoxSizer *sbsLayers = new wxBoxSizer(wxHORIZONTAL);
878 m_pPanelLay->SetSizer(sbsLayers);
879 m_pNotebook->AddPage(m_pPanelLay, _("Layers"));
880
881 wxBoxSizer *bSizerLayContents;
882 bSizerLayContents = new wxBoxSizer(wxVERTICAL);
883
884 wxFlexGridSizer *fgSizerFilterLay;
885 fgSizerFilterLay = new wxFlexGridSizer(0, 2, 0, 0);
886 fgSizerFilterLay->AddGrowableCol(1);
887 fgSizerFilterLay->SetFlexibleDirection(wxBOTH);
888 fgSizerFilterLay->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_SPECIFIED);
889
890 m_stFilterLay = new wxStaticText(m_pPanelLay, wxID_ANY, _("Filter"),
891 wxDefaultPosition, wxDefaultSize, 0);
892 m_stFilterLay->Wrap(-1);
893 fgSizerFilterLay->Add(m_stFilterLay, 0, wxALL, 5);
894
895 m_tFilterLay = new wxTextCtrl(m_pPanelLay, wxID_ANY, wxEmptyString,
896 wxDefaultPosition, wxDefaultSize, 0);
897 fgSizerFilterLay->Add(m_tFilterLay, 1, wxALL | wxEXPAND, 5);
898
899 bSizerLayContents->Add(fgSizerFilterLay, 0, wxEXPAND, 5);
900 m_tFilterLay->Connect(
901 wxEVT_COMMAND_TEXT_UPDATED,
902 wxCommandEventHandler(RouteManagerDialog::OnFilterChanged), NULL, this);
903
904 m_cbShowAllLay = new wxCheckBox(m_pPanelLay, wxID_ANY, _("Show all layers"));
905 bSizerLayContents->Add(m_cbShowAllLay, 0, wxEXPAND | wxLEFT, 5);
906 m_cbShowAllLay->Connect(
907 wxEVT_COMMAND_CHECKBOX_CLICKED,
908 wxCommandEventHandler(RouteManagerDialog::OnShowAllLayCBClicked), NULL,
909 this);
910
911 m_pLayListCtrl =
912 new wxListCtrl(m_pPanelLay, -1, wxDefaultPosition, wxDefaultSize,
913 wxLC_REPORT | wxLC_SINGLE_SEL | wxLC_SORT_ASCENDING |
914 wxLC_HRULES | wxBORDER_SUNKEN /*|wxLC_VRULES*/);
915#ifdef __ANDROID__
916 m_pLayListCtrl->GetHandle()->setStyleSheet(getAdjustedDialogStyleSheet());
917#endif
918
919 m_pLayListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_SELECTED,
920 wxListEventHandler(RouteManagerDialog::OnLaySelected),
921 NULL, this);
922 m_pLayListCtrl->Connect(wxEVT_COMMAND_LIST_ITEM_DESELECTED,
923 wxListEventHandler(RouteManagerDialog::OnLaySelected),
924 NULL, this);
925 m_pLayListCtrl->Connect(
926 wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
927 wxListEventHandler(RouteManagerDialog::OnLayDefaultAction), NULL, this);
928 m_pLayListCtrl->Connect(
929 wxEVT_LEFT_DOWN,
930 wxMouseEventHandler(RouteManagerDialog::OnLayToggleVisibility), NULL,
931 this);
932 m_pLayListCtrl->Connect(
933 wxEVT_COMMAND_LIST_COL_CLICK,
934 wxListEventHandler(RouteManagerDialog::OnLayColumnClicked), NULL, this);
935 bSizerLayContents->Add(m_pLayListCtrl, 1, wxEXPAND | wxALL, DIALOG_MARGIN);
936 sbsLayers->Add(bSizerLayContents, 1, wxEXPAND, 5);
937
938 m_pLayListCtrl->InsertColumn(colLAYVISIBLE, _T(""), wxLIST_FORMAT_LEFT,
939 4 * char_width);
940 m_pLayListCtrl->InsertColumn(colLAYNAME, _("Layer Name"), wxLIST_FORMAT_LEFT,
941 14 * char_width);
942 m_pLayListCtrl->InsertColumn(colLAYITEMS, _("No. of items"),
943 wxLIST_FORMAT_LEFT, 10 * char_width);
944 m_pLayListCtrl->InsertColumn(colLAYPERSIST, _("Layer type"),
945 wxLIST_FORMAT_LEFT, 10 * char_width);
946
947 wxBoxSizer *bsLayButtons = new wxBoxSizer(wxVERTICAL);
948 sbsLayers->Add(bsLayButtons, 0, wxEXPAND);
949
950 wxScrolledWindow *winl = new wxScrolledWindow(
951 m_pPanelLay, wxID_ANY, wxDefaultPosition, wxDefaultSize,
952 wxNO_BORDER | wxTAB_TRAVERSAL | wxVSCROLL);
953 winl->SetScrollRate(0, 5);
954
955 bsLayButtons->Add(winl, 1, wxALL | wxEXPAND, DIALOG_MARGIN);
956
957 wxBoxSizer *bsLayButtonsInner = new wxBoxSizer(wxVERTICAL);
958 winl->SetSizer(bsLayButtonsInner);
959
960 btnLayNew = new wxButton(winl, -1, _("Create Temporary layer"));
961 bsLayButtonsInner->Add(btnLayNew, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
962 btnLayNew->Connect(wxEVT_COMMAND_BUTTON_CLICKED,
963 wxCommandEventHandler(RouteManagerDialog::OnLayNewClick),
964 NULL, this);
965
966 btnPerLayNew = new wxButton(winl, -1, _("Create Persistent layer"));
967 bsLayButtonsInner->Add(btnPerLayNew, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
968 btnPerLayNew->Connect(
969 wxEVT_COMMAND_BUTTON_CLICKED,
970 wxCommandEventHandler(RouteManagerDialog::OnPerLayNewClick), NULL, this);
971
972 btnLayDelete = new wxButton(winl, -1, _("&Delete"));
973 bsLayButtonsInner->Add(btnLayDelete, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
974 btnLayDelete->Connect(
975 wxEVT_COMMAND_BUTTON_CLICKED,
976 wxCommandEventHandler(RouteManagerDialog::OnLayDeleteClick), NULL, this);
977
978 cbLayToggleChart = new wxCheckBox(winl, -1, _("Show on chart"));
979 bsLayButtonsInner->Add(cbLayToggleChart, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
980 cbLayToggleChart->Connect(
981 wxEVT_COMMAND_CHECKBOX_CLICKED,
982 wxCommandEventHandler(RouteManagerDialog::OnLayToggleChartClick), NULL,
983 this);
984
985 cbLayToggleNames =
986 new wxCheckBox(winl, -1, _("Show WPT names"), wxDefaultPosition,
987 wxDefaultSize, wxCHK_3STATE);
988
989 bsLayButtonsInner->Add(cbLayToggleNames, 0, wxALL | wxEXPAND, DIALOG_MARGIN);
990 cbLayToggleNames->Connect(
991 wxEVT_COMMAND_CHECKBOX_CLICKED,
992 wxCommandEventHandler(RouteManagerDialog::OnLayToggleNamesClick), NULL,
993 this);
994
995 cbLayToggleListing = new wxCheckBox(winl, -1, _("List contents"));
996 bsLayButtonsInner->Add(cbLayToggleListing, 0, wxALL | wxEXPAND,
997 DIALOG_MARGIN);
998 cbLayToggleListing->Connect(
999 wxEVT_COMMAND_CHECKBOX_CLICKED,
1000 wxCommandEventHandler(RouteManagerDialog::OnLayToggleListingClick), NULL,
1001 this);
1002
1003 RecalculateSize();
1004
1005 int imageRefSize = m_charWidth * 2; // g_Platform->GetDisplayDPmm() * 4;
1006 wxImageList *imglist = new wxImageList(imageRefSize, imageRefSize, true, 1);
1007
1008 // Load eye icons
1009 wxString UserIconPath = g_Platform->GetSharedDataDir() + _T("uidata") +
1010 wxFileName::GetPathSeparator();
1011 wxImage iconSVG =
1012 LoadSVG(UserIconPath + _T("eye.svg"), imageRefSize, imageRefSize)
1013 .ConvertToImage();
1014 if (iconSVG.IsOk()) {
1015 iconSVG.Resize(wxSize(imageRefSize, imageRefSize),
1016 wxPoint(0, 0)); // Avoid wxImageList size asserts
1017 imglist->Add(wxBitmap(iconSVG));
1018 }
1019
1020 iconSVG = LoadSVG(UserIconPath + _T("eyex.svg"), imageRefSize, imageRefSize)
1021 .ConvertToImage();
1022 if (iconSVG.IsOk()) {
1023 iconSVG.Resize(wxSize(imageRefSize, imageRefSize), wxPoint(0, 0));
1024 imglist->Add(wxBitmap(iconSVG));
1025 }
1026
1027 iconSVG =
1028 LoadSVG(UserIconPath + _T("eyeGray.svg"), imageRefSize, imageRefSize)
1029 .ConvertToImage();
1030 if (iconSVG.IsOk()) {
1031 iconSVG.Resize(wxSize(imageRefSize, imageRefSize), wxPoint(0, 0));
1032 imglist->Add(wxBitmap(iconSVG));
1033 }
1034
1035 m_pRouteListCtrl->AssignImageList(imglist, wxIMAGE_LIST_SMALL);
1036
1037#ifdef __ANDROID__
1038 m_pRouteListCtrl->GetHandle()->setIconSize(QSize(imageRefSize, imageRefSize));
1039#endif
1040
1041 // Assign will handle destroy, Set will not. It's OK, that's what we want
1042 m_pTrkListCtrl->SetImageList(imglist, wxIMAGE_LIST_SMALL);
1043 m_pWptListCtrl->SetImageList(
1044 pWayPointMan->Getpmarkicon_image_list(m_listIconSize),
1045 wxIMAGE_LIST_SMALL);
1046 m_pLayListCtrl->SetImageList(imglist, wxIMAGE_LIST_SMALL);
1047
1048 SetColorScheme();
1049
1050 UpdateLists();
1051
1052 // This should work under Linux :-(
1053 // m_pNotebook->Connect(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
1054 // wxNotebookEventHandler(RouteManagerDialog::OnTabSwitch), NULL, this);
1055
1056 m_bNeedConfigFlush = false;
1057}
1058
1059RouteManagerDialog::~RouteManagerDialog() {
1060 delete m_pRouteListCtrl;
1061 delete m_pTrkListCtrl;
1062 delete m_pWptListCtrl;
1063 delete m_pLayListCtrl;
1064
1065 delete btnRteDelete;
1066 delete btnRteResequence;
1067 delete btnRteExport;
1068 delete btnRteZoomto;
1069 delete btnRteProperties;
1070 delete btnRteActivate;
1071 delete btnRteReverse;
1072 delete btnRteSendToGPS;
1073 delete btnRteDeleteAll;
1074 delete btnTrkNew;
1075 delete btnTrkProperties;
1076 delete btnTrkDelete;
1077 delete btnTrkExport;
1078 delete btnTrkRouteFromTrack;
1079 delete btnTrkDeleteAll;
1080 delete btnWptNew;
1081 delete btnWptProperties;
1082 delete btnWptZoomto;
1083 delete btnWptDelete;
1084 delete btnWptGoTo;
1085 delete btnWptExport;
1086 delete btnWptSendToGPS;
1087 delete btnWptDeleteAll;
1088 delete btnLayNew;
1089 // delete btnLayProperties;
1090 delete cbLayToggleChart;
1091 delete cbLayToggleListing;
1092 delete cbLayToggleNames;
1093 delete btnLayDelete;
1094 delete btnImport;
1095 delete btnExport;
1096 delete btnExportViz;
1097 btnImport = NULL;
1098 btnExport = NULL;
1099 btnExportViz = NULL;
1100
1101 delete m_pNotebook;
1102 instanceFlag = false;
1103}
1104
1105void RouteManagerDialog::RecalculateSize() {
1106 // All of this dialog layout is expandable, so we need to set a specific size
1107 // target for the onscreen display. The size will then be adjusted so that it
1108 // fits within the parent's client area, with some padding
1109
1110 // Get a text height metric for reference
1111 int char_width, char_height;
1112 GetTextExtent(_T("W"), &char_width, &char_height);
1113
1114 wxSize sz;
1115 sz.x = 60 * char_width;
1116 sz.y = 30 * char_height;
1117
1118 wxSize dsize = GetParent()->GetClientSize();
1119 sz.y = wxMin(sz.y, dsize.y);
1120 sz.x = wxMin(sz.x, dsize.x);
1121 SetClientSize(sz);
1122
1123 wxSize fsize = GetSize();
1124 fsize.y = wxMin(fsize.y, dsize.y);
1125 fsize.x = wxMin(fsize.x, dsize.x);
1126 SetSize(fsize);
1127
1128 CentreOnParent();
1129}
1130
1131void RouteManagerDialog::OnClose(wxCloseEvent &event) {
1132#ifdef __WXGTK__
1133 gFrame->Raise();
1134#endif
1135 Hide();
1136 // pRouteManagerDialog = NULL;
1137}
1138
1139void RouteManagerDialog::OnOK(wxCommandEvent &event) {
1140#ifdef __WXGTK__
1141 gFrame->Raise();
1142#endif
1143 Hide();
1144}
1145
1146void RouteManagerDialog::SetColorScheme() { DimeControl(this); }
1147
1148void RouteManagerDialog::OnShowAllRteCBClicked(wxCommandEvent &event) {
1149 bool viz = m_cbShowAllRte->GetValue();
1150 long item = -1;
1151 for (;;) {
1152 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1153 wxLIST_STATE_DONTCARE);
1154 if (item == -1) break;
1155
1156 Route *pR = (Route *)m_pRouteListCtrl->GetItemData(item);
1157
1158 pR->SetVisible(viz, viz);
1159 pR->SetSharedWPViz(viz);
1160
1161 m_pRouteListCtrl->SetItemImage(item, !viz); // visible
1162
1163 pConfig->UpdateRoute(pR);
1164 }
1165
1166 UpdateWptListCtrlViz();
1167
1168 gFrame->RefreshAllCanvas();
1169}
1170
1171void RouteManagerDialog::OnShowAllWpCBClicked(wxCommandEvent &event) {
1172 bool viz = m_cbShowAllWP->GetValue();
1173 long item = -1;
1174 for (;;) {
1175 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1176 wxLIST_STATE_DONTCARE);
1177 if (item == -1) break;
1178
1179 RoutePoint *pRP = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
1180
1181 if (!pRP->IsSharedInVisibleRoute()) {
1182 pRP->SetVisible(viz);
1183 } else
1184 pRP->SetVisible(true);
1185
1186 m_pWptListCtrl->SetItemImage(item, RoutePointGui(*pRP).GetIconImageIndex());
1187 pConfig->UpdateWayPoint(pRP);
1188 }
1189
1190 gFrame->RefreshAllCanvas();
1191}
1192
1193void RouteManagerDialog::OnShowAllTrkCBClicked(wxCommandEvent &event) {
1194 bool viz = m_cbShowAllTrk->GetValue();
1195 long item = -1;
1196 for (;;) {
1197 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1198 wxLIST_STATE_DONTCARE);
1199 if (item == -1) break;
1200
1201 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
1202
1203 track->SetVisible(viz);
1204 m_pTrkListCtrl->SetItemImage(item, track->IsVisible() ? 0 : 1);
1205 }
1206
1207 gFrame->RefreshAllCanvas();
1208}
1209
1210void RouteManagerDialog::OnShowAllLayCBClicked(wxCommandEvent &event) {
1211 bool viz = m_cbShowAllLay->GetValue();
1212 long item = -1;
1213 for (;;) {
1214 item = m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1215 wxLIST_STATE_DONTCARE);
1216 if (item == -1) break;
1217
1218 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
1219
1220 layer->SetVisibleOnChart(viz);
1221 m_pLayListCtrl->SetItemImage(item, layer->IsVisibleOnChart() ? 0 : 1);
1222
1223 ToggleLayerContentsOnChart(layer);
1224 }
1225
1226 gFrame->RefreshAllCanvas();
1227}
1228
1229void RouteManagerDialog::UpdateRouteListCtrl() {
1230 // if an item was selected, make it selected again if it still exist
1231 long item = -1;
1232 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1233 wxLIST_STATE_SELECTED);
1234 wxUIntPtr selected_id = wxUIntPtr(0);
1235 if (item != -1) selected_id = m_pRouteListCtrl->GetItemData(item);
1236
1237 // Delete existing items
1238 m_pRouteListCtrl->DeleteAllItems();
1239
1240 // then add routes to the listctrl
1241 RouteList::iterator it;
1242 int index = 0;
1243 int list_index = 0;
1244 bool bpartialViz = false;
1245
1246 for (it = (*pRouteList).begin(); it != (*pRouteList).end(); ++it, ++index) {
1247 if (!(*it)->IsListed()) continue;
1248
1249 if (!(*it)->GetName().Upper().Contains(m_tFilterRte->GetValue().Upper())) {
1250 continue;
1251 }
1252
1253 wxListItem li;
1254 li.SetId(list_index);
1255 li.SetImage((*it)->IsVisible() ? 0 : 1);
1256 li.SetData(*it);
1257 li.SetText(_T(""));
1258 li.SetAlign(wxLIST_FORMAT_LEFT);
1259
1260 if ((*it)->m_bRtIsActive) {
1261 wxFont font = *wxNORMAL_FONT;
1262 font.SetWeight(wxFONTWEIGHT_BOLD);
1263 li.SetFont(font);
1264 }
1265
1266 long idx = m_pRouteListCtrl->InsertItem(li);
1267
1268 wxString name = (*it)->m_RouteNameString;
1269 if (name.IsEmpty()) name = _("(Unnamed Route)");
1270 m_pRouteListCtrl->SetItem(idx, rmROUTENAME, name);
1271
1272 wxString startend = (*it)->m_RouteStartString;
1273 if (!(*it)->m_RouteEndString.IsEmpty())
1274 startend.append(_(" - ") + (*it)->m_RouteEndString);
1275 m_pRouteListCtrl->SetItem(idx, rmROUTEDESC, startend);
1276
1277 wxListItem lic;
1278 lic.SetId(list_index);
1279 lic.SetColumn(1);
1280 lic.SetAlign(wxLIST_FORMAT_LEFT);
1281 m_pRouteListCtrl->SetItem(lic);
1282
1283 lic.SetColumn(2);
1284 lic.SetAlign(wxLIST_FORMAT_LEFT);
1285 m_pRouteListCtrl->SetItem(lic);
1286
1287 // Keep track if any are invisible
1288 if (!(*it)->IsVisible()) bpartialViz = true;
1289
1290 list_index++;
1291 }
1292
1293 m_pRouteListCtrl->SortItems(SortRoutesOnName, (wxIntPtr)NULL);
1294
1295 m_pRouteListCtrl->SetColumnWidth(0, 4 * m_charWidth);
1296
1297 // restore selection if possible
1298 // NOTE this will select a different item, if one is deleted
1299 // (the next route will get that index).
1300 if (selected_id != wxUIntPtr(0)) {
1301 item = m_pRouteListCtrl->FindItem(-1, selected_id);
1302 m_pRouteListCtrl->SetItemState(
1303 item, wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
1304 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
1305 }
1306
1307 if ((m_lastRteItem >= 0) && (m_pRouteListCtrl->GetItemCount()))
1308 m_pRouteListCtrl->EnsureVisible(m_lastRteItem);
1309 UpdateRteButtons();
1310
1311 // If any route is invisible, then "show all" cb must be clear.
1312 m_cbShowAllRte->SetValue(!bpartialViz);
1313}
1314
1315void RouteManagerDialog::UpdateRteButtons() {
1316 // enable/disable buttons
1317 long selected_index_index =
1318 m_pRouteListCtrl->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1319 bool enable1 = m_pRouteListCtrl->GetSelectedItemCount() == 1;
1320 bool enablemultiple = m_pRouteListCtrl->GetSelectedItemCount() >= 1;
1321
1322 m_lastRteItem = selected_index_index;
1323
1324 btnRteDelete->Enable(m_pRouteListCtrl->GetSelectedItemCount() > 0);
1325 btnRteZoomto->Enable(enable1);
1326 btnRteProperties->Enable(enable1);
1327 btnRteReverse->Enable(enable1);
1328 btnRteExport->Enable(enablemultiple);
1329 btnRteResequence->Enable(enable1);
1330 btnRteSendToGPS->Enable(enable1);
1331 btnRteDeleteAll->Enable(m_pRouteListCtrl->GetItemCount() > 0);
1332 btnRteSendToPeer->Enable(enablemultiple);
1333
1334 // set activate button text
1335 Route *route = NULL;
1336 if (enable1)
1337 route = (Route *)m_pRouteListCtrl->GetItemData(selected_index_index);
1338
1339 if (!g_pRouteMan->IsAnyRouteActive()) {
1340 btnRteActivate->Enable(enable1);
1341 if (enable1) btnRteActivate->SetLabel(_("Activate"));
1342
1343 } else {
1344 if (enable1) {
1345 if (route && route->m_bRtIsActive) {
1346 btnRteActivate->Enable(enable1);
1347 btnRteActivate->SetLabel(_("Deactivate"));
1348 } else
1349 btnRteActivate->Enable(false);
1350 } else
1351 btnRteActivate->Enable(false);
1352 }
1353}
1354
1355void RouteManagerDialog::MakeAllRoutesInvisible() {
1356 RouteList::iterator it;
1357 long index = 0;
1358 for (it = (*pRouteList).begin(); it != (*pRouteList).end(); ++it, ++index) {
1359 if ((*it)->IsVisible()) { // avoid config updating as much as possible!
1360 (*it)->SetVisible(false);
1361 m_pRouteListCtrl->SetItemImage(m_pRouteListCtrl->FindItem(-1, index),
1362 1); // Likely not same order :0
1363 pConfig->UpdateRoute(*it); // auch, flushes config to disk. FIXME
1364 }
1365 }
1366}
1367
1368void RouteManagerDialog::ZoomtoRoute(Route *route) {
1369 // Calculate bbox center
1370 LLBBox RBBox = route->GetBBox();
1371 double clat = (RBBox.GetMinLat() + RBBox.GetMaxLat()) / 2;
1372 double clon = (RBBox.GetMinLon() + RBBox.GetMaxLon()) / 2;
1373
1374 // Calculate ppm
1375 double rw, rh, ppm; // route width, height, final ppm scale to use
1376 int ww, wh; // chart window width, height
1377 // route bbox width in nm
1378 DistanceBearingMercator(RBBox.GetMinLat(), RBBox.GetMinLon(),
1379 RBBox.GetMinLat(), RBBox.GetMaxLon(), NULL, &rw);
1380 // route bbox height in nm
1381 DistanceBearingMercator(RBBox.GetMinLat(), RBBox.GetMinLon(),
1382 RBBox.GetMaxLat(), RBBox.GetMinLon(), NULL, &rh);
1383
1384 if (gFrame->GetFocusCanvas()) {
1385 gFrame->GetFocusCanvas()->GetSize(&ww, &wh);
1386 ppm = wxMin(ww / (rw * 1852), wh / (rh * 1852)) * (100 - fabs(clat)) / 90;
1387 ppm = wxMin(ppm, 1.0);
1388
1389 gFrame->JumpToPosition(gFrame->GetFocusCanvas(), clat, clon, ppm);
1390 }
1391
1392 m_bNeedConfigFlush = true;
1393}
1394
1395// BEGIN Event handlers
1396void RouteManagerDialog::OnRteDeleteClick(wxCommandEvent &event) {
1397 int count = m_pRouteListCtrl->GetSelectedItemCount();
1398 bool confirmed = RouteGui::OnDelete(this, count);
1399
1400 if (confirmed && count > 0) {
1401 ::wxBeginBusyCursor();
1402 RouteList list;
1403
1404 gFrame->CancelAllMouseRoute();
1405 m_bNeedConfigFlush = true;
1406
1407 long item = -1;
1408 for (;;) {
1409 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1410 wxLIST_STATE_SELECTED);
1411 if (item == -1) break;
1412
1413 Route *proute_to_delete = (Route *)m_pRouteListCtrl->GetItemData(item);
1414
1415 if (proute_to_delete) list.Append(proute_to_delete);
1416 }
1417
1418 for (unsigned int i = 0; i < list.GetCount(); i++) {
1419 Route *route = list.Item(i)->GetData();
1420 if (route) {
1421 pConfig->DeleteConfigRoute(route);
1422 g_pRouteMan->DeleteRoute(route, NavObjectChanges::getInstance());
1423 }
1424 }
1425
1426 m_lastRteItem = -1;
1427 UpdateRouteListCtrl();
1428 UpdateTrkListCtrl();
1429
1430 gFrame->InvalidateAllCanvasUndo();
1431 gFrame->RefreshAllCanvas();
1432 ::wxEndBusyCursor();
1433 }
1434}
1435
1436void RouteManagerDialog::OnRteDeleteAllClick(wxCommandEvent &event) {
1437 int dialog_ret =
1438 OCPNMessageBox(this, _("Are you sure you want to delete <ALL> routes?"),
1439 wxString(_("OpenCPN Alert")), wxYES_NO);
1440
1441 if (dialog_ret == wxID_YES) {
1442 if (g_pRouteMan->GetpActiveRoute()) g_pRouteMan->DeactivateRoute();
1443
1444 gFrame->CancelAllMouseRoute();
1445
1446 g_pRouteMan->DeleteAllRoutes(NavObjectChanges::getInstance());
1447 // TODO Seth
1448 // m_pSelectedRoute = NULL;
1449 // m_pFoundRoutePoint = NULL;
1450 // m_pFoundRoutePointSecond = NULL;
1451
1452 m_lastRteItem = -1;
1453 UpdateRouteListCtrl();
1454
1455 // Also need to update the track list control, since routes and tracks
1456 // share a common global list (pRouteList)
1457 UpdateTrkListCtrl();
1458
1459 if (pRoutePropDialog) pRoutePropDialog->Hide();
1460 gFrame->InvalidateAllCanvasUndo();
1461 gFrame->RefreshAllCanvas();
1462
1463 m_bNeedConfigFlush = true;
1464 }
1465}
1466
1467void RouteManagerDialog::OnRtePropertiesClick(wxCommandEvent &event) {
1468 // Show routeproperties dialog for selected route
1469 long item = -1;
1470 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1471 wxLIST_STATE_SELECTED);
1472 if (item == -1) return;
1473
1474 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1475
1476 if (!route) return;
1477
1478 pRoutePropDialog = RoutePropDlgImpl::getInstance(GetParent());
1479
1480 pRoutePropDialog->SetRouteAndUpdate(route);
1481
1482 if (!pRoutePropDialog->IsShown()) pRoutePropDialog->Show();
1483
1484 pRoutePropDialog->Raise();
1485
1486 m_bNeedConfigFlush = true;
1487}
1488
1489void RouteManagerDialog::OnRteZoomtoClick(wxCommandEvent &event) {
1490 // Zoom into the bounding box of the selected route
1491 long item = -1;
1492 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1493 wxLIST_STATE_SELECTED);
1494 if (item == -1) return;
1495
1496 // optionally make this route exclusively visible
1497 if (m_bCtrlDown) MakeAllRoutesInvisible();
1498
1499 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1500
1501 if (!route) return;
1502
1503 // Ensure route is visible
1504 if (!route->IsVisible()) {
1505 route->SetVisible(true);
1506 m_pRouteListCtrl->SetItemImage(item, route->IsVisible() ? 0 : 1);
1507 pConfig->UpdateRoute(route);
1508 }
1509
1510 ZoomtoRoute(route);
1511}
1512
1513void RouteManagerDialog::OnRteReverseClick(wxCommandEvent &event) {
1514 // Reverse selected route
1515 long item = -1;
1516 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1517 wxLIST_STATE_SELECTED);
1518 if (item == -1) return;
1519
1520 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1521
1522 if (!route) return;
1523 if (route->m_bIsInLayer) return;
1524
1525 int ask_return = OCPNMessageBox(this, g_pRouteMan->GetRouteReverseMessage(),
1526 _("Rename Waypoints?"), wxYES_NO | wxCANCEL);
1527 if (ask_return != wxID_CANCEL) {
1528 bool rename = (ask_return == wxID_YES);
1529
1530 pSelect->DeleteAllSelectableRouteSegments(route);
1531 route->Reverse(rename);
1532 pSelect->AddAllSelectableRouteSegments(route);
1533
1534 // update column 2 - create a UpdateRouteItem(index) instead?
1535 wxString startend = route->m_RouteStartString;
1536 if (!route->m_RouteEndString.IsEmpty())
1537 startend.append(_(" - ") + route->m_RouteEndString);
1538 m_pRouteListCtrl->SetItem(item, 2, startend);
1539
1540 pConfig->UpdateRoute(route);
1541 gFrame->RefreshAllCanvas();
1542 }
1543
1544 m_bNeedConfigFlush = true;
1545}
1546
1547void RouteManagerDialog::OnRteExportClick(wxCommandEvent &event) {
1548 RouteList list;
1549
1550 wxString suggested_name = _T("routes");
1551
1552 long item = -1;
1553 for (;;) {
1554 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1555 wxLIST_STATE_SELECTED);
1556 if (item == -1) break;
1557
1558 Route *proute_to_export = (Route *)m_pRouteListCtrl->GetItemData(item);
1559
1560 if (proute_to_export) {
1561 list.Append(proute_to_export);
1562 if (proute_to_export->m_RouteNameString != wxEmptyString)
1563 suggested_name = proute_to_export->m_RouteNameString;
1564 }
1565 }
1566
1567 ExportGPXRoutes(this, &list, suggested_name);
1568}
1569
1570void RouteManagerDialog::OnRteResequenceClick(wxCommandEvent &event) {
1571 long item = -1;
1572 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1573 wxLIST_STATE_SELECTED);
1574 if (item == -1) return;
1575
1576 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1577
1578 if (!route) return;
1579 if (route->m_bIsInLayer) return;
1580 route->RenameRoutePoints();
1581}
1582
1583void RouteManagerDialog::OnRteSendToPeerClick(wxCommandEvent &event) {
1584 std::vector<Route *> list;
1585 long item = -1;
1586 for (;;) {
1587 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1588 wxLIST_STATE_SELECTED);
1589 if (item == -1) break;
1590
1591 Route *proute = (Route *)m_pRouteListCtrl->GetItemData(item);
1592
1593 if (proute) {
1594 list.push_back(proute);
1595 }
1596 }
1597 if (!list.empty()) {
1598 SendToPeerDlg dlg;
1599 for (auto r : list) {
1600 dlg.SetRoute(r);
1601 }
1602
1603 // Perform initial scan, if necessary
1604
1605 // Check for stale cache...
1606 MdnsCache::GetInstance().Validate();
1607 if (MdnsCache::GetInstance().GetCache().empty()) dlg.SetScanOnCreate(true);
1608
1609 dlg.SetScanTime(5); // seconds
1610 dlg.Create(NULL, -1, _("Send Route(s) to OpenCPN Peer") + _T( "..." ),
1611 _T(""));
1612 dlg.ShowModal();
1613 }
1614}
1615
1616void RouteManagerDialog::OnWptSendToPeerClick(wxCommandEvent &event) {
1617 std::vector<RoutePoint *> list;
1618 long item = -1;
1619 for (;;) {
1620 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1621 wxLIST_STATE_SELECTED);
1622 if (item == -1) break;
1623
1624 RoutePoint *proutep = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
1625
1626 if (proutep) {
1627 list.push_back(proutep);
1628 }
1629 }
1630 if (!list.empty()) {
1631 SendToPeerDlg dlg;
1632 for (auto r : list) {
1633 dlg.SetWaypoint(r);
1634 }
1635
1636 // Perform initial scan, if necessary
1637
1638 // Check for stale cache...
1639 MdnsCache::GetInstance().Validate();
1640 if (MdnsCache::GetInstance().GetCache().empty()) dlg.SetScanOnCreate(true);
1641
1642 dlg.SetScanTime(5); // seconds
1643 dlg.Create(NULL, -1, _("Send Waypoint(s) to OpenCPN Peer") + _T( "..." ),
1644 _T(""));
1645 dlg.ShowModal();
1646 }
1647}
1648
1649void RouteManagerDialog::OnTrkSendToPeerClick(wxCommandEvent &event) {
1650 std::vector<Track *> list;
1651 long item = -1;
1652 for (;;) {
1653 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1654 wxLIST_STATE_SELECTED);
1655 if (item == -1) break;
1656
1657 Track *ptrk = (Track *)m_pTrkListCtrl->GetItemData(item);
1658
1659 if (ptrk) {
1660 list.push_back(ptrk);
1661 }
1662 }
1663 if (!list.empty()) {
1664 SendToPeerDlg dlg;
1665 for (auto r : list) {
1666 dlg.SetTrack(r);
1667 }
1668
1669 // Perform initial scan, if necessary
1670
1671 // Check for stale cache...
1672 MdnsCache::GetInstance().Validate();
1673 if (MdnsCache::GetInstance().GetCache().empty()) dlg.SetScanOnCreate(true);
1674
1675 dlg.SetScanTime(5); // seconds
1676 dlg.Create(NULL, -1, _("Send Track(s) to OpenCPN Peer") + _T( "..." ),
1677 _T(""));
1678 dlg.ShowModal();
1679 }
1680}
1681
1682void RouteManagerDialog::OnRteActivateClick(wxCommandEvent &event) {
1683 // Activate the selected route, unless it already is
1684 long item = -1;
1685 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1686 wxLIST_STATE_SELECTED);
1687 if (item == -1) return;
1688
1689 if (m_bCtrlDown) MakeAllRoutesInvisible();
1690
1691 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1692
1693 if (!route) return;
1694
1695 if (!route->m_bRtIsActive) {
1696 if (!route->IsVisible()) {
1697 route->SetVisible(true);
1698 m_pRouteListCtrl->SetItemImage(item, 0, 0);
1699 }
1700
1701 ZoomtoRoute(route);
1702
1703 RoutePoint *best_point =
1704 g_pRouteMan->FindBestActivatePoint(route, gLat, gLon, gCog, gSog);
1705 g_pRouteMan->ActivateRoute(route, best_point);
1706 // g_pRouteMan->ActivateRoute(route);
1707 } else
1708 g_pRouteMan->DeactivateRoute();
1709
1710 UpdateRouteListCtrl();
1711
1712 pConfig->UpdateRoute(route);
1713
1714 gFrame->RefreshAllCanvas();
1715
1716 // btnRteActivate->SetLabel(route->m_bRtIsActive ? _("Deactivate") :
1717 // _("Activate"));
1718
1719 m_bNeedConfigFlush = true;
1720}
1721
1722void RouteManagerDialog::OnRteToggleVisibility(wxMouseEvent &event) {
1723 wxPoint pos = event.GetPosition();
1724 int flags = 0;
1725 long clicked_index = m_pRouteListCtrl->HitTest(pos, flags);
1726
1727 // Clicking Visibility column?
1728 if (clicked_index > -1 &&
1729 event.GetX() < m_pRouteListCtrl->GetColumnWidth(rmVISIBLE)) {
1730 // Process the clicked item
1731 Route *route = (Route *)m_pRouteListCtrl->GetItemData(clicked_index);
1732
1733 route->SetVisible(!route->IsVisible());
1734
1735 m_pRouteListCtrl->SetItemImage(clicked_index, route->IsVisible() ? 0 : 1);
1736
1737 ::wxBeginBusyCursor();
1738
1739 pConfig->UpdateRoute(route);
1740 gFrame->RefreshAllCanvas();
1741
1742 // We need to update the waypoint list control since the visibility of
1743 // shared waypoints might have changed.
1744 if (g_pRouteMan->DoesRouteContainSharedPoints(route))
1745 UpdateWptListCtrlViz();
1746
1747 // Manage "show all" checkbox
1748 bool viz = true;
1749 long item = -1;
1750 for (;;) {
1751 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1752 wxLIST_STATE_DONTCARE);
1753 if (item == -1) break;
1754
1755 Route *pR = (Route *)m_pRouteListCtrl->GetItemData(item);
1756
1757 if (!pR->IsVisible()) {
1758 viz = false;
1759 break;
1760 }
1761 }
1762 m_cbShowAllRte->SetValue(viz);
1763
1764 ::wxEndBusyCursor();
1765 }
1766
1767 // Allow wx to process...
1768 event.Skip();
1769}
1770
1771void RouteManagerDialog::OnRteBtnLeftDown(wxMouseEvent &event) {
1772 m_bCtrlDown = event.ControlDown();
1773 event.Skip();
1774}
1775
1776void RouteManagerDialog::OnRteSelected(wxListEvent &event) {
1777 long clicked_index = event.m_itemIndex;
1778 // Process the clicked item
1779 Route *route = (Route *)m_pRouteListCtrl->GetItemData(clicked_index);
1780 // route->SetVisible(!route->IsVisible());
1781 m_pRouteListCtrl->SetItemImage(clicked_index, route->IsVisible() ? 0 : 1);
1782 // pConfig->UpdateRoute(route);
1783
1784 gFrame->RefreshAllCanvas();
1785
1786 UpdateRteButtons();
1787}
1788
1789void RouteManagerDialog::OnRteColumnClicked(wxListEvent &event) {
1790 if (event.m_col == 1) {
1791 sort_route_name_dir++;
1792
1793 m_pRouteListCtrl->SortItems(SortRoutesOnName, (wxIntPtr)NULL);
1794 } else if (event.m_col == 2) {
1795 sort_route_to_dir++;
1796 m_pRouteListCtrl->SortItems(SortRoutesOnTo, (wxIntPtr)NULL);
1797 }
1798}
1799
1800void RouteManagerDialog::OnRteSendToGPSClick(wxCommandEvent &event) {
1801 long item = -1;
1802 item = m_pRouteListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1803 wxLIST_STATE_SELECTED);
1804 if (item == -1) return;
1805
1806 Route *route = (Route *)m_pRouteListCtrl->GetItemData(item);
1807
1808 if (!route) return;
1809
1810 SendToGpsDlg *pdlg = new SendToGpsDlg();
1811 pdlg->SetRoute(route);
1812
1813 wxFont fo = GetOCPNGUIScaledFont(_("Dialog"));
1814 pdlg->SetFont(fo);
1815
1816 wxString source;
1817 pdlg->Create(NULL, -1, _("Send to GPS") + _T( "..." ), source);
1818
1819#ifdef __WXOSX__
1820 HideWithEffect(wxSHOW_EFFECT_BLEND);
1821#endif
1822
1823 pdlg->ShowModal();
1824
1825#ifdef __WXOSX__
1826 ShowWithEffect(wxSHOW_EFFECT_BLEND);
1827#endif
1828
1829 pdlg->Destroy();
1830}
1831
1832void RouteManagerDialog::OnRteDefaultAction(wxListEvent &event) {
1833 wxCommandEvent evt;
1834 OnRtePropertiesClick(evt);
1835}
1836
1837void RouteManagerDialog::OnTrkDefaultAction(wxListEvent &event) {
1838 wxCommandEvent evt;
1839 OnTrkPropertiesClick(evt);
1840}
1841
1842void RouteManagerDialog::OnTrkRightClick(wxListEvent &event) {
1843 wxMenu menu;
1844 wxMenuItem *mergeItem = menu.Append(TRACK_MERGE, _("&Merge Selected Tracks"));
1845 mergeItem->Enable(m_pTrkListCtrl->GetSelectedItemCount() > 1);
1846 wxMenuItem *cleanItem = menu.Append(TRACK_CLEAN, _("Reduce Data..."));
1847 cleanItem->Enable(m_pTrkListCtrl->GetSelectedItemCount() == 1);
1848 wxMenuItem *copyItem = menu.Append(TRACK_COPY_TEXT, _("&Copy as text"));
1849 copyItem->Enable(m_pTrkListCtrl->GetSelectedItemCount() > 0);
1850 PopupMenu(&menu);
1851}
1852
1853static bool CompareTracks(Track *track1, Track *track2) {
1854 TrackPoint *start1 = track1->GetPoint(0);
1855 TrackPoint *start2 = track2->GetPoint(0);
1856 return start1->GetCreateTime() < start2->GetCreateTime();
1857}
1858
1859void RouteManagerDialog::OnTrkMenuSelected(wxCommandEvent &event) {
1860 int item = -1;
1861
1862 switch (event.GetId()) {
1863 case TRACK_CLEAN: {
1864 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1865 wxLIST_STATE_SELECTED);
1866 if (item == -1) break;
1867 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
1868 if (track->IsRunning()) {
1869 wxBell();
1870 break;
1871 }
1872
1873 const wxString choices[] = {_T("5.0"), _T("10.0"), _T("20.0"), _T("50.0"),
1874 _T("100.0")};
1875
1876 wxSingleChoiceDialog precisionDlg(this,
1877 _("Select the maximum error allowed "
1878 "(in meters)\nafter data reduction:"),
1879 _("Reduce Data Precision"), 5, choices);
1880#ifdef __WXOSX__
1881 precisionDlg.ShowWindowModal();
1882 while (precisionDlg.IsShown()) {
1883 wxMilliSleep(10);
1884 wxYield();
1885 }
1886 int result = precisionDlg.GetReturnCode();
1887#else
1888 int result = precisionDlg.ShowModal();
1889#endif
1890 if (result == wxID_CANCEL) break;
1891 double precision = 5.0;
1892 switch (precisionDlg.GetSelection()) {
1893 case 0:
1894 precision = 5.0;
1895 break;
1896 case 1:
1897 precision = 10.0;
1898 break;
1899 case 2:
1900 precision = 20.0;
1901 break;
1902 case 3:
1903 precision = 50.0;
1904 break;
1905 case 4:
1906 precision = 100.0;
1907 break;
1908 }
1909
1910 int pointsBefore = track->GetnPoints();
1911
1912 int reduction = track->Simplify(precision);
1913 gFrame->Refresh(false);
1914
1915 reduction = 100 * reduction / pointsBefore;
1916 wxString msg = wxString::Format(
1917 _("The amount of data used by the track\n was reduced by %d%%."),
1918 reduction);
1919 OCPNMessageBox(this, msg, _("OpenCPN info"), wxICON_INFORMATION | wxOK);
1920
1921 UpdateTrkListCtrl();
1922 UpdateRouteListCtrl();
1923
1924 break;
1925 }
1926
1927 case TRACK_COPY_TEXT: {
1928 wxString csvString;
1929 while (1) {
1930 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1931 wxLIST_STATE_SELECTED);
1932 if (item == -1) break;
1933 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
1934 csvString << track->GetName() << _T("\t")
1935 << wxString::Format(_T("%.1f"), track->Length()) << _T("\t")
1936 << _T("\n");
1937 }
1938
1939 if (wxTheClipboard->Open()) {
1940 wxTextDataObject *data = new wxTextDataObject;
1941 data->SetText(csvString);
1942 wxTheClipboard->SetData(data);
1943 wxTheClipboard->Close();
1944 }
1945
1946 break;
1947 }
1948
1949 case TRACK_MERGE: {
1950 Track *targetTrack = NULL;
1951 TrackPoint *tPoint;
1952 TrackPoint *newPoint;
1953 TrackPoint *lastPoint;
1954 std::vector<Track *> mergeList;
1955 std::vector<Track *> deleteList;
1956 bool runningSkipped = false;
1957
1958 ::wxBeginBusyCursor();
1959
1960 while (1) {
1961 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
1962 wxLIST_STATE_SELECTED);
1963 if (item == -1) break;
1964 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
1965 mergeList.push_back(track);
1966 }
1967
1968 std::sort(mergeList.begin(), mergeList.end(), CompareTracks);
1969
1970 targetTrack = mergeList[0];
1971 lastPoint = targetTrack->GetLastPoint();
1972
1973 for (auto const &mergeTrack : mergeList) {
1974 if (mergeTrack == *mergeList.begin()) continue;
1975
1976 if (mergeTrack->IsRunning()) {
1977 runningSkipped = true;
1978 continue;
1979 }
1980
1981 for (int i = 0; i < mergeTrack->GetnPoints(); i++) {
1982 tPoint = mergeTrack->GetPoint(i);
1983 newPoint = new TrackPoint(tPoint->m_lat, tPoint->m_lon,
1984 tPoint->GetCreateTime());
1985
1986 targetTrack->AddPoint(newPoint);
1987
1988 pSelect->AddSelectableTrackSegment(lastPoint->m_lat, lastPoint->m_lon,
1989 newPoint->m_lat, newPoint->m_lon,
1990 lastPoint, newPoint, targetTrack);
1991
1992 lastPoint = newPoint;
1993 }
1994 deleteList.push_back(mergeTrack);
1995 }
1996
1997 for (auto const &deleteTrack : deleteList) {
1998 g_pAIS->DeletePersistentTrack(deleteTrack);
1999 pConfig->DeleteConfigTrack(deleteTrack);
2000 RoutemanGui(*g_pRouteMan).DeleteTrack(deleteTrack);
2001 }
2002
2003 mergeList.clear();
2004 deleteList.clear();
2005
2006 ::wxEndBusyCursor();
2007
2008 UpdateTrkListCtrl();
2009 UpdateRouteListCtrl();
2010 gFrame->RefreshAllCanvas();
2011
2012 if (runningSkipped) {
2013 wxMessageDialog skipWarning(
2014 this,
2015 _("The currently running Track was not merged.\nYou can merge it "
2016 "later when it is completed."),
2017 _T("Warning"), wxCANCEL | wxICON_WARNING);
2018 skipWarning.ShowModal();
2019 }
2020
2021 break;
2022 }
2023 }
2024}
2025
2026void RouteManagerDialog::UpdateTrkListCtrl() {
2027 // if an item was selected, make it selected again if it still exist
2028 long item = -1;
2029 item =
2030 m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2031
2032 wxUIntPtr selected_id = wxUIntPtr(0);
2033 if (item != -1) selected_id = m_pTrkListCtrl->GetItemData(item);
2034
2035 // Delete existing items
2036 m_pTrkListCtrl->DeleteAllItems();
2037
2038 // then add tracks to the listctrl
2039 std::vector<Track *>::iterator it;
2040 int index = 0;
2041 int list_index = 0;
2042 bool bpartialViz = false;
2043
2044 for (Track *trk : g_TrackList) {
2045 if (!trk->IsVisible()) bpartialViz = true;
2046
2047 if (!trk->IsListed()) continue;
2048
2049 if (!trk->GetName(true).Upper().Contains(
2050 m_tFilterTrk->GetValue().Upper())) {
2051 continue;
2052 }
2053
2054 wxListItem li;
2055 li.SetId(list_index);
2056 li.SetImage(trk->IsVisible() ? 0 : 1);
2057 li.SetData(trk);
2058 li.SetText(_T(""));
2059
2060 if (g_pActiveTrack == trk) {
2061 wxFont font = *wxNORMAL_FONT;
2062 font.SetWeight(wxFONTWEIGHT_BOLD);
2063 li.SetFont(font);
2064 }
2065 long idx = m_pTrkListCtrl->InsertItem(li);
2066
2067 m_pTrkListCtrl->SetItem(idx, colTRKNAME, trk->GetName(true));
2068 // Populate the track start date/time, formatted using the global timezone
2069 // settings.
2070 m_pTrkListCtrl->SetItem(idx, colTRKDATE, trk->GetDateTime());
2071
2072 wxString len;
2073 len.Printf(wxT("%5.2f"), trk->Length());
2074 m_pTrkListCtrl->SetItem(idx, colTRKLENGTH, len);
2075
2076 wxListItem lic;
2077 lic.SetId(list_index);
2078 lic.SetColumn(1);
2079 lic.SetAlign(wxLIST_FORMAT_LEFT);
2080 m_pTrkListCtrl->SetItem(lic);
2081
2082 lic.SetColumn(2);
2083 lic.SetAlign(wxLIST_FORMAT_LEFT);
2084 m_pTrkListCtrl->SetItem(lic);
2085
2086 list_index++;
2087 }
2088
2089 switch (sort_track_key) {
2090 case SORT_ON_DISTANCE:
2091 m_pTrkListCtrl->SortItems(SortTracksOnDistance, (wxIntPtr)NULL);
2092 break;
2093 case SORT_ON_DATE:
2094 m_pTrkListCtrl->SortItems(SortTracksOnDate, (wxIntPtr)NULL);
2095 break;
2096 case SORT_ON_NAME:
2097 default:
2098 m_pTrkListCtrl->SortItems(SortTracksOnName, (wxIntPtr)NULL);
2099 break;
2100 }
2101
2102 m_pTrkListCtrl->SetColumnWidth(0, 4 * m_charWidth);
2103
2104 // restore selection if possible
2105 // NOTE this will select a different item, if one is deleted
2106 // (the next route will get that index).
2107 if (selected_id != wxUIntPtr(0)) {
2108 item = m_pTrkListCtrl->FindItem(-1, selected_id);
2109 m_pTrkListCtrl->SetItemState(item,
2110 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
2111 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
2112 }
2113
2114 if ((m_lastTrkItem >= 0) && (m_pTrkListCtrl->GetItemCount()))
2115 m_pTrkListCtrl->EnsureVisible(m_lastTrkItem);
2116
2117 m_cbShowAllTrk->SetValue(!bpartialViz);
2118 UpdateTrkButtons();
2119}
2120
2121void RouteManagerDialog::OnTrkSelected(wxListEvent &event) {
2122 UpdateTrkButtons();
2123}
2124
2125void RouteManagerDialog::OnTrkColumnClicked(wxListEvent &event) {
2126 if (event.m_col == 1) {
2127 sort_track_key = SORT_ON_NAME;
2128 sort_track_name_dir++;
2129 m_pTrkListCtrl->SortItems(SortTracksOnName, (wxIntPtr)NULL);
2130 } else if (event.m_col == 2) {
2131 sort_track_key = SORT_ON_DISTANCE;
2132 sort_track_len_dir++;
2133 m_pTrkListCtrl->SortItems(SortTracksOnDistance, (wxIntPtr)NULL);
2134 } else if (event.m_col == 3) {
2135 sort_track_key = SORT_ON_DATE;
2136 sort_track_date_dir++;
2137 m_pTrkListCtrl->SortItems(SortTracksOnDate, (wxIntPtr)NULL);
2138 }
2139}
2140
2141void RouteManagerDialog::UpdateTrkButtons() {
2142 long item = -1;
2143 item =
2144 m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2145 int items = m_pTrkListCtrl->GetSelectedItemCount();
2146
2147 m_lastTrkItem = item;
2148
2149 btnTrkProperties->Enable(items == 1);
2150 btnTrkDelete->Enable(items >= 1);
2151 btnTrkExport->Enable(items >= 1);
2152 btnTrkRouteFromTrack->Enable(items == 1);
2153 btnTrkDeleteAll->Enable(m_pTrkListCtrl->GetItemCount() > 0);
2154 btnTrkSendToPeer->Enable(items >= 1);
2155}
2156
2157void RouteManagerDialog::OnTrkToggleVisibility(wxMouseEvent &event) {
2158 wxPoint pos = event.GetPosition();
2159 int flags = 0;
2160 long clicked_index = m_pTrkListCtrl->HitTest(pos, flags);
2161
2162 // Clicking Visibility column?
2163 if (clicked_index > -1 &&
2164 event.GetX() < m_pTrkListCtrl->GetColumnWidth(colTRKVISIBLE)) {
2165 // Process the clicked item
2166 Track *track = (Track *)m_pTrkListCtrl->GetItemData(clicked_index);
2167 if (track) {
2168 track->SetVisible(!track->IsVisible());
2169 m_pTrkListCtrl->SetItemImage(clicked_index, track->IsVisible() ? 0 : 1);
2170 }
2171
2172 // Manage "show all" checkbox
2173 bool viz = true;
2174 long item = -1;
2175 for (;;) {
2176 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2177 wxLIST_STATE_DONTCARE);
2178 if (item == -1) break;
2179
2180 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
2181
2182 if (!track->IsVisible()) {
2183 viz = false;
2184 break;
2185 }
2186 }
2187 m_cbShowAllTrk->SetValue(viz);
2188
2189 gFrame->RefreshAllCanvas();
2190 }
2191
2192 // Allow wx to process...
2193 event.Skip();
2194}
2195
2196void RouteManagerDialog::OnTrkNewClick(wxCommandEvent &event) {
2197 gFrame->TrackOff();
2198 if (pConfig && pConfig->IsChangesFileDirty()) {
2199 pConfig->UpdateNavObj(true);
2200 }
2201
2202 gFrame->TrackOn();
2203
2204 UpdateTrkListCtrl();
2205}
2206
2207void RouteManagerDialog::OnTrkPropertiesClick(wxCommandEvent &event) {
2208 // Show trackproperties dialog for selected track
2209 long item = -1;
2210 item =
2211 m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2212 if (item == -1) return;
2213
2214 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
2215
2216 if (!track) return;
2217
2218 pTrackPropDialog = TrackPropDlg::getInstance(GetParent());
2219 pTrackPropDialog->SetTrackAndUpdate(track);
2220
2221 if (!pTrackPropDialog->IsShown()) pTrackPropDialog->Show();
2222 UpdateTrkListCtrl();
2223
2224 m_bNeedConfigFlush = true;
2225}
2226
2227void RouteManagerDialog::OnTrkDeleteClick(wxCommandEvent &event) {
2228 std::vector<Track *> list;
2229
2230 int answer = OCPNMessageBox(
2231 this, _("Are you sure you want to delete the selected object(s)"),
2232 wxString(_("OpenCPN Alert")), wxYES_NO);
2233 if (answer != wxID_YES) return;
2234
2235 bool busy = false;
2236 if (m_pTrkListCtrl->GetSelectedItemCount()) {
2237 ::wxBeginBusyCursor();
2238 m_bNeedConfigFlush = true;
2239 busy = true;
2240 }
2241
2242 long item = -1;
2243 for (;;) {
2244 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2245 wxLIST_STATE_SELECTED);
2246 if (item == -1) break;
2247
2248 Track *ptrack_to_delete = (Track *)m_pTrkListCtrl->GetItemData(item);
2249
2250 if (ptrack_to_delete) list.push_back(ptrack_to_delete);
2251 }
2252
2253 if (busy) {
2254 for (unsigned int i = 0; i < list.size(); i++) {
2255 Track *track = list.at(i);
2256 if (track) {
2257 g_pAIS->DeletePersistentTrack(track);
2258 pConfig->DeleteConfigTrack(track);
2259 RoutemanGui(*g_pRouteMan).DeleteTrack(track);
2260 }
2261 }
2262
2263 m_lastTrkItem = -1;
2264 // UpdateRouteListCtrl();
2265 UpdateTrkListCtrl();
2266
2267 if (pConfig && pConfig->IsChangesFileDirty()) {
2268 pConfig->UpdateNavObj(true);
2269 }
2270
2271 gFrame->InvalidateAllCanvasUndo();
2272 gFrame->RefreshAllCanvas();
2273 ::wxEndBusyCursor();
2274 }
2275}
2276
2277void RouteManagerDialog::OnTrkExportClick(wxCommandEvent &event) {
2278 std::vector<Track *> list;
2279 wxString suggested_name = _T("tracks");
2280
2281 long item = -1;
2282 for (;;) {
2283 item = m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2284 wxLIST_STATE_SELECTED);
2285 if (item == -1) break;
2286
2287 Track *ptrack_to_export = (Track *)m_pTrkListCtrl->GetItemData(item);
2288
2289 if (ptrack_to_export) {
2290 list.push_back(ptrack_to_export);
2291 if (ptrack_to_export->GetName() != wxEmptyString)
2292 suggested_name = ptrack_to_export->GetName();
2293 }
2294 }
2295
2296 ExportGPXTracks(this, &list, suggested_name);
2297}
2298
2299void RouteManagerDialog::TrackToRoute(Track *track) {
2300 if (!track) return;
2301 if (track->m_bIsInLayer) return;
2302
2303 wxGenericProgressDialog pprog(_("OpenCPN Converting Track to Route...."),
2304 _("Processing Waypoints..."), 101, NULL,
2305 wxPD_AUTO_HIDE | wxPD_SMOOTH |
2306 wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME |
2307 wxPD_REMAINING_TIME);
2308
2309 ::wxBeginBusyCursor();
2310
2311 Route *route = track->RouteFromTrack(&pprog);
2312
2313 pRouteList->Append(route);
2314
2315 pprog.Update(101, _("Done."));
2316
2317 gFrame->RefreshAllCanvas();
2318
2319 ::wxEndBusyCursor();
2320}
2321
2322void RouteManagerDialog::OnTrkRouteFromTrackClick(wxCommandEvent &event) {
2323 long item = -1;
2324 item =
2325 m_pTrkListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2326 if (item == -1) return;
2327
2328 Track *track = (Track *)m_pTrkListCtrl->GetItemData(item);
2329
2330 TrackToRoute(track);
2331
2332 UpdateRouteListCtrl();
2333}
2334
2335void RouteManagerDialog::OnTrkDeleteAllClick(wxCommandEvent &event) {
2336 int dialog_ret =
2337 OCPNMessageBox(this, _("Are you sure you want to delete <ALL> tracks?"),
2338 wxString(_("OpenCPN Alert")), wxYES_NO);
2339
2340 if (dialog_ret == wxID_YES) {
2341 RoutemanGui(*g_pRouteMan).DeleteAllTracks();
2342 }
2343
2344 m_lastTrkItem = -1;
2345 m_lastRteItem = -1;
2346
2347 UpdateTrkListCtrl();
2348
2349 // Also need to update the route list control, since routes and tracks
2350 // share a common global list (pRouteList)
2351 UpdateRouteListCtrl();
2352
2353 if (pRoutePropDialog) pRoutePropDialog->Hide();
2354
2355 gFrame->RefreshAllCanvas();
2356
2357 m_bNeedConfigFlush = true;
2358}
2359
2360void RouteManagerDialog::UpdateWptListCtrl(RoutePoint *rp_select,
2361 bool b_retain_sort) {
2362 wxIntPtr selected_id = wxUIntPtr(0);
2363 long item = -1;
2364
2365 if (NULL == rp_select) {
2366 // if an item was selected, make it selected again if it still exists
2367 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2368 wxLIST_STATE_SELECTED);
2369
2370 if (item != -1) selected_id = m_pWptListCtrl->GetItemData(item);
2371 }
2372
2373 // Freshen the image list
2374 m_pWptListCtrl->SetImageList(
2375 pWayPointMan->Getpmarkicon_image_list(m_listIconSize),
2376 wxIMAGE_LIST_SMALL);
2377
2378 m_pWptListCtrl->DeleteAllItems();
2379
2380 wxRoutePointListNode *node = pWayPointMan->GetWaypointList()->GetFirst();
2381
2382 int index = 0;
2383 bool b_anyHidden = false;
2384 while (node) {
2385 RoutePoint *rp = node->GetData();
2386 if (rp && rp->IsListed()) {
2387 if (rp->m_bIsInRoute && !rp->IsShared()) {
2388 node = node->GetNext();
2389 continue;
2390 }
2391
2392 if (!rp->GetName().Upper().Contains(m_tFilterWpt->GetValue().Upper())) {
2393 node = node->GetNext();
2394 continue;
2395 }
2396
2397 wxListItem li;
2398 li.SetId(index);
2399 li.SetImage(RoutePointGui(*rp).GetIconImageIndex());
2400 li.SetData(rp);
2401 li.SetText(_T(""));
2402 long idx = m_pWptListCtrl->InsertItem(li);
2403
2404 wxString scamin = wxString::Format(_T("%i"), (int)rp->GetScaMin());
2405 if (!rp->GetUseSca()) scamin = _("Always");
2406 if (g_bOverruleScaMin) scamin = _("Overruled");
2407 m_pWptListCtrl->SetItem(idx, colWPTSCALE, scamin);
2408
2409 wxString name = rp->GetName();
2410 if (name.IsEmpty()) name = _("(Unnamed Waypoint)");
2411 m_pWptListCtrl->SetItem(idx, colWPTNAME, name);
2412
2413 double dst;
2414 DistanceBearingMercator(rp->m_lat, rp->m_lon, gLat, gLon, NULL, &dst);
2415 wxString dist;
2416 dist.Printf(_T("%5.2f ") + getUsrDistanceUnit(), toUsrDistance(dst));
2417 m_pWptListCtrl->SetItem(idx, colWPTDIST, dist);
2418
2419 if (rp == rp_select) selected_id = (wxIntPtr)rp_select;
2420
2421 wxListItem lic;
2422 lic.SetId(index);
2423 lic.SetColumn(1);
2424 lic.SetAlign(wxLIST_FORMAT_LEFT);
2425 m_pWptListCtrl->SetItem(lic);
2426
2427 lic.SetColumn(2);
2428 lic.SetAlign(wxLIST_FORMAT_LEFT);
2429 m_pWptListCtrl->SetItem(lic);
2430
2431 if (!rp->IsVisible()) b_anyHidden = true;
2432
2433 index++;
2434 }
2435
2436 node = node->GetNext();
2437 }
2438
2439 if (!b_retain_sort) {
2440 m_pWptListCtrl->SortItems(SortWaypointsOnName,
2441 reinterpret_cast<wxIntPtr>(m_pWptListCtrl));
2442 sort_wp_key = SORT_ON_NAME;
2443 } else {
2444 switch (sort_wp_key) {
2445 case SORT_ON_NAME:
2446 m_pWptListCtrl->SortItems(SortWaypointsOnName,
2447 reinterpret_cast<wxIntPtr>(m_pWptListCtrl));
2448 break;
2449 case SORT_ON_DISTANCE:
2450 m_pWptListCtrl->SortItems(SortWaypointsOnDistance,
2451 reinterpret_cast<wxIntPtr>(m_pWptListCtrl));
2452 break;
2453 }
2454 }
2455
2456 if (selected_id != wxUIntPtr(0)) {
2457 item = m_pWptListCtrl->FindItem(-1, selected_id);
2458 m_pWptListCtrl->SetItemState(item,
2459 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
2460 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
2461 }
2462
2463 if ((m_lastWptItem >= 0) && (m_pWptListCtrl->GetItemCount()))
2464 m_pWptListCtrl->EnsureVisible(m_lastWptItem);
2465
2466 if (pWayPointMan->Getpmarkicon_image_list(m_listIconSize)->GetImageCount()) {
2467 int iwidth, iheight;
2468 pWayPointMan->Getpmarkicon_image_list(m_listIconSize)
2469 ->GetSize(0, iwidth, iheight);
2470
2471 m_pWptListCtrl->SetColumnWidth(0, wxMax(iwidth + 4, 4 * m_charWidth));
2472 }
2473
2474 UpdateWptButtons();
2475
2476 m_cbShowAllWP->SetValue(!b_anyHidden);
2477}
2478
2479void RouteManagerDialog::UpdateWptListCtrlViz() {
2480 long item = -1;
2481 for (;;) {
2482 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2483 wxLIST_STATE_DONTCARE);
2484 if (item == -1) break;
2485
2486 RoutePoint *pRP = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2487 int imageIndex = RoutePointGui(*pRP).GetIconImageIndex();
2488
2489 m_pWptListCtrl->SetItemImage(item, imageIndex);
2490 }
2491}
2492
2493void RouteManagerDialog::OnWptDefaultAction(wxListEvent &event) {
2494 wxCommandEvent evt;
2495 OnWptPropertiesClick(evt);
2496}
2497
2498void RouteManagerDialog::OnWptSelected(wxListEvent &event) {
2499 UpdateWptButtons();
2500}
2501
2502void RouteManagerDialog::OnWptColumnClicked(wxListEvent &event) {
2503 if (event.m_col == NAME_COLUMN) {
2504 sort_wp_name_dir++;
2505 m_pWptListCtrl->SortItems(SortWaypointsOnName,
2506 reinterpret_cast<wxIntPtr>(m_pWptListCtrl));
2507 sort_wp_key = SORT_ON_NAME;
2508 } else {
2509 if (event.m_col == DISTANCE_COLUMN) {
2510 sort_wp_len_dir++;
2511 m_pWptListCtrl->SortItems(SortWaypointsOnDistance,
2512 reinterpret_cast<wxIntPtr>(m_pWptListCtrl));
2513 sort_wp_key = SORT_ON_DISTANCE;
2514 }
2515 }
2516 UpdateWptListCtrl();
2517}
2518
2519void RouteManagerDialog::UpdateWptButtons() {
2520 long item = -1;
2521 item =
2522 m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2523 bool enable1 = (m_pWptListCtrl->GetSelectedItemCount() == 1);
2524 bool enablemultiple = (m_pWptListCtrl->GetSelectedItemCount() >= 1);
2525
2526 if (enable1)
2527 m_lastWptItem = item;
2528 else
2529 m_lastWptItem = -1;
2530
2531 // Check selection to see if it is in a layer
2532 // If so, disable the "delete" button
2533 bool b_delete_enable = true;
2534 item = -1;
2535 for (;;) {
2536 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2537 wxLIST_STATE_SELECTED);
2538 if (item == -1) break;
2539
2540 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2541
2542 if (wp && wp->m_bIsInLayer) {
2543 b_delete_enable = false;
2544 break;
2545 }
2546 }
2547
2548 btnWptProperties->Enable(enablemultiple);
2549 btnWptZoomto->Enable(enable1);
2550 btnWptDeleteAll->Enable(m_pWptListCtrl->GetItemCount() > 0);
2551 btnWptDelete->Enable(b_delete_enable && enablemultiple);
2552 btnWptGoTo->Enable(enable1);
2553 btnWptExport->Enable(enablemultiple);
2554 btnWptSendToGPS->Enable(enable1);
2555 btnWptSendToPeer->Enable(enablemultiple);
2556}
2557
2558void RouteManagerDialog::OnWptToggleVisibility(wxMouseEvent &event) {
2559 wxPoint pos = event.GetPosition();
2560 int flags = 0;
2561 long clicked_index = m_pWptListCtrl->HitTest(pos, flags);
2562
2563 // Clicking Visibility column?
2564 if (clicked_index > -1 &&
2565 event.GetX() < m_pWptListCtrl->GetColumnWidth(colTRKVISIBLE)) {
2566 // Process the clicked item
2567 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(clicked_index);
2568
2569 if (!wp->IsSharedInVisibleRoute()) {
2570 wp->SetVisible(!wp->IsVisible());
2571 m_pWptListCtrl->SetItemImage(clicked_index,
2572 RoutePointGui(*wp).GetIconImageIndex());
2573
2574 pConfig->UpdateWayPoint(wp);
2575 }
2576
2577 // Manage "show all" checkbox
2578 bool viz = true;
2579 long item = -1;
2580 for (;;) {
2581 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2582 wxLIST_STATE_DONTCARE);
2583 if (item == -1) break;
2584
2585 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2586
2587 if (!wp->IsVisible()) {
2588 viz = false;
2589 break;
2590 }
2591 }
2592 m_cbShowAllWP->SetValue(viz);
2593
2594 gFrame->RefreshAllCanvas();
2595 } else // clicked on ScaMin column??
2596 if (clicked_index > -1 &&
2597 event.GetX() > m_pWptListCtrl->GetColumnWidth(colTRKVISIBLE) &&
2598 event.GetX() < (m_pWptListCtrl->GetColumnWidth(colTRKVISIBLE) +
2599 m_pWptListCtrl->GetColumnWidth(colWPTSCALE)) &&
2600 !g_bOverruleScaMin) {
2601 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(clicked_index);
2602 wp->SetUseSca(!wp->GetUseSca());
2603 pConfig->UpdateWayPoint(wp);
2604 gFrame->RefreshAllCanvas();
2605 wxString scamin = wxString::Format(_T("%i"), (int)wp->GetScaMin());
2606 if (!wp->GetUseSca()) scamin = _("Always");
2607 m_pWptListCtrl->SetItem(clicked_index, colWPTSCALE, scamin);
2608 }
2609
2610 // Allow wx to process...
2611 event.Skip();
2612}
2613
2614void RouteManagerDialog::OnWptNewClick(wxCommandEvent &event) {
2615 RoutePoint *pWP = new RoutePoint(gLat, gLon, g_default_wp_icon, wxEmptyString,
2616 wxEmptyString);
2617 pWP->m_bIsolatedMark = true; // This is an isolated mark
2618 pSelect->AddSelectableRoutePoint(gLat, gLon, pWP);
2619 pConfig->AddNewWayPoint(pWP, -1); // use auto next num
2620 gFrame->RefreshAllCanvas();
2621
2622 // g_pMarkInfoDialog = MarkInfoImpl::getInstance( GetParent() );
2623 // There is on global instance of the MarkProp Dialog
2624 if (!g_pMarkInfoDialog) g_pMarkInfoDialog = new MarkInfoDlg(GetParent());
2625
2626 WptShowPropertiesDialog(pWP, GetParent());
2627}
2628
2629void RouteManagerDialog::OnWptPropertiesClick(wxCommandEvent &event) {
2630 long item = wxNOT_FOUND;
2631 item =
2632 m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2633 if (item == wxNOT_FOUND) return;
2634
2635 auto pWP = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2636 WptShowPropertiesDialog(pWP, GetParent());
2637
2638 UpdateWptListCtrl();
2639 m_bNeedConfigFlush = true;
2640}
2641
2642void RouteManagerDialog::WptShowPropertiesDialog(RoutePoint *pWP,
2643 wxWindow *parent) {
2644 if (!g_pMarkInfoDialog) // There is one global instance of the MarkProp
2645 // Dialog
2646 g_pMarkInfoDialog = new MarkInfoDlg(parent);
2647
2648 g_pMarkInfoDialog->SetRoutePoint(pWP);
2649 g_pMarkInfoDialog->UpdateProperties();
2650
2651 wxString base_title = _("Waypoint Properties");
2652
2653 if (pWP->m_bIsInLayer) {
2654 wxString caption(wxString::Format(_T("%s, %s: %s"), base_title, _("Layer"),
2655 GetLayerName(pWP->m_LayerID)));
2656 g_pMarkInfoDialog->SetDialogTitle(caption);
2657 } else {
2658 g_pMarkInfoDialog->SetDialogTitle(base_title);
2659 }
2660
2661 if (!g_pMarkInfoDialog->IsShown()) g_pMarkInfoDialog->Show();
2662 g_pMarkInfoDialog->Raise();
2663}
2664
2665void RouteManagerDialog::OnWptZoomtoClick(wxCommandEvent &event) {
2666 long item = -1;
2667 item =
2668 m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2669 if (item == -1) return;
2670
2671 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2672
2673 if (!wp) return;
2674
2675 if (gFrame->GetFocusCanvas()) {
2676 gFrame->JumpToPosition(gFrame->GetFocusCanvas(), wp->m_lat, wp->m_lon,
2677 gFrame->GetFocusCanvas()->GetVPScale());
2678 }
2679}
2680
2681void RouteManagerDialog::OnWptDeleteClick(wxCommandEvent &event) {
2682 RoutePointList list;
2683
2684 int answer = OCPNMessageBox(
2685 this, _("Are you sure you want to delete the selected object(s)"),
2686 wxString(_("OpenCPN Alert")), wxYES_NO);
2687 if (answer != wxID_YES) return;
2688
2689 bool busy = false;
2690 if (m_pWptListCtrl->GetSelectedItemCount()) {
2691 ::wxBeginBusyCursor();
2692 m_bNeedConfigFlush = true;
2693 busy = true;
2694 }
2695
2696 long item = -1;
2697 long item_last_selected = -1;
2698 for (;;) {
2699 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2700 wxLIST_STATE_SELECTED);
2701 if (item == -1) break;
2702
2703 item_last_selected = item;
2704 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2705
2706 if (wp && !wp->m_bIsInLayer) list.Append(wp);
2707 }
2708
2709 if (busy) {
2710 for (unsigned int i = 0; i < list.GetCount(); i++) {
2711 RoutePoint *wp = list.Item(i)->GetData();
2712 if (wp) {
2713 if (wp->m_bIsInRoute) {
2714 if (wxID_YES ==
2715 OCPNMessageBox(this,
2716 _("The waypoint you want to delete is used in a "
2717 "route, do you really want to delete it?"),
2718 _("OpenCPN Alert"), wxYES_NO))
2719 pWayPointMan->DestroyWaypoint(wp);
2720 } else
2721 pWayPointMan->DestroyWaypoint(wp);
2722 }
2723 }
2724
2725 long item_next =
2726 m_pWptListCtrl->GetNextItem(item_last_selected); // next in list
2727 RoutePoint *wp_next = NULL;
2728 if (item_next > -1)
2729 wp_next = (RoutePoint *)m_pWptListCtrl->GetItemData(item_next);
2730
2731 m_lastWptItem = item_next;
2732
2733 UpdateRouteListCtrl();
2734 UpdateTrkListCtrl();
2735 UpdateWptListCtrl(wp_next, true);
2736
2737 if (g_pMarkInfoDialog) {
2738 g_pMarkInfoDialog->ClearData();
2739 }
2740
2741 gFrame->InvalidateAllCanvasUndo();
2742 gFrame->RefreshAllCanvas();
2743 ::wxEndBusyCursor();
2744 }
2745}
2746
2747void RouteManagerDialog::OnWptGoToClick(wxCommandEvent &event) {
2748 long item = -1;
2749 item =
2750 m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2751 if (item == -1) return;
2752
2753 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2754
2755 if (!wp) return;
2756
2757 RoutePoint *pWP_src = new RoutePoint(gLat, gLon, g_default_wp_icon,
2758 wxEmptyString, wxEmptyString);
2759 pSelect->AddSelectableRoutePoint(gLat, gLon, pWP_src);
2760
2761 Route *temp_route = new Route();
2762 pRouteList->Append(temp_route);
2763
2764 temp_route->AddPoint(pWP_src);
2765 temp_route->AddPoint(wp);
2766
2767 pSelect->AddSelectableRouteSegment(gLat, gLon, wp->m_lat, wp->m_lon, pWP_src,
2768 wp, temp_route);
2769
2770 wxString name = wp->GetName();
2771 if (name.IsEmpty()) name = _("(Unnamed Waypoint)");
2772 wxString rteName = _("Go to ");
2773 rteName.Append(name);
2774 temp_route->m_RouteNameString = rteName;
2775 temp_route->m_RouteStartString = _("Here");
2776
2777 temp_route->m_RouteEndString = name;
2778 temp_route->m_bDeleteOnArrival = true;
2779
2780 if (g_pRouteMan->GetpActiveRoute()) g_pRouteMan->DeactivateRoute();
2781
2782 g_pRouteMan->ActivateRoute(temp_route, wp);
2783
2784 UpdateRouteListCtrl();
2785}
2786
2787void RouteManagerDialog::OnWptExportClick(wxCommandEvent &event) {
2788 RoutePointList list;
2789
2790 wxString suggested_name = _T("waypoints");
2791
2792 long item = -1;
2793 for (;;) {
2794 item = m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2795 wxLIST_STATE_SELECTED);
2796 if (item == -1) break;
2797
2798 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2799
2800 if (wp && !wp->m_bIsInLayer) {
2801 list.Append(wp);
2802 if (wp->GetName() != wxEmptyString) suggested_name = wp->GetName();
2803 }
2804 }
2805
2806 ExportGPXWaypoints(this, &list, suggested_name);
2807}
2808
2809void RouteManagerDialog::OnWptSendToGPSClick(wxCommandEvent &event) {
2810 long item = -1;
2811 item =
2812 m_pWptListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2813 if (item == -1) return;
2814
2815 RoutePoint *wp = (RoutePoint *)m_pWptListCtrl->GetItemData(item);
2816
2817 if (!wp) return;
2818
2819 SendToGpsDlg *pdlg = new SendToGpsDlg();
2820 pdlg->SetWaypoint(wp);
2821
2822 wxString source;
2823 pdlg->Create(NULL, -1, _("Send to GPS") + _T( "..." ), source);
2824
2825#ifdef __WXOSX__
2826 HideWithEffect(wxSHOW_EFFECT_BLEND);
2827#endif
2828 pdlg->ShowModal();
2829#ifdef __WXOSX__
2830 ShowWithEffect(wxSHOW_EFFECT_BLEND);
2831#endif
2832
2833 delete pdlg;
2834}
2835
2836void RouteManagerDialog::OnWptDeleteAllClick(wxCommandEvent &event) {
2837 wxString prompt;
2838 int buttons, type;
2839 if (!pWayPointMan->SharedWptsExist()) {
2840 prompt = _("Are you sure you want to delete <ALL> waypoints?");
2841 buttons = wxYES_NO;
2842 type = 1;
2843 } else {
2844 prompt =
2845 _("There are some waypoints used in routes or anchor alarms.\n Do you "
2846 "want to delete them as well?\n This will change the routes and "
2847 "disable the anchor alarms.\n Answering No keeps the waypoints used "
2848 "in routes or alarms.");
2849 buttons = wxYES_NO | wxCANCEL;
2850 type = 2;
2851 }
2852 int answer =
2853 OCPNMessageBox(this, prompt, wxString(_("OpenCPN Alert")), buttons);
2854 if (answer == wxID_YES) pWayPointMan->DeleteAllWaypoints(true);
2855 if (answer == wxID_NO && type == 2)
2856 pWayPointMan->DeleteAllWaypoints(false); // only delete unused waypoints
2857
2858 if (g_pMarkInfoDialog) {
2859 g_pMarkInfoDialog->ClearData();
2860 }
2861
2862 m_lastWptItem = -1;
2863 UpdateRouteListCtrl();
2864 UpdateWptListCtrl();
2865 gFrame->InvalidateAllCanvasUndo();
2866 gFrame->RefreshAllCanvas();
2867}
2868
2869void RouteManagerDialog::OnLaySelected(wxListEvent &event) {
2870 UpdateLayButtons();
2871}
2872
2873void RouteManagerDialog::OnLayColumnClicked(wxListEvent &event) {
2874 if (event.m_col == 1) {
2875 sort_layer_name_dir++;
2876 m_pLayListCtrl->SortItems(SortLayersOnName, (wxIntPtr)NULL);
2877 } else if (event.m_col == 2) {
2878 sort_layer_len_dir++;
2879 m_pLayListCtrl->SortItems(SortLayersOnSize, (wxIntPtr)NULL);
2880 }
2881}
2882
2883void RouteManagerDialog::UpdateLayButtons() {
2884 long item = -1;
2885 item =
2886 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2887 bool enable = (item != -1);
2888
2889 // btnLayProperties->Enable(false);
2890 btnLayDelete->Enable(enable);
2891 cbLayToggleChart->Enable(enable);
2892 cbLayToggleListing->Enable(enable);
2893 cbLayToggleNames->Enable(enable);
2894
2895 if (item >= 0) {
2896 cbLayToggleChart->SetValue(
2897 ((Layer *)m_pLayListCtrl->GetItemData(item))->IsVisibleOnChart());
2898
2899 cbLayToggleNames->Set3StateValue(
2900 ((Layer *)m_pLayListCtrl->GetItemData(item))->HasVisibleNames());
2901
2902 cbLayToggleListing->SetValue(
2903 ((Layer *)m_pLayListCtrl->GetItemData(item))->IsVisibleOnListing());
2904
2905 } else {
2906 cbLayToggleChart->SetValue(true);
2907 cbLayToggleNames->Set3StateValue(wxCHK_UNDETERMINED);
2908 cbLayToggleListing->SetValue(true);
2909 }
2910}
2911
2912void RouteManagerDialog::OnLayToggleVisibility(wxMouseEvent &event) {
2913 wxPoint pos = event.GetPosition();
2914 int flags = 0;
2915 long clicked_index = m_pLayListCtrl->HitTest(pos, flags);
2916
2917 // Clicking Visibility column?
2918 if (clicked_index > -1 &&
2919 event.GetX() < m_pLayListCtrl->GetColumnWidth(colLAYVISIBLE)) {
2920 // Process the clicked item
2921 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(clicked_index);
2922
2923 layer->SetVisibleOnChart(!layer->IsVisibleOnChart());
2924 m_pLayListCtrl->SetItemImage(clicked_index,
2925 layer->IsVisibleOnChart() ? 0 : 1);
2926
2927 // Manage "show all" checkbox
2928 bool viz = true;
2929 long item = -1;
2930 for (;;) {
2931 item = m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL,
2932 wxLIST_STATE_DONTCARE);
2933 if (item == -1) break;
2934
2935 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
2936
2937 if (!layer->IsVisibleOnChart()) {
2938 viz = false;
2939 break;
2940 }
2941 }
2942 m_cbShowAllLay->SetValue(viz);
2943
2944 ToggleLayerContentsOnChart(layer);
2945 }
2946
2947 // Allow wx to process...
2948 event.Skip();
2949}
2950
2951void RouteManagerDialog::UpdateLists() {
2952 UpdateRouteListCtrl();
2953 UpdateTrkListCtrl();
2954 UpdateWptListCtrl();
2955 UpdateLayListCtrl();
2956}
2957
2958void RouteManagerDialog::OnLayNewClick(wxCommandEvent &event) {
2959 AddNewLayer(false); // Temporary layer
2960}
2961
2962void RouteManagerDialog::OnPerLayNewClick(wxCommandEvent &event) {
2963 AddNewLayer(true); // Persistent layer
2964}
2965
2966void RouteManagerDialog::AddNewLayer(bool isPersistent) {
2967 bool show_flag = g_bShowLayers;
2968 g_bShowLayers = true;
2969
2970 UI_ImportGPX(this, true, _T(""), true, isPersistent);
2971
2972 g_bShowLayers = show_flag;
2973 UpdateLists();
2974 gFrame->RefreshAllCanvas();
2975}
2976
2977void RouteManagerDialog::OnLayPropertiesClick(wxCommandEvent &event) {
2978 // Show layer properties dialog for selected layer - todo
2979 long item = -1;
2980 item =
2981 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2982 if (item == -1) return;
2983}
2984
2985void RouteManagerDialog::OnLayDeleteClick(wxCommandEvent &event) {
2986 long item = -1;
2987 item =
2988 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
2989 if (item == -1) return;
2990
2991 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
2992
2993 if (!layer) return;
2994 // Check if this file is a persistent layer.
2995 // If added in this session the listctrl file path is origin dir and not yet
2996 // /layers
2997 bool ispers = false;
2998 wxString destf, f, name, ext;
2999 f = layer->m_LayerFileName;
3000 wxFileName::SplitPath(f, NULL, NULL, &name, &ext);
3001 destf = g_Platform->GetPrivateDataDir();
3002 appendOSDirSlash(&destf);
3003 destf.Append(_T("layers"));
3004 appendOSDirSlash(&destf);
3005 destf << name << _T(".") << ext;
3006
3007 wxString prompt = _(
3008 "Are you sure you want to delete this layer and <ALL> of its contents?");
3009 if (wxFileExists(destf)) {
3010 prompt.Append(_T("\n"));
3011 prompt.Append(
3012 _("The file will also be deleted from OpenCPN's layer directory."));
3013 prompt.Append(_T("\n (") + destf + _T(")" ));
3014 ispers = true;
3015 }
3016 int answer =
3017 OCPNMessageBox(this, prompt, wxString(_("OpenCPN Alert")), wxYES_NO);
3018 if (answer == wxID_NO) return;
3019
3020 // Delete a persistent layer file if present
3021 if (ispers) {
3022 wxString remMSG;
3023 if (wxRemoveFile(destf))
3024 remMSG.sprintf(_T("Layer file: %s is deleted"), destf);
3025 else
3026 remMSG.sprintf(_T("Error deleting Layer file: %s"), destf);
3027
3028 wxLogMessage(remMSG);
3029 }
3030
3031 // Process Tracks and Routes in this layer
3032 wxRouteListNode *node1 = pRouteList->GetFirst();
3033 while (node1) {
3034 Route *pRoute = node1->GetData();
3035 wxRouteListNode *next_node = node1->GetNext();
3036 if (pRoute->m_bIsInLayer && (pRoute->m_LayerID == layer->m_LayerID)) {
3037 pRoute->m_bIsInLayer = false;
3038 pRoute->m_LayerID = 0;
3039 g_pRouteMan->DeleteRoute(pRoute, NavObjectChanges::getInstance());
3040 }
3041 node1 = next_node;
3042 }
3043
3044 for (Track *pTrack : g_TrackList) {
3045 if (pTrack->m_bIsInLayer && (pTrack->m_LayerID == layer->m_LayerID)) {
3046 pTrack->m_bIsInLayer = false;
3047 pTrack->m_LayerID = 0;
3048 RoutemanGui(*g_pRouteMan).DeleteTrack(pTrack);
3049 }
3050 }
3051
3052 // Process waypoints in this layer
3053 wxRoutePointListNode *node = pWayPointMan->GetWaypointList()->GetFirst();
3054 wxRoutePointListNode *node3;
3055
3056 while (node) {
3057 node3 = node->GetNext();
3058 RoutePoint *rp = node->GetData();
3059 if (rp && (rp->m_LayerID == layer->m_LayerID)) {
3060 rp->m_bIsInLayer = false;
3061 rp->m_LayerID = 0;
3062 pWayPointMan->DestroyWaypoint(
3063 rp, false); // no need to update the change set on layer ops
3064 }
3065
3066 node = node3;
3067 node3 = NULL;
3068 }
3069
3070 if (g_pMarkInfoDialog) {
3071 g_pMarkInfoDialog->ClearData();
3072 }
3073
3074 pLayerList->DeleteObject(layer);
3075
3076 UpdateLists();
3077
3078 gFrame->RefreshAllCanvas();
3079
3080 m_bNeedConfigFlush = false;
3081}
3082
3083void RouteManagerDialog::OnLayToggleChartClick(wxCommandEvent &event) {
3084 // Toggle visibility on chart for selected layer
3085 long item = -1;
3086 item =
3087 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
3088 if (item == -1) return;
3089
3090 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
3091
3092 if (!layer) return;
3093
3094 layer->SetVisibleOnChart(!layer->IsVisibleOnChart());
3095 m_pLayListCtrl->SetItemImage(item, layer->IsVisibleOnChart() ? 0 : 1);
3096
3097 ToggleLayerContentsOnChart(layer);
3098}
3099
3100void RouteManagerDialog::ToggleLayerContentsOnChart(Layer *layer) {
3101 // Process Tracks and Routes in this layer
3102 wxRouteListNode *node1 = pRouteList->GetFirst();
3103 while (node1) {
3104 Route *pRoute = node1->GetData();
3105 if (pRoute->m_bIsInLayer && (pRoute->m_LayerID == layer->m_LayerID)) {
3106 pRoute->SetVisible(layer->IsVisibleOnChart());
3107 }
3108 node1 = node1->GetNext();
3109 }
3110
3111 for (Track *pTrack : g_TrackList) {
3112 if (pTrack->m_bIsInLayer && (pTrack->m_LayerID == layer->m_LayerID))
3113 pTrack->SetVisible(layer->IsVisibleOnChart());
3114 }
3115
3116 // Process waypoints in this layer
3117 wxRoutePointListNode *node = pWayPointMan->GetWaypointList()->GetFirst();
3118
3119 while (node) {
3120 RoutePoint *rp = node->GetData();
3121 if (rp && (rp->m_LayerID == layer->m_LayerID)) {
3122 rp->SetVisible(layer->IsVisibleOnChart());
3123 }
3124
3125 node = node->GetNext();
3126 }
3127 UpdateLists();
3128
3129 UpdateLayButtons();
3130
3131 gFrame->RefreshAllCanvas();
3132}
3133
3134void RouteManagerDialog::OnLayToggleNamesClick(wxCommandEvent &event) {
3135 // Toggle WPT names visibility on chart for selected layer
3136 long item = -1;
3137 item =
3138 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
3139 if (item == -1) return;
3140
3141 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
3142
3143 if (!layer) return;
3144
3145 layer->SetVisibleNames(cbLayToggleNames->Get3StateValue());
3146
3147 ToggleLayerContentsNames(layer);
3148}
3149
3150void RouteManagerDialog::ToggleLayerContentsNames(Layer *layer) {
3151 // Process Tracks and Routes in this layer
3152 wxRouteListNode *node1 = pRouteList->GetFirst();
3153 while (node1) {
3154 Route *pRoute = node1->GetData();
3155 if (pRoute->m_bIsInLayer && (pRoute->m_LayerID == layer->m_LayerID)) {
3156 wxRoutePointListNode *node = pRoute->pRoutePointList->GetFirst();
3157 RoutePoint *prp1 = node->GetData();
3158 while (node) {
3159 if (layer->HasVisibleNames() == wxCHK_UNDETERMINED) {
3160 prp1->m_bShowName = prp1->m_bShowNameData;
3161 } else {
3162 prp1->m_bShowName = (layer->HasVisibleNames() == wxCHK_CHECKED);
3163 }
3164 node = node->GetNext();
3165 }
3166 }
3167 node1 = node1->GetNext();
3168 }
3169
3170 // Process waypoints in this layer
3171 wxRoutePointListNode *node = pWayPointMan->GetWaypointList()->GetFirst();
3172
3173 while (node) {
3174 RoutePoint *rp = node->GetData();
3175 if (rp && (rp->m_LayerID == layer->m_LayerID)) {
3176 rp->SetNameShown(layer->HasVisibleNames() == wxCHK_CHECKED ||
3177 (rp->m_bShowNameData &&
3178 layer->HasVisibleNames() == wxCHK_UNDETERMINED));
3179 }
3180
3181 node = node->GetNext();
3182 }
3183
3184 UpdateLayButtons();
3185
3186 gFrame->RefreshAllCanvas();
3187}
3188
3189void RouteManagerDialog::OnLayToggleListingClick(wxCommandEvent &event) {
3190 // Toggle visibility on listing for selected layer
3191 long item = -1;
3192 item =
3193 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
3194 if (item == -1) return;
3195
3196 Layer *layer = (Layer *)m_pLayListCtrl->GetItemData(item);
3197
3198 if (!layer) return;
3199
3200 layer->SetVisibleOnListing(!layer->IsVisibleOnListing());
3201
3202 ToggleLayerContentsOnListing(layer);
3203}
3204
3205void RouteManagerDialog::ToggleLayerContentsOnListing(Layer *layer) {
3206 ::wxBeginBusyCursor();
3207
3208 // Process Tracks and Routes in this layer
3209 wxRouteListNode *node1 = pRouteList->GetFirst();
3210 while (node1) {
3211 Route *pRoute = node1->GetData();
3212 if (pRoute->m_bIsInLayer && (pRoute->m_LayerID == layer->m_LayerID)) {
3213 pRoute->SetListed(layer->IsVisibleOnListing());
3214 }
3215 node1 = node1->GetNext();
3216 }
3217
3218 for (Track *pTrack : g_TrackList) {
3219 if (pTrack->m_bIsInLayer && (pTrack->m_LayerID == layer->m_LayerID))
3220 pTrack->SetListed(layer->IsVisibleOnListing());
3221 }
3222
3223 // Process waypoints in this layer
3224 // n.b. If the waypoint belongs to a track, and is not shared, then do not
3225 // list it. This is a performance optimization, allowing large track support.
3226
3227 wxRoutePointListNode *node = pWayPointMan->GetWaypointList()->GetFirst();
3228
3229 while (node) {
3230 RoutePoint *rp = node->GetData();
3231 if (rp && rp->m_bIsolatedMark && (rp->m_LayerID == layer->m_LayerID)) {
3232 rp->SetListed(layer->IsVisibleOnListing());
3233 }
3234
3235 node = node->GetNext();
3236 }
3237
3238 UpdateLists();
3239
3240 ::wxEndBusyCursor();
3241
3242 gFrame->RefreshAllCanvas();
3243}
3244
3245void RouteManagerDialog::OnLayDefaultAction(wxListEvent &event) {
3246 wxCommandEvent evt;
3247 OnLayPropertiesClick(evt);
3248}
3249
3250void RouteManagerDialog::UpdateLayListCtrl() {
3251 // if an item was selected, make it selected again if it still exist
3252 long item = -1;
3253 item =
3254 m_pLayListCtrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
3255
3256 wxUIntPtr selected_id = wxUIntPtr(0);
3257 if (item != -1) selected_id = m_pLayListCtrl->GetItemData(item);
3258
3259 // Delete existing items
3260 m_pLayListCtrl->DeleteAllItems();
3261
3262 // then add routes to the listctrl
3263 LayerList::iterator it;
3264 int index = 0;
3265 bool b_anyHidden = false;
3266 for (it = (*pLayerList).begin(); it != (*pLayerList).end(); ++it, ++index) {
3267 Layer *lay = (Layer *)(*it);
3268
3269 if (!lay->m_LayerName.Upper().Contains(m_tFilterLay->GetValue().Upper())) {
3270 continue;
3271 }
3272
3273 wxListItem li;
3274 li.SetId(index);
3275 li.SetImage(lay->IsVisibleOnChart() ? 0 : 1);
3276 li.SetData(lay);
3277 li.SetText(_T(""));
3278
3279 long idx = m_pLayListCtrl->InsertItem(li);
3280
3281 wxString name = lay->m_LayerName;
3282 if (name.IsEmpty()) {
3283 // RoutePoint *rp = trk->GetPoint(1);
3284 // if (rp)
3285 // name = rp->m_CreateTime.FormatISODate() + _T(" ") +
3286 // rp->m_CreateTime.FormatISOTime(); //name =
3287 // rp->m_CreateTime.Format();
3288 // else
3289 name = _("(Unnamed Layer)");
3290 }
3291 m_pLayListCtrl->SetItem(idx, colLAYNAME, name);
3292
3293 wxString len;
3294 len.Printf(wxT("%d"), (int)lay->m_NoOfItems);
3295 m_pLayListCtrl->SetItem(idx, colLAYITEMS, len);
3296 m_pLayListCtrl->SetItem(idx, colLAYPERSIST, lay->m_LayerType);
3297
3298 wxListItem lic;
3299 lic.SetId(index);
3300 lic.SetColumn(1);
3301 lic.SetAlign(wxLIST_FORMAT_LEFT);
3302 m_pLayListCtrl->SetItem(lic);
3303
3304 lic.SetColumn(2);
3305 lic.SetAlign(wxLIST_FORMAT_LEFT);
3306 m_pLayListCtrl->SetItem(lic);
3307
3308 if (!lay->IsVisibleOnChart()) b_anyHidden = true;
3309 }
3310
3311 m_pLayListCtrl->SortItems(SortLayersOnName,
3312 reinterpret_cast<wxIntPtr>(m_pLayListCtrl));
3313 m_pLayListCtrl->SetColumnWidth(0, 4 * m_charWidth);
3314
3315 // restore selection if possible
3316 // NOTE this will select a different item, if one is deleted
3317 // (the next route will get that index).
3318 if (selected_id != wxUIntPtr(0)) {
3319 item = m_pLayListCtrl->FindItem(-1, selected_id);
3320 m_pLayListCtrl->SetItemState(item,
3321 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED,
3322 wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
3323 }
3324 UpdateLayButtons();
3325
3326 m_cbShowAllLay->SetValue(!b_anyHidden);
3327}
3328
3329void RouteManagerDialog::OnImportClick(wxCommandEvent &event) {
3330 // Import routes
3331 // FIXME there is no way to instruct this function about what to import.
3332 // Suggest to add that!
3333
3334 UI_ImportGPX(this);
3335
3336 UpdateLists();
3337
3338 gFrame->RefreshAllCanvas();
3339}
3340void RouteManagerDialog::OnExportClick(wxCommandEvent &event) {
3341 ExportGPX(this);
3342}
3343
3344void RouteManagerDialog::OnExportVizClick(wxCommandEvent &event) {
3345 ExportGPX(this, true, true); // only visible objects, layers included
3346}
3347
3348void RouteManagerDialog::OnFilterChanged(wxCommandEvent &event) {
3349 if (event.GetEventObject() == m_tFilterWpt) {
3350 UpdateWptListCtrl(NULL, true);
3351 } else if (event.GetEventObject() == m_tFilterRte) {
3352 UpdateRouteListCtrl();
3353 } else if (event.GetEventObject() == m_tFilterTrk) {
3354 UpdateTrkListCtrl();
3355 } else if (event.GetEventObject() == m_tFilterLay) {
3356 UpdateLayListCtrl();
3357 }
3358}
3359
3360// END Event handlers
wxString & GetPrivateDataDir()
Return dir path for opencpn.log, etc., respecting -c cli option.
Represents an active track that is currently being recorded.
Definition track.h:194
Represents a layer of chart objects in OpenCPN.
Definition Layer.h:38
Dialog for displaying and editing waypoint properties.
Definition MarkInfo.h:212
void Validate()
Check that all entries are accessible, remove stale ones.
Main application frame.
Definition ocpn_frame.h:135
Provides platform-specific support utilities for OpenCPN.
void Init(const KeyProvider &kp, std::function< void(ObservedEvt &ev)> action)
Initiate an object yet not listening.
Definition observable.h:255
Represents a waypoint or mark within the navigation system.
Definition route_point.h:68
bool m_bIsolatedMark
Flag indicating if the waypoint is a standalone mark.
Represents a navigational route in the navigation system.
Definition route.h:96
EventVar on_routes_update
Notified when list of routes is updated (no data in event)
Definition routeman.h:198
bool DeleteRoute(Route *pRoute, NavObjectChanges *nav_obj_changes)
Definition routeman.cpp:835
Dialog for sending routes/waypoints to a GPS device.
Dialog for sending navigation objects to peer devices.
Represents a single point in a track.
Definition track.h:53
Class TrackPropDlg.
Represents a track, which is a series of connected track points.
Definition track.h:79
wxFont * GetOCPNScaledFont(wxString item, int default_size)
Retrieves a font from FontMgr, optionally scaled for physical readability.
Definition gui_lib.cpp:54
wxFont GetOCPNGUIScaledFont(wxString item)
Retrieves a font optimized for touch and high-resolution interfaces.
Definition gui_lib.cpp:83
MdnsCache mDNS host lookups cache.
mDNS lookup wrappers.