29#include <wx/aui/aui.h>
30#include <wx/clipbrd.h>
31#include <wx/dynarray.h>
35#include <wx/graphics.h>
37#include <wx/listbook.h>
38#include <wx/listimpl.cpp>
41#include "model/ais_decoder.h"
43#include "model/ais_target_data.h"
44#include "model/config_vars.h"
45#include "model/cutil.h"
46#include "model/georef.h"
50#include "model/nav_object_database.h"
51#include "model/own_ship.h"
52#include "model/own_ship.h"
54#include "model/route.h"
55#include "model/routeman.h"
56#include "model/select.h"
57#include "model/track.h"
60#include "canvasMenu.h"
69#include "ocpn_frame.h"
70#include "OCPNPlatform.h"
71#include "NMEALogWindow.h"
72#include "peer_client_dlg.h"
73#include "pluginmanager.h"
76#include "routemanagerdialog.h"
77#include "routeman_gui.h"
78#include "route_point_gui.h"
79#include "RoutePropDlgImpl.h"
83#include "SendToGpsDlg.h"
84#include "SendToPeerDlg.h"
90#include "TrackPropDlg.h"
94#include "androidUTIL.h"
100extern void pupHandler_PasteRoute();
101extern void pupHandler_PasteTrack();
102extern void pupHandler_PasteWaypoint();
105extern bool g_bskew_comp;
106extern double vLat, vLon;
108extern ChartGroupArray *g_pGroupArray;
111extern int g_nAWDefault;
112extern wxString g_AW1GUID;
113extern wxString g_AW2GUID;
114extern int g_click_stop;
119extern bool g_bConfirmObjectDelete;
126extern RouteList *pRouteList;
127extern wxString g_default_wp_icon;
128extern bool g_bBasicMenus;
130extern bool g_FlushNavobjChanges;
131extern ColorScheme global_color_scheme;
135 ID_DEF_MENU_MAX_DETAIL = 1,
136 ID_DEF_MENU_SCALE_IN,
137 ID_DEF_MENU_SCALE_OUT,
141 ID_DEF_MENU_MOVE_BOAT_HERE,
142 ID_DEF_MENU_GOTO_HERE,
143 ID_DEF_MENU_GOTOPOSITION,
147 ID_WP_MENU_PROPERTIES,
149 ID_RT_MENU_DEACTIVATE,
153 ID_RT_MENU_SPLIT_LEG,
154 ID_RT_MENU_SPLIT_WPT,
157 ID_WPT_MENU_SENDTOGPS,
158 ID_WPT_MENU_SENDTONEWGPS,
159 ID_WPT_MENU_SENDTOPEER,
167 ID_RT_MENU_DEACTPOINT,
168 ID_RT_MENU_ACTNXTPOINT,
170 ID_RT_MENU_PROPERTIES,
171 ID_RT_MENU_SENDTOGPS,
172 ID_RT_MENU_SENDTONEWGPS,
173 ID_RT_MENU_SHOWNAMES,
174 ID_RT_MENU_RESEQUENCE,
175 ID_RT_MENU_SENDTOPEER,
176 ID_WP_MENU_SET_ANCHORWATCH,
177 ID_WP_MENU_CLEAR_ANCHORWATCH,
178 ID_DEF_MENU_AISTARGETLIST,
179 ID_DEF_MENU_AIS_CPAWARNING,
182 ID_RC_MENU_SCALE_OUT,
186 ID_DEF_MENU_AIS_QUERY,
188 ID_DEF_MENU_AISSHOWTRACK,
189 ID_DEF_MENU_ACTIVATE_MEASURE,
190 ID_DEF_MENU_DEACTIVATE_MEASURE,
191 ID_DEF_MENU_COPY_MMSI,
196 ID_DEF_MENU_CM93OFFSET_DIALOG,
198 ID_TK_MENU_PROPERTIES,
200 ID_TK_MENU_SENDTOPEER,
201 ID_WP_MENU_ADDITIONAL_INFO,
203 ID_DEF_MENU_QUILTREMOVE,
207 ID_DEF_MENU_TOGGLE_FULL,
208 ID_DEF_MENU_TIDEINFO,
209 ID_DEF_MENU_CURRENTINFO,
213 ID_DGB_MENU_NMEA_WINDOW,
215 ID_DEF_MENU_GROUPBASE,
224int CanvasMenuHandler::GetNextContextMenuId() {
225 return ID_DEF_MENU_LAST +
229wxFont CanvasMenuHandler::m_scaledFont;
232CanvasMenuHandler::CanvasMenuHandler(
ChartCanvas *parentCanvas,
235 int selectedAIS_MMSI,
236 void *selectedTCIndex)
239 parent = parentCanvas;
240 m_pSelectedRoute = selectedRoute;
241 m_pSelectedTrack = selectedTrack;
242 m_pFoundRoutePoint = selectedPoint;
243 m_FoundAIS_MMSI = selectedAIS_MMSI;
244 m_pIDXCandidate = selectedTCIndex;
245 if (!m_scaledFont.IsOk()) {
247 m_scaledFont = *qFont;
253CanvasMenuHandler::~CanvasMenuHandler() {}
259void CanvasMenuHandler::PrepareMenuItem(wxMenuItem *item) {
260#if defined(__WXMSW__)
261 wxColour ctrl_back_color = GetGlobalColor(_T(
"DILG1"));
262 item->SetBackgroundColour(ctrl_back_color);
263 wxColour menu_text_color = GetGlobalColor(_T (
"UITX1" ));
264 item->SetTextColour(menu_text_color);
268void CanvasMenuHandler::MenuPrepend1(wxMenu *menu,
int id, wxString label) {
269 wxMenuItem *item =
new wxMenuItem(menu,
id, label);
270#if defined(__WXMSW__)
271 item->SetFont(m_scaledFont);
276 item->SetFont(sFont);
279 PrepareMenuItem(item);
281 if (g_btouch) menu->InsertSeparator(0);
285void CanvasMenuHandler::MenuAppend1(wxMenu *menu,
int id, wxString label) {
286 wxMenuItem *item =
new wxMenuItem(menu,
id, label);
287#if defined(__WXMSW__)
288 item->SetFont(m_scaledFont);
293 item->SetFont(sFont);
296 PrepareMenuItem(item);
299 if (g_btouch) menu->AppendSeparator();
302void CanvasMenuHandler::SetMenuItemFont1(wxMenuItem *item) {
303#if defined(__WXMSW__)
304 item->SetFont(m_scaledFont);
307#if defined(__ANDROID__)
309 item->SetFont(*qFont);
312 PrepareMenuItem(item);
315void CanvasMenuHandler::CanvasPopupMenu(
int x,
int y,
int seltype) {
316 wxMenu *contextMenu =
new wxMenu;
317 wxMenu *menuWaypoint = NULL;
318 wxMenu *menuRoute = NULL;
319 wxMenu *menuTrack = NULL;
320 wxMenu *menuAIS = NULL;
322 wxMenu *subMenuChart =
new wxMenu;
323 wxMenu *subMenuUndo =
new wxMenu(
"Undo...Ctrl-Z");
326 wxMenu *subMenuRedo =
new wxMenu(
"Redo...Shift-Ctrl-Z");
328 wxMenu *subMenuRedo =
new wxMenu(
"Redo...Ctrl-Y");
330 wxMenu *subMenuDebug =
new wxMenu(
"");
331 MenuAppend1(subMenuDebug, ID_DGB_MENU_NMEA_WINDOW,
"Show NMEA log window");
333 wxMenu *menuFocus = contextMenu;
338 if (!g_bBasicMenus || (seltype != SELTYPE_ROUTECREATE)) {
339 bool bsubMenus =
false;
342 if (parent->undo->AnythingToUndo()) {
344 wxMenuItem *subMenuItemundo =
345 contextMenu->AppendSubMenu(subMenuUndo, _(
"Undo"));
348 undoItem << _(
"Undo") << _T(
" ")
349 << parent->undo->GetNextUndoableAction()->Description();
350 MenuAppend1(subMenuUndo, ID_UNDO, undoItem);
352 if (parent->undo->AnythingToRedo()) {
354 wxMenuItem *subMenuItemRedo =
355 contextMenu->AppendSubMenu(subMenuRedo, _(
"Redo"));
358 redoItem << _(
"Redo") << _T(
" ")
359 << parent->undo->GetNextRedoableAction()->Description();
360 MenuAppend1(subMenuRedo, ID_REDO, redoItem);
363 if (parent->undo->AnythingToUndo()) {
365 undoItem << _(
"Undo") << _T(
" ")
366 << parent->undo->GetNextUndoableAction()->Description();
367 MenuAppend1(contextMenu, ID_UNDO, _menuText(undoItem, _T(
"Ctrl-Z")));
370 if (parent->undo->AnythingToRedo()) {
372 redoItem << _(
"Redo") << _T(
" ")
373 << parent->undo->GetNextRedoableAction()->Description();
375 MenuAppend1(contextMenu, ID_REDO,
376 _menuText(redoItem, _T(
"Shift-Ctrl-Z")));
378 MenuAppend1(contextMenu, ID_REDO, _menuText(redoItem, _T(
"Ctrl-Y")));
384 if (seltype == SELTYPE_ROUTECREATE) {
385 MenuAppend1(contextMenu, ID_RC_MENU_FINISH,
386 _menuText(_(
"End Route"), _T(
"Esc")));
389 if (!parent->m_pMouseRoute) {
390 if (parent->m_bMeasure_Active)
391 MenuAppend1(contextMenu, ID_DEF_MENU_DEACTIVATE_MEASURE,
392 _menuText(_(
"Measure Off"), _T(
"Esc")));
394 MenuAppend1(contextMenu, ID_DEF_MENU_ACTIVATE_MEASURE,
395 _menuText(_(
"Measure"), _T(
"M")));
398 bool ais_areanotice =
false;
399 if (g_pAIS && parent->GetShowAIS() && g_bShowAreaNotices) {
402 for (
const auto &target : g_pAIS->GetAreaNoticeSourcesList()) {
403 auto target_data = target.second;
404 if (!target_data->area_notices.empty()) {
405 for (
auto &ani : target_data->area_notices) {
409 for (Ais8_001_22_SubAreaList::iterator sa =
410 area_notice.sub_areas.begin();
411 sa != area_notice.sub_areas.end(); ++sa) {
413 case AIS8_001_22_SHAPE_CIRCLE: {
414 wxPoint target_point;
417 bbox.Expand(target_point);
418 if (sa->radius_m > 0.0) bbox.EnLarge(sa->radius_m * vp_scale);
421 case AIS8_001_22_SHAPE_RECT:
422 case AIS8_001_22_SHAPE_POLYGON:
423 case AIS8_001_22_SHAPE_POLYLINE: {
424 double lat = sa->latitude;
425 double lon = sa->longitude;
426 for (
int i = 0; i < 4; ++i) {
427 ll_gc_ll(lat, lon, sa->angles[i], sa->dists_m[i] / 1852.0,
429 wxPoint target_point;
431 bbox.Expand(target_point);
435 case AIS8_001_22_SHAPE_SECTOR: {
436 double lat1 = sa->latitude;
437 double lon1 = sa->longitude;
439 wxPoint target_point;
441 bbox.Expand(target_point);
442 for (
int i = 0; i < 18; ++i) {
446 i * (sa->right_bound_deg - sa->left_bound_deg) / 18,
447 sa->radius_m / 1852.0, &lat, &lon);
449 bbox.Expand(target_point);
451 ll_gc_ll(lat1, lon1, sa->right_bound_deg, sa->radius_m / 1852.0,
454 bbox.Expand(target_point);
460 if (bbox.GetValid() && bbox.PointInBox(x, y)) {
461 ais_areanotice =
true;
470 if (parent->GetpCurrentStack())
471 nChartStack = parent->GetpCurrentStack()->nEntry;
473 if (!parent->GetVP().b_quilt) {
474 if (nChartStack > 1) {
475 MenuAppend1(contextMenu, ID_DEF_MENU_MAX_DETAIL, _(
"Max Detail Here"));
476 MenuAppend1(contextMenu, ID_DEF_MENU_SCALE_IN,
477 _menuText(_(
"Scale In"), _T(
"Ctrl-Left")));
478 MenuAppend1(contextMenu, ID_DEF_MENU_SCALE_OUT,
479 _menuText(_(
"Scale Out"), _T(
"Ctrl-Right")));
482 if ((parent->m_singleChart &&
483 (parent->m_singleChart->GetChartFamily() == CHART_FAMILY_VECTOR)) ||
485 MenuAppend1(contextMenu, ID_DEF_MENU_QUERY,
486 _(
"Object Query") + _T(
"..." ));
491 parent->m_pQuilt->GetChartAtPix(parent->GetVP(), wxPoint(x, y));
492 if ((pChartTest && (pChartTest->GetChartFamily() == CHART_FAMILY_VECTOR)) ||
494 MenuAppend1(contextMenu, ID_DEF_MENU_QUERY,
495 _(
"Object Query") + _T(
"..." ));
498 if (!g_bBasicMenus && (nChartStack > 1)) {
499 MenuAppend1(contextMenu, ID_DEF_MENU_SCALE_IN,
500 _menuText(_(
"Scale In"), _T(
"Ctrl-Left")));
501 MenuAppend1(contextMenu, ID_DEF_MENU_SCALE_OUT,
502 _menuText(_(
"Scale Out"), _T(
"Ctrl-Right")));
508 if (!g_bBasicMenus || (seltype != SELTYPE_ROUTECREATE)) {
509 bool b_dm_add =
true;
510 if (g_btouch && parent->IsMeasureActive()) b_dm_add =
false;
513 MenuAppend1(contextMenu, ID_DEF_MENU_DROP_WP,
514 _menuText(_(
"Drop Mark"), _T(
"Ctrl-M")));
515 MenuAppend1(contextMenu, ID_DEF_MENU_NEW_RT,
516 _menuText(_(
"New Route..."), _T(
"Ctrl-R")));
520 MenuAppend1(contextMenu, ID_DEF_MENU_MOVE_BOAT_HERE, _(
"Move Boat Here"));
523 if (!g_bBasicMenus &&
524 (!(g_pRouteMan->GetpActiveRoute() || (seltype & SELTYPE_MARKPOINT))))
525 MenuAppend1(contextMenu, ID_DEF_MENU_GOTO_HERE, _(
"Navigate To Here"));
528 MenuAppend1(contextMenu, ID_DEF_MENU_GOTOPOSITION,
529 _(
"Center view") + _T(
"..."));
531 if (!g_bBasicMenus) {
532 if (parent->GetVP().b_quilt) {
533 if (parent->GetUpMode() == NORTH_UP_MODE) {
534 MenuAppend1(contextMenu, ID_DEF_MENU_COGUP, _(
"Course Up Mode"));
535 if (!std::isnan(gHdt))
536 MenuAppend1(contextMenu, ID_DEF_MENU_HEADUP, _(
"Heading Up Mode"));
538 MenuAppend1(contextMenu, ID_DEF_MENU_NORTHUP, _(
"North Up Mode"));
541 if (parent->m_singleChart &&
542 (fabs(parent->m_singleChart->GetChartSkew()) > .01) && !g_bskew_comp)
543 MenuAppend1(contextMenu, ID_DEF_MENU_NORTHUP, _(
"Chart Up Mode"));
545 MenuAppend1(contextMenu, ID_DEF_MENU_NORTHUP, _(
"North Up Mode"));
549 if (!g_bBasicMenus) {
550 bool full_toggle_added =
false;
553 MenuAppend1(contextMenu, ID_DEF_MENU_TOGGLE_FULL,
554 _(
"Toggle Full Screen"));
555 full_toggle_added =
true;
558 if (!full_toggle_added) {
560 MenuAppend1(contextMenu, ID_DEF_MENU_TOGGLE_FULL,
561 _(
"Toggle Full Screen"));
565 if (g_pRouteMan->IsAnyRouteActive() &&
566 g_pRouteMan->GetCurrentXTEToActivePoint() > 0.)
567 MenuAppend1(contextMenu, ID_DEF_ZERO_XTE, _(
"Zero XTE"));
570 int pasteBuffer = kml->ParsePasteBuffer();
571 if (pasteBuffer != KML_PASTE_INVALID) {
572 switch (pasteBuffer) {
573 case KML_PASTE_WAYPOINT: {
574 MenuAppend1(contextMenu, ID_PASTE_WAYPOINT, _(
"Paste Waypoint"));
577 case KML_PASTE_ROUTE: {
578 MenuAppend1(contextMenu, ID_PASTE_ROUTE, _(
"Paste Route"));
581 case KML_PASTE_TRACK: {
582 MenuAppend1(contextMenu, ID_PASTE_TRACK, _(
"Paste Track"));
585 case KML_PASTE_ROUTE_TRACK: {
586 MenuAppend1(contextMenu, ID_PASTE_ROUTE, _(
"Paste Route"));
587 MenuAppend1(contextMenu, ID_PASTE_TRACK, _(
"Paste Track"));
594 if (!parent->GetVP().b_quilt && parent->m_singleChart &&
595 (parent->m_singleChart->GetChartType() == CHART_TYPE_CM93COMP)) {
596 MenuAppend1(contextMenu, ID_DEF_MENU_CM93OFFSET_DIALOG,
597 _(
"CM93 Offset Dialog..."));
621 wxMenuItem *subItemChart =
622 contextMenu->AppendSubMenu(subMenuChart, _(
"Chart Groups"));
623 if (g_btouch) contextMenu->AppendSeparator();
625 SetMenuItemFont1(subItemChart);
627 if (g_pGroupArray->GetCount()) {
629 MenuAppend1(subMenuChart, wxID_CANCEL, _(
"temporary"));
631 wxMenuItem *subItem0 = subMenuChart->AppendRadioItem(
632 ID_DEF_MENU_GROUPBASE, _(
"All Active Charts"));
634 SetMenuItemFont1(subItem0);
636 for (
unsigned int i = 0; i < g_pGroupArray->GetCount(); i++) {
637 subItem0 = subMenuChart->AppendRadioItem(
638 ID_DEF_MENU_GROUPBASE + i + 1, g_pGroupArray->Item(i)->m_group_name);
639 SetMenuItemFont1(subItem0);
643 subMenuChart->Remove(wxID_CANCEL);
645 subMenuChart->Check(ID_DEF_MENU_GROUPBASE + parent->m_groupIndex,
true);
649 menuFocus = contextMenu;
652 if (!g_bBasicMenus || (seltype != SELTYPE_ROUTECREATE)) {
654 if (parent->GetShowAIS() && (seltype & SELTYPE_AISTARGET)) {
655 auto myptarget = g_pAIS->Get_Target_Data_From_MMSI(m_FoundAIS_MMSI);
656 if (!g_bBasicMenus && myptarget) {
657 name = myptarget->GetFullName();
658 if (name.IsEmpty()) name.Printf(_T(
"%d"), m_FoundAIS_MMSI);
659 name.Prepend(_T(
" ( ")).Append(_T(
" )"));
661 name = wxEmptyString;
662 menuAIS =
new wxMenu(_(
"AIS") + name);
663 MenuAppend1(menuAIS, ID_DEF_MENU_AIS_QUERY, _(
"Target Query..."));
664 if (myptarget && myptarget->bCPA_Valid &&
665 (myptarget->n_alert_state != AIS_ALERT_SET)) {
666 if (myptarget->b_show_AIS_CPA)
667 MenuAppend1(menuAIS, ID_DEF_MENU_AIS_CPA, _(
"Hide Target CPA"));
669 MenuAppend1(menuAIS, ID_DEF_MENU_AIS_CPA, _(
"Show Target CPA"));
671 MenuAppend1(menuAIS, ID_DEF_MENU_AISTARGETLIST, _(
"Target List..."));
672 if (myptarget->Class != AIS_METEO ) {
673 if (myptarget && !myptarget->b_PersistTrack) {
674 if (myptarget->b_show_track)
675 MenuAppend1(menuAIS, ID_DEF_MENU_AISSHOWTRACK,
676 _(
"Hide Target Track"));
678 MenuAppend1(menuAIS, ID_DEF_MENU_AISSHOWTRACK,
679 _(
"Show Target Track"));
683 MenuAppend1(menuAIS, ID_DEF_MENU_COPY_MMSI, _(
"Copy Target MMSI"));
684 menuAIS->AppendSeparator();
686 if (!parent->GetVP().b_quilt) {
687 if ((parent->m_singleChart &&
688 (parent->m_singleChart->GetChartFamily() ==
689 CHART_FAMILY_VECTOR))) {
690 MenuAppend1(menuAIS, ID_DEF_MENU_QUERY, _(
"Object Query..."));
695 parent->m_pQuilt->GetChartAtPix(parent->GetVP(), wxPoint(x, y));
697 (pChartTest->GetChartFamily() == CHART_FAMILY_VECTOR))) {
698 MenuAppend1(menuAIS, ID_DEF_MENU_QUERY, _(
"Object Query..."));
704 MenuAppend1(contextMenu, ID_DEF_MENU_AISTARGETLIST,
705 _(
"AIS target list") + _T(
"..."));
707 wxString nextCPAstatus = g_bCPAWarn ? _(
"Hide") : _(
"Show");
708 MenuAppend1(contextMenu, ID_DEF_MENU_AIS_CPAWARNING,
709 _menuText(nextCPAstatus +
" " + _(
"CPA alarm "),
"W"));
713 if (g_enable_root_menu_debug)
714 contextMenu->AppendSubMenu(subMenuDebug, _(
"Debug"));
716 if (seltype & SELTYPE_ROUTESEGMENT) {
717 if (!g_bBasicMenus && m_pSelectedRoute) {
718 name = m_pSelectedRoute->m_RouteNameString;
719 if (name.IsEmpty()) name = _(
"Unnamed Route");
720 name.Prepend(_T(
" ( ")).Append(_T(
" )"));
722 name = wxEmptyString;
724 if (m_pSelectedRoute && m_pSelectedRoute->m_bIsInLayer) blay =
true;
727 menuRoute =
new wxMenu(_(
"Layer Route") + name);
728 MenuAppend1(menuRoute, ID_RT_MENU_PROPERTIES,
729 _(
"Properties") + _T(
"..." ));
730 if (m_pSelectedRoute) {
731 if (m_pSelectedRoute->IsActive()) {
732 int indexActive = m_pSelectedRoute->GetIndexOf(
733 m_pSelectedRoute->m_pRouteActivePoint);
734 if ((indexActive + 1) <= m_pSelectedRoute->GetnPoints()) {
735 MenuAppend1(menuRoute, ID_RT_MENU_ACTNXTPOINT,
736 _(
"Activate Next Waypoint"));
738 MenuAppend1(menuRoute, ID_RT_MENU_DEACTIVATE, _(
"Deactivate"));
739 MenuAppend1(menuRoute, ID_DEF_ZERO_XTE, _(
"Zero XTE"));
741 MenuAppend1(menuRoute, ID_RT_MENU_ACTIVATE, _(
"Activate"));
745 menuRoute =
new wxMenu(_(
"Route") + name);
746 MenuAppend1(menuRoute, ID_RT_MENU_PROPERTIES,
747 _(
"Properties") + _T(
"..." ));
748 if (m_pSelectedRoute) {
749 if (m_pSelectedRoute->IsActive()) {
750 int indexActive = m_pSelectedRoute->GetIndexOf(
751 m_pSelectedRoute->m_pRouteActivePoint);
752 if ((indexActive + 1) <= m_pSelectedRoute->GetnPoints()) {
753 MenuAppend1(menuRoute, ID_RT_MENU_ACTNXTPOINT,
754 _(
"Activate Next Waypoint"));
756 MenuAppend1(menuRoute, ID_RT_MENU_DEACTIVATE, _(
"Deactivate"));
757 MenuAppend1(menuRoute, ID_DEF_ZERO_XTE, _(
"Zero XTE"));
759 MenuAppend1(menuRoute, ID_RT_MENU_ACTIVATE, _(
"Activate"));
762 MenuAppend1(menuRoute, ID_RT_MENU_INSERT, _(
"Insert Waypoint"));
763 MenuAppend1(menuRoute, ID_RT_MENU_APPEND, _(
"Append Waypoint"));
764 if (!(seltype & SELTYPE_ROUTEPOINT) && m_pSelectedRoute) {
765 m_SelectedIdx = m_pSelectedRoute->GetIndexOf(m_pFoundRoutePoint);
766 if (m_SelectedIdx > 1 &&
767 m_SelectedIdx < m_pSelectedRoute->GetnPoints() - 1)
768 MenuAppend1(menuRoute, ID_RT_MENU_SPLIT_LEG, _(
"Split around Leg"));
770 MenuAppend1(menuRoute, ID_RT_MENU_COPY, _(
"Copy as KML") + _T(
"..." ));
771 MenuAppend1(menuRoute, ID_RT_MENU_DELETE, _(
"Delete") + _T(
"..." ));
772 MenuAppend1(menuRoute, ID_RT_MENU_REVERSE, _(
"Reverse..."));
773 if (m_pSelectedRoute) {
774 if (m_pSelectedRoute->AreWaypointNamesVisible())
775 MenuAppend1(menuRoute, ID_RT_MENU_SHOWNAMES,
776 _(
"Hide Waypoint Names"));
778 MenuAppend1(menuRoute, ID_RT_MENU_SHOWNAMES,
779 _(
"Show Waypoint Names"));
781 MenuAppend1(menuRoute, ID_RT_MENU_RESEQUENCE,
782 _(
"Resequence Waypoints..."));
785 wxString port = parent->FindValidUploadPort();
786 parent->m_active_upload_port = port;
787 wxString item = _(
"Send to GPS");
788 if (!port.IsEmpty()) {
789 item.Append(_T(
" ( "));
791 item.Append(_T(
" )"));
793 MenuAppend1(menuRoute, ID_RT_MENU_SENDTOGPS, item);
795 if (!port.IsEmpty()) {
796 wxString item = _(
"Send to new GPS");
797 MenuAppend1(menuRoute, ID_RT_MENU_SENDTONEWGPS, item);
800 wxString itemstp = SYMBOL_STP_TITLE;
801 MenuAppend1(menuRoute, ID_RT_MENU_SENDTOPEER, itemstp);
804 if (menuFocus != menuAIS) menuFocus = menuRoute;
807 if (seltype & SELTYPE_TRACKSEGMENT) {
808 name = wxEmptyString;
809 if (!g_bBasicMenus && m_pSelectedTrack)
810 name = _T(
" ( ") + m_pSelectedTrack->GetName(
true) + _T(
" )");
812 name = wxEmptyString;
814 if (m_pSelectedTrack && m_pSelectedTrack->m_bIsInLayer) blay =
true;
817 menuTrack =
new wxMenu(_(
"Layer Track") + name);
818 MenuAppend1(menuTrack, ID_TK_MENU_PROPERTIES,
819 _(
"Properties") + _T(
"..." ));
821 menuTrack =
new wxMenu(_(
"Track") + name);
822 MenuAppend1(menuTrack, ID_TK_MENU_PROPERTIES,
823 _(
"Properties") + _T(
"..." ));
824 MenuAppend1(menuTrack, ID_TK_MENU_COPY, _(
"Copy as KML"));
825 MenuAppend1(menuTrack, ID_TK_MENU_DELETE, _(
"Delete") + _T(
"..." ));
828 wxString itemstp = SYMBOL_STP_TITLE;
829 MenuAppend1(menuTrack, ID_TK_MENU_SENDTOPEER, itemstp);
832 if (menuFocus != menuAIS) menuFocus = menuTrack;
835 if (seltype & SELTYPE_ROUTEPOINT) {
836 if (!g_bBasicMenus && m_pFoundRoutePoint) {
837 name = m_pFoundRoutePoint->GetName();
838 if (name.IsEmpty()) name = _(
"Unnamed Waypoint");
839 name.Prepend(_T(
" ( ")).Append(_T(
" )"));
841 name = wxEmptyString;
843 if (m_pFoundRoutePoint && m_pFoundRoutePoint->m_bIsInLayer) blay =
true;
846 menuWaypoint =
new wxMenu(_(
"Layer Waypoint") + name);
847 MenuAppend1(menuWaypoint, ID_WP_MENU_PROPERTIES,
848 _(
"Properties") + _T(
"..." ));
850 if (m_pSelectedRoute && m_pSelectedRoute->IsActive())
851 MenuAppend1(menuWaypoint, ID_RT_MENU_ACTPOINT, _(
"Activate"));
853 menuWaypoint =
new wxMenu(_(
"Waypoint") + name);
854 MenuAppend1(menuWaypoint, ID_WP_MENU_PROPERTIES,
855 _(
"Properties") + _T(
"..." ));
856 if (m_pSelectedRoute && m_pSelectedRoute->IsActive()) {
857 if (m_pSelectedRoute->m_pRouteActivePoint != m_pFoundRoutePoint)
858 MenuAppend1(menuWaypoint, ID_RT_MENU_ACTPOINT, _(
"Activate"));
861 if (m_pSelectedRoute && m_pSelectedRoute->IsActive()) {
862 if (m_pSelectedRoute->m_pRouteActivePoint == m_pFoundRoutePoint) {
863 int indexActive = m_pSelectedRoute->GetIndexOf(
864 m_pSelectedRoute->m_pRouteActivePoint);
865 if ((indexActive + 1) <= m_pSelectedRoute->GetnPoints())
866 MenuAppend1(menuWaypoint, ID_RT_MENU_ACTNXTPOINT,
867 _(
"Activate Next Waypoint"));
870 if (m_pSelectedRoute && m_pSelectedRoute->GetnPoints() > 2) {
871 MenuAppend1(menuWaypoint, ID_RT_MENU_REMPOINT, _(
"Remove from Route"));
873 m_SelectedIdx = m_pSelectedRoute->GetIndexOf(m_pFoundRoutePoint);
874 if (m_SelectedIdx > 1 && m_SelectedIdx < m_pSelectedRoute->GetnPoints())
875 MenuAppend1(menuWaypoint, ID_RT_MENU_SPLIT_WPT,
876 _(
"Split Route at Waypoint"));
879 MenuAppend1(menuWaypoint, ID_WPT_MENU_COPY, _(
"Copy as KML"));
881 if (m_pFoundRoutePoint && m_pFoundRoutePoint->GetIconName() != _T(
"mob"))
882 MenuAppend1(menuWaypoint, ID_RT_MENU_DELPOINT, _(
"Delete"));
885 wxString port = parent->FindValidUploadPort();
886 parent->m_active_upload_port = port;
887 wxString item = _(
"Send to GPS");
888 if (!port.IsEmpty()) {
889 item.Append(_T(
" ( "));
891 item.Append(_T(
" )"));
893 MenuAppend1(menuWaypoint, ID_WPT_MENU_SENDTOGPS, item);
895 if (!port.IsEmpty()) {
896 wxString item = _(
"Send to new GPS");
897 MenuAppend1(menuWaypoint, ID_WPT_MENU_SENDTONEWGPS, item);
900 MenuAppend1(menuWaypoint, ID_WPT_MENU_SENDTOPEER,
905 if (menuFocus != menuAIS) menuFocus = menuWaypoint;
908 if (seltype & SELTYPE_MARKPOINT) {
909 if (!g_bBasicMenus && m_pFoundRoutePoint) {
910 name = m_pFoundRoutePoint->GetName();
911 if (name.IsEmpty()) name = _(
"Unnamed Mark");
912 name.Prepend(_T(
" ( ")).Append(_T(
" )"));
914 name = wxEmptyString;
916 if (m_pFoundRoutePoint && m_pFoundRoutePoint->m_bIsInLayer) blay =
true;
919 menuWaypoint =
new wxMenu(_(
"Layer Waypoint") + name);
920 MenuAppend1(menuWaypoint, ID_WP_MENU_PROPERTIES,
921 _(
"Properties") + _T(
"..." ));
923 menuWaypoint =
new wxMenu(_(
"Mark") + name);
924 MenuAppend1(menuWaypoint, ID_WP_MENU_PROPERTIES,
925 _(
"Properties") + _T(
"..." ));
927 if (!g_pRouteMan->GetpActiveRoute())
928 MenuAppend1(menuWaypoint, ID_WP_MENU_GOTO, _(
"Navigate To This"));
930 MenuAppend1(menuWaypoint, ID_WPT_MENU_COPY, _(
"Copy as KML"));
932 if (m_pFoundRoutePoint && m_pFoundRoutePoint->GetIconName() != _T(
"mob"))
933 MenuAppend1(menuWaypoint, ID_WP_MENU_DELPOINT, _(
"Delete"));
936 wxString port = parent->FindValidUploadPort();
937 parent->m_active_upload_port = port;
938 wxString item = _(
"Send to GPS");
939 if (!port.IsEmpty()) {
940 item.Append(_T(
" ( "));
942 item.Append(_T(
" )"));
944 MenuAppend1(menuWaypoint, ID_WPT_MENU_SENDTOGPS, item);
946 MenuAppend1(menuWaypoint, ID_WPT_MENU_SENDTOPEER,
950 if ((m_pFoundRoutePoint == pAnchorWatchPoint1) ||
951 (m_pFoundRoutePoint == pAnchorWatchPoint2))
952 MenuAppend1(menuWaypoint, ID_WP_MENU_CLEAR_ANCHORWATCH,
953 _(
"Clear Anchor Watch"));
955 if (m_pFoundRoutePoint && !(m_pFoundRoutePoint->m_bIsInLayer) &&
956 ((NULL == pAnchorWatchPoint1) || (NULL == pAnchorWatchPoint2))) {
959 DistanceBearingMercator(m_pFoundRoutePoint->m_lat,
960 m_pFoundRoutePoint->m_lon, gLat, gLon, &brg,
962 if (dist * 1852. <= g_nAWMax)
963 MenuAppend1(menuWaypoint, ID_WP_MENU_SET_ANCHORWATCH,
964 _(
"Set Anchor Watch"));
969 if (menuFocus != menuAIS) menuFocus = menuWaypoint;
972 enum { WPMENU = 1, TKMENU = 2, RTMENU = 4, MMMENU = 8 };
974 if (!g_bBasicMenus && menuFocus != contextMenu) {
975 if (global_color_scheme != GLOBAL_COLOR_SCHEME_DUSK &&
976 global_color_scheme != GLOBAL_COLOR_SCHEME_NIGHT) {
977 menuFocus->AppendSeparator();
979 wxMenuItem *subMenu1;
980 if (menuWaypoint && menuFocus != menuWaypoint) {
982 menuFocus->AppendSubMenu(menuWaypoint, menuWaypoint->GetTitle());
983 SetMenuItemFont1(subMenu1);
986 menuWaypoint->SetTitle(wxEmptyString);
989 if (menuTrack && menuFocus != menuTrack) {
990 subMenu1 = menuFocus->AppendSubMenu(menuTrack, menuTrack->GetTitle());
991 SetMenuItemFont1(subMenu1);
994 menuTrack->SetTitle(wxEmptyString);
997 if (menuRoute && menuFocus != menuRoute) {
998 subMenu1 = menuFocus->AppendSubMenu(menuRoute, menuRoute->GetTitle());
999 SetMenuItemFont1(subMenu1);
1002 menuRoute->SetTitle(wxEmptyString);
1005 subMenu1 = menuFocus->AppendSubMenu(contextMenu, _(
"Main Menu"));
1006 SetMenuItemFont1(subMenu1);
1010 if (!subMenuChart->GetMenuItemCount()) contextMenu->Destroy(subItemChart);
1015 if (seltype & SELTYPE_TIDEPOINT) {
1016 menuFocus->AppendSeparator();
1018 MenuAppend1(menuFocus, ID_DEF_MENU_TIDEINFO, _(
"Show Tide Information"));
1021 if (seltype & SELTYPE_CURRENTPOINT) {
1022 if (!bsep) menuFocus->AppendSeparator();
1023 MenuAppend1(menuFocus, ID_DEF_MENU_CURRENTINFO,
1024 _(
"Show Current Information"));
1028 g_pi_manager->PrepareAllPluginContextMenus();
1031 ArrayOfPlugInMenuItems item_array =
1032 g_pi_manager->GetPluginContextMenuItemArray();
1034 for (
unsigned int i = 0; i < item_array.GetCount(); i++) {
1036 if (!pimis->b_viz)
continue;
1038 wxMenu *submenu = NULL;
1039 if (pimis->pmenu_item->GetSubMenu()) {
1040 submenu =
new wxMenu();
1041 const wxMenuItemList &items =
1042 pimis->pmenu_item->GetSubMenu()->GetMenuItems();
1043 for (wxMenuItemList::const_iterator it = items.begin(); it != items.end();
1046 for (
unsigned int j = 0; j < item_array.GetCount(); j++) {
1048 if (pimis->pmenu_item == *it)
id = pimis->id;
1051 wxMenuItem *pmi =
new wxMenuItem(submenu,
id,
1052#
if wxCHECK_VERSION(3, 0, 0)
1053 (*it)->GetItemLabelText(),
1057 (*it)->GetHelp(), (*it)->GetKind());
1060 pmi->SetFont(m_scaledFont);
1065 pmi->SetFont(sFont);
1068 PrepareMenuItem(pmi);
1069 submenu->Append(pmi);
1070 pmi->Check((*it)->IsChecked());
1074 wxMenuItem *pmi =
new wxMenuItem(contextMenu, pimis->id,
1075#
if wxCHECK_VERSION(3, 0, 0)
1076 pimis->pmenu_item->GetItemLabelText(),
1078 pimis->pmenu_item->GetLabel(),
1080 pimis->pmenu_item->GetHelp(),
1081 pimis->pmenu_item->GetKind(), submenu);
1083 pmi->SetFont(m_scaledFont);
1088 pmi->SetFont(sFont);
1091 PrepareMenuItem(pmi);
1093 wxMenu *dst = contextMenu;
1094 if (pimis->m_in_menu ==
"Waypoint")
1096 else if (pimis->m_in_menu ==
"Route")
1098 else if (pimis->m_in_menu ==
"Track")
1100 else if (pimis->m_in_menu ==
"AIS")
1105 dst->Enable(pimis->id, !pimis->b_grey);
1112 androidEnableBackButton(
false);
1113 androidEnableOptionsMenu(
false);
1121 parent->PopupMenu(menuFocus, x, y);
1124 androidEnableBackButton(
true);
1125 androidEnableOptionsMenu(
true);
1132 if (!(sub_menu & MMMENU))
delete contextMenu;
1133 if (!(sub_menu & RTMENU))
delete menuRoute;
1134 if (!(sub_menu & TKMENU))
delete menuTrack;
1135 if (!(sub_menu & WPMENU))
delete menuWaypoint;
1138void CanvasMenuHandler::PopupMenuHandler(wxCommandEvent &event) {
1145 bool dupFirstWpt =
true, showRPD;
1150 switch (event.GetId()) {
1151 case ID_DEF_MENU_MAX_DETAIL:
1154 parent->ClearbFollow();
1156 parent->parent_frame->DoChartUpdate();
1158 parent->SelectChartFromStack(0,
false, CHART_TYPE_DONTCARE,
1159 CHART_FAMILY_RASTER);
1162 case ID_DEF_MENU_SCALE_IN:
1163 parent->DoCanvasStackDelta(-1);
1166 case ID_DEF_MENU_SCALE_OUT:
1167 parent->DoCanvasStackDelta(1);
1171 parent->undo->UndoLastAction();
1172 parent->InvalidateGL();
1173 parent->Refresh(
false);
1177 parent->undo->RedoNextAction();
1178 parent->InvalidateGL();
1179 parent->Refresh(
false);
1182 case ID_DEF_MENU_MOVE_BOAT_HERE:
1185 gFrame->UpdateStatusBar();
1188 case ID_DEF_MENU_GOTO_HERE: {
1190 wxEmptyString, wxEmptyString);
1191 pSelect->AddSelectableRoutePoint(zlat, zlon, pWP_dest);
1194 wxEmptyString, wxEmptyString);
1195 pSelect->AddSelectableRoutePoint(gLat, gLon, pWP_src);
1198 pRouteList->Append(temp_route);
1200 temp_route->AddPoint(pWP_src);
1201 temp_route->AddPoint(pWP_dest);
1203 pSelect->AddSelectableRouteSegment(gLat, gLon, zlat, zlon, pWP_src,
1204 pWP_dest, temp_route);
1206 temp_route->m_RouteNameString = _(
"Temporary GOTO Route");
1207 temp_route->m_RouteStartString = _(
"Here");
1209 temp_route->m_RouteEndString = _(
"There");
1211 temp_route->m_bDeleteOnArrival =
true;
1213 if (g_pRouteMan->GetpActiveRoute()) g_pRouteMan->DeactivateRoute();
1215 g_pRouteMan->ActivateRoute(temp_route, pWP_dest);
1220 case ID_DEF_MENU_DROP_WP: {
1222 wxEmptyString, wxEmptyString);
1224 pSelect->AddSelectableRoutePoint(zlat, zlon, pWP);
1225 pConfig->AddNewWayPoint(pWP, -1);
1229 if (RouteManagerDialog::getInstanceFlag()) {
1230 if (pRouteManagerDialog && pRouteManagerDialog->IsShown()) {
1231 pRouteManagerDialog->UpdateWptListCtrl();
1235 parent->undo->BeforeUndoableAction(Undo_CreateWaypoint, pWP,
1236 Undo_HasParent, NULL);
1237 parent->undo->AfterUndoableAction(NULL);
1238 gFrame->RefreshAllCanvas(
false);
1239 gFrame->InvalidateAllGL();
1240 g_FlushNavobjChanges =
true;
1244 case ID_DEF_MENU_NEW_RT: {
1245 parent->StartRoute();
1249 case ID_DEF_MENU_AISTARGETLIST:
1250 parent->ShowAISTargetList();
1253 case ID_DEF_MENU_AIS_CPAWARNING:
1254 parent->ToggleCPAWarn();
1257 case ID_WP_MENU_GOTO: {
1259 wxEmptyString, wxEmptyString);
1260 pSelect->AddSelectableRoutePoint(gLat, gLon, pWP_src);
1263 pRouteList->Append(temp_route);
1265 temp_route->AddPoint(pWP_src);
1266 temp_route->AddPoint(m_pFoundRoutePoint);
1267 m_pFoundRoutePoint->SetShared(
true);
1269 pSelect->AddSelectableRouteSegment(gLat, gLon, m_pFoundRoutePoint->m_lat,
1270 m_pFoundRoutePoint->m_lon, pWP_src,
1271 m_pFoundRoutePoint, temp_route);
1273 wxString name = m_pFoundRoutePoint->GetName();
1274 if (name.IsEmpty()) name = _(
"(Unnamed Waypoint)");
1275 wxString rteName = _(
"Go to ");
1276 rteName.Append(name);
1277 temp_route->m_RouteNameString = rteName;
1278 temp_route->m_RouteStartString = _(
"Here");
1280 temp_route->m_RouteEndString = name;
1281 temp_route->m_bDeleteOnArrival =
true;
1283 if (g_pRouteMan->GetpActiveRoute()) g_pRouteMan->DeactivateRoute();
1285 g_pRouteMan->ActivateRoute(temp_route, m_pFoundRoutePoint);
1290 case ID_DEF_MENU_COGUP:
1291 parent->SetUpMode(COURSE_UP_MODE);
1294 case ID_DEF_MENU_HEADUP:
1295 parent->SetUpMode(HEAD_UP_MODE);
1298 case ID_DEF_MENU_NORTHUP:
1299 parent->SetUpMode(NORTH_UP_MODE);
1302 case ID_DEF_MENU_TOGGLE_FULL:
1303 gFrame->ToggleFullScreen();
1306 case ID_DEF_MENU_GOTOPOSITION:
1307 if (NULL == pGoToPositionDialog)
1310 pGoToPositionDialog->SetCanvas(parent);
1311 pGoToPositionDialog->CheckPasteBufferForPosition();
1312 pGoToPositionDialog->Show();
1315 case ID_WP_MENU_DELPOINT: {
1316 if (m_pFoundRoutePoint == pAnchorWatchPoint1) {
1317 pAnchorWatchPoint1 = NULL;
1319 }
else if (m_pFoundRoutePoint == pAnchorWatchPoint2) {
1320 pAnchorWatchPoint2 = NULL;
1324 if (m_pFoundRoutePoint && !(m_pFoundRoutePoint->m_bIsInLayer) &&
1325 (m_pFoundRoutePoint->GetIconName() != _T(
"mob"))) {
1329 wxArrayPtrVoid *proute_array =
1330 g_pRouteMan->GetRouteArrayContaining(m_pFoundRoutePoint);
1332 pWayPointMan->DestroyWaypoint(m_pFoundRoutePoint);
1334 parent->undo->BeforeUndoableAction(
1335 Undo_DeleteWaypoint, m_pFoundRoutePoint, Undo_IsOrphanded,
1337 pConfig->DeleteWayPoint(m_pFoundRoutePoint);
1338 pSelect->DeleteSelectablePoint(m_pFoundRoutePoint,
1339 SELTYPE_ROUTEPOINT);
1340 if (NULL != pWayPointMan)
1342 parent->undo->AfterUndoableAction(NULL);
1345 if (g_pMarkInfoDialog) {
1346 g_pMarkInfoDialog->ClearData();
1349 if (RouteManagerDialog::getInstanceFlag()) {
1350 if (pRouteManagerDialog) {
1351 if (pRouteManagerDialog->IsShown())
1352 pRouteManagerDialog->UpdateWptListCtrl();
1356 gFrame->RefreshAllCanvas(
false);
1357 gFrame->InvalidateAllGL();
1361 case ID_WP_MENU_PROPERTIES:
1362 parent->ShowMarkPropertiesDialog(m_pFoundRoutePoint);
1365 case ID_WP_MENU_CLEAR_ANCHORWATCH: {
1366 wxString guid = wxEmptyString;
1367 if (pAnchorWatchPoint1 == m_pFoundRoutePoint) {
1368 pAnchorWatchPoint1 = NULL;
1371 }
else if (pAnchorWatchPoint2 == m_pFoundRoutePoint) {
1372 pAnchorWatchPoint2 = NULL;
1376 if (!guid.IsEmpty()) {
1378 v[_T(
"GUID")] = guid;
1379 wxString msg_id(_T(
"OCPN_ANCHOR_WATCH_CLEARED"));
1380 SendJSONMessageToAllPlugins(msg_id, v);
1385 case ID_WP_MENU_SET_ANCHORWATCH: {
1386 wxString guid = wxEmptyString;
1387 if (pAnchorWatchPoint1 == NULL) {
1388 pAnchorWatchPoint1 = m_pFoundRoutePoint;
1389 g_AW1GUID = pAnchorWatchPoint1->m_GUID;
1392 nn = m_pFoundRoutePoint->GetName();
1394 nn.Printf(_T(
"%d m"), g_nAWDefault);
1395 m_pFoundRoutePoint->SetName(nn);
1397 }
else if (pAnchorWatchPoint2 == NULL) {
1398 pAnchorWatchPoint2 = m_pFoundRoutePoint;
1399 g_AW2GUID = pAnchorWatchPoint2->m_GUID;
1402 nn = m_pFoundRoutePoint->GetName();
1404 nn.Printf(_T(
"%d m"), g_nAWDefault);
1405 m_pFoundRoutePoint->SetName(nn);
1408 if (!guid.IsEmpty()) {
1410 v[_T(
"GUID")] = guid;
1411 wxString msg_id(_T(
"OCPN_ANCHOR_WATCH_SET"));
1412 SendJSONMessageToAllPlugins(msg_id, v);
1417 case ID_DEF_MENU_ACTIVATE_MEASURE:
1418 parent->StartMeasureRoute();
1421 case ID_DEF_MENU_DEACTIVATE_MEASURE:
1422 parent->CancelMeasureRoute();
1424 parent->InvalidateGL();
1425 parent->Refresh(
false);
1428 case ID_DEF_MENU_CM93OFFSET_DIALOG: {
1429 if (NULL == g_pCM93OffsetDialog) {
1434 if (!parent->GetVP().b_quilt && parent->m_singleChart &&
1435 (parent->m_singleChart->GetChartType() == CHART_TYPE_CM93COMP)) {
1439 if (g_pCM93OffsetDialog) {
1440 g_pCM93OffsetDialog->SetCM93Chart(pch);
1441 g_pCM93OffsetDialog->Show();
1442 g_pCM93OffsetDialog->UpdateMCOVRList(parent->GetVP());
1447 case ID_DEF_MENU_QUERY: {
1448 parent->ShowObjectQueryWindow(popx, popy, zlat, zlon);
1451 case ID_DEF_MENU_AIS_QUERY: {
1452 ShowAISTargetQueryDialog(parent, m_FoundAIS_MMSI);
1456 case ID_DEF_MENU_AIS_CPA: {
1457 auto myptarget = g_pAIS->Get_Target_Data_From_MMSI(m_FoundAIS_MMSI);
1458 if (myptarget) myptarget->Toggle_AIS_CPA();
1462 case ID_DEF_MENU_AISSHOWTRACK: {
1463 auto myptarget = g_pAIS->Get_Target_Data_From_MMSI(m_FoundAIS_MMSI);
1464 if (myptarget) myptarget->ToggleShowTrack();
1468 case ID_DEF_MENU_COPY_MMSI: {
1470 if (wxTheClipboard->Open()) {
1471 wxTheClipboard->SetData(
new wxTextDataObject(
1472 wxString::Format(wxT(
"%09d"), m_FoundAIS_MMSI)));
1473 wxTheClipboard->Close();
1478 case ID_DEF_MENU_QUILTREMOVE: {
1479 if (parent->GetVP().b_quilt) {
1480 int dbIndex = parent->m_pQuilt->GetChartdbIndexAtPix(
1481 parent->GetVP(), wxPoint(popx, popy));
1482 parent->RemoveChartFromQuilt(dbIndex);
1490 case ID_DEF_MENU_CURRENTINFO: {
1491 parent->DrawTCWindow(popx, popy, (
void *)m_pIDXCandidate);
1492 parent->Refresh(
false);
1497 case ID_DEF_MENU_TIDEINFO: {
1498 parent->DrawTCWindow(popx, popy, (
void *)m_pIDXCandidate);
1499 parent->Refresh(
false);
1504 case ID_DGB_MENU_NMEA_WINDOW: {
1505 if (!wxWindow::FindWindowByName(
"NmeaDebugWindow")) {
1506 auto top_window = wxWindow::FindWindowByName(kTopLevelWindowName);
1507 NMEALogWindow::GetInstance().Create(top_window, 35);
1509 wxWindow::FindWindowByName(
"NmeaDebugWindow")->Show();
1512 case ID_RT_MENU_REVERSE: {
1513 if (m_pSelectedRoute->m_bIsInLayer)
break;
1516 OCPNMessageBox(parent, g_pRouteMan->GetRouteReverseMessage(),
1517 _(
"Rename Waypoints?"), wxYES_NO | wxCANCEL);
1519 if (ask_return != wxID_CANCEL) {
1520 pSelect->DeleteAllSelectableRouteSegments(m_pSelectedRoute);
1521 m_pSelectedRoute->Reverse(ask_return == wxID_YES);
1522 pSelect->AddAllSelectableRouteSegments(m_pSelectedRoute);
1524 pConfig->UpdateRoute(m_pSelectedRoute);
1526 if (pRoutePropDialog && (pRoutePropDialog->IsShown())) {
1527 pRoutePropDialog->SetRouteAndUpdate(m_pSelectedRoute);
1530 gFrame->InvalidateAllGL();
1531 gFrame->RefreshAllCanvas();
1536 case ID_RT_MENU_SHOWNAMES: {
1537 if (m_pSelectedRoute) {
1538 m_pSelectedRoute->ShowWaypointNames(
1539 !m_pSelectedRoute->AreWaypointNamesVisible());
1545 case ID_RT_MENU_RESEQUENCE: {
1546 if (m_pSelectedRoute) {
1547 if (m_pSelectedRoute->m_bIsInLayer)
break;
1550 OCPNMessageBox(parent, g_pRouteMan->GetRouteResequenceMessage(),
1551 _(
"Rename Waypoints?"), wxYES_NO | wxCANCEL);
1553 if (ask_return != wxID_CANCEL) {
1554 m_pSelectedRoute->RenameRoutePoints();
1557 gFrame->InvalidateAllGL();
1558 gFrame->RefreshAllCanvas();
1564 case ID_RT_MENU_DELETE: {
1565 bool confirmed = RouteGui::OnDelete(parent);
1568 if (g_pRouteMan->GetpActiveRoute() == m_pSelectedRoute)
1569 g_pRouteMan->DeactivateRoute();
1571 if (m_pSelectedRoute->m_bIsInLayer)
break;
1574 NavObjectChanges::getInstance()))
1577 if (RouteManagerDialog::getInstanceFlag()) {
1578 if (pRouteManagerDialog && pRouteManagerDialog->IsShown())
1579 pRouteManagerDialog->UpdateRouteListCtrl();
1582 if (g_pMarkInfoDialog && g_pMarkInfoDialog->IsShown()) {
1583 g_pMarkInfoDialog->ValidateMark();
1584 g_pMarkInfoDialog->UpdateProperties();
1587 parent->undo->InvalidateUndo();
1589 gFrame->InvalidateAllGL();
1590 gFrame->RefreshAllCanvas();
1595 case ID_RT_MENU_ACTIVATE: {
1596 if (g_pRouteMan->GetpActiveRoute()) g_pRouteMan->DeactivateRoute();
1602 if (m_pSelectedRoute) {
1604 m_pSelectedRoute->m_RouteNameString.Find(_T(
"MOB"))) {
1605 best_point = g_pRouteMan->FindBestActivatePoint(
1606 m_pSelectedRoute, gLat, gLon, gCog, gSog);
1608 best_point = m_pSelectedRoute->GetPoint(2);
1610 g_pRouteMan->ActivateRoute(m_pSelectedRoute, best_point);
1611 m_pSelectedRoute->m_bRtIsSelected =
false;
1617 case ID_RT_MENU_DEACTIVATE:
1618 g_pRouteMan->DeactivateRoute();
1619 m_pSelectedRoute->m_bRtIsSelected =
false;
1623 case ID_RT_MENU_INSERT: {
1624 if (m_pSelectedRoute->m_bIsInLayer)
break;
1625 bool rename =
false;
1626 m_pSelectedRoute->InsertPointAfter(m_pFoundRoutePoint, zlat, zlon,
1629 pSelect->DeleteAllSelectableRoutePoints(m_pSelectedRoute);
1630 pSelect->DeleteAllSelectableRouteSegments(m_pSelectedRoute);
1632 pSelect->AddAllSelectableRouteSegments(m_pSelectedRoute);
1633 pSelect->AddAllSelectableRoutePoints(m_pSelectedRoute);
1646 pConfig->UpdateRoute(m_pSelectedRoute);
1648 if (pRoutePropDialog && (pRoutePropDialog->IsShown())) {
1649 pRoutePropDialog->SetRouteAndUpdate(m_pSelectedRoute,
true);
1655 case ID_RT_MENU_APPEND:
1657 if (m_pSelectedRoute->m_bIsInLayer)
break;
1659 parent->m_pMouseRoute = m_pSelectedRoute;
1660 parent->m_routeState = m_pSelectedRoute->GetnPoints() + 1;
1661 parent->m_pMouseRoute->m_lastMousePointIndex =
1662 m_pSelectedRoute->GetnPoints();
1663 parent->m_pMouseRoute->SetHiLite(50);
1665 pLast = m_pSelectedRoute->GetLastPoint();
1667 parent->m_prev_rlat = pLast->m_lat;
1668 parent->m_prev_rlon = pLast->m_lon;
1669 parent->m_prev_pMousePoint = pLast;
1671 parent->m_bAppendingRoute =
true;
1673 parent->SetCursor(*parent->pCursorPencil);
1675 androidSetRouteAnnunciator(
true);
1678 parent->HideGlobalToolbar();
1682 case ID_RT_MENU_SPLIT_LEG:
1684 dupFirstWpt =
false;
1685 case ID_RT_MENU_SPLIT_WPT:
1687 showRPD = (pRoutePropDialog && pRoutePropDialog->IsShown());
1689 if (g_pRouteMan->GetpActiveRoute() == m_pSelectedRoute)
1690 g_pRouteMan->DeactivateRoute();
1692 m_pHead =
new Route();
1693 m_pTail =
new Route();
1694 m_pHead->CloneRoute(m_pSelectedRoute, 1, m_SelectedIdx, _(
"_A"));
1695 m_pTail->CloneRoute(m_pSelectedRoute, m_SelectedIdx + splitMode,
1696 m_pSelectedRoute->GetnPoints(), _(
"_B"), dupFirstWpt);
1697 pRouteList->Append(m_pHead);
1698 pConfig->AddNewRoute(m_pHead);
1700 pRouteList->Append(m_pTail);
1701 pConfig->AddNewRoute(m_pTail);
1703 pConfig->DeleteConfigRoute(m_pSelectedRoute);
1705 pSelect->DeleteAllSelectableRoutePoints(m_pSelectedRoute);
1706 pSelect->DeleteAllSelectableRouteSegments(m_pSelectedRoute);
1708 NavObjectChanges::getInstance());
1709 pSelect->AddAllSelectableRouteSegments(m_pTail);
1710 pSelect->AddAllSelectableRoutePoints(m_pTail);
1711 pSelect->AddAllSelectableRouteSegments(m_pHead);
1712 pSelect->AddAllSelectableRoutePoints(m_pHead);
1715 pRoutePropDialog->SetRouteAndUpdate(m_pHead);
1716 pRoutePropDialog->Show();
1718 if (RouteManagerDialog::getInstanceFlag() && pRouteManagerDialog &&
1719 (pRouteManagerDialog->IsShown()))
1720 pRouteManagerDialog->UpdateRouteListCtrl();
1723 case ID_RT_MENU_COPY:
1724 if (m_pSelectedRoute) Kml::CopyRouteToClipboard(m_pSelectedRoute);
1727 case ID_TK_MENU_COPY:
1728 if (m_pSelectedTrack) Kml::CopyTrackToClipboard(m_pSelectedTrack);
1731 case ID_WPT_MENU_COPY:
1732 if (m_pFoundRoutePoint) Kml::CopyWaypointToClipboard(m_pFoundRoutePoint);
1735 case ID_WPT_MENU_SENDTOGPS:
1736 if (m_pFoundRoutePoint) {
1737 if (parent->m_active_upload_port.Length())
1739 .SendToGPS(parent->m_active_upload_port.BeforeFirst(
' '), NULL);
1742 dlg.SetWaypoint(m_pFoundRoutePoint);
1746 dlg.Create(NULL, -1, _(
"Send to GPS") + _T(
"..." ), _T(
""));
1752 case ID_WPT_MENU_SENDTONEWGPS:
1753 if (m_pFoundRoutePoint) {
1755 dlg.SetWaypoint(m_pFoundRoutePoint);
1757 dlg.Create(NULL, -1, _(
"Send to GPS") + _T(
"..." ), _T(
""));
1762 case ID_WPT_MENU_SENDTOPEER:
1763 if (m_pFoundRoutePoint) {
1765 dlg.SetWaypoint(m_pFoundRoutePoint);
1770 MdnsCache::GetInstance().
Validate();
1771 if (MdnsCache::GetInstance().GetCache().empty())
1772 dlg.SetScanOnCreate(
true);
1775 dlg.Create(NULL, -1, _(
"Send Waypoint to OpenCPN Peer") + _T(
"..." ),
1781 case ID_RT_MENU_SENDTOGPS:
1782 if (m_pSelectedRoute) {
1783 if (parent->m_active_upload_port.Length())
1785 .SendToGPS(parent->m_active_upload_port.BeforeFirst(
' '),
true,
1789 dlg.SetRoute(m_pSelectedRoute);
1791 dlg.Create(NULL, -1, _(
"Send to GPS") + _T(
"..." ), _T(
""));
1797 case ID_RT_MENU_SENDTONEWGPS:
1798 if (m_pSelectedRoute) {
1800 dlg.SetRoute(m_pSelectedRoute);
1802 dlg.Create(NULL, -1, _(
"Send to GPS") + _T(
"..." ), _T(
""));
1807 case ID_RT_MENU_SENDTOPEER:
1808 if (m_pSelectedRoute) {
1810 dlg.SetRoute(m_pSelectedRoute);
1815 MdnsCache::GetInstance().
Validate();
1816 if (MdnsCache::GetInstance().GetCache().empty())
1817 dlg.SetScanOnCreate(
true);
1820 dlg.Create(NULL, -1, _(
"Send Route to OpenCPN Peer") + _T(
"..." ),
1826 case ID_PASTE_WAYPOINT:
1827 pupHandler_PasteWaypoint();
1830 case ID_PASTE_ROUTE:
1831 pupHandler_PasteRoute();
1834 case ID_PASTE_TRACK:
1835 pupHandler_PasteTrack();
1838 case ID_RT_MENU_DELPOINT:
1839 if (m_pSelectedRoute) {
1840 if (m_pSelectedRoute->m_bIsInLayer)
break;
1842 pWayPointMan->DestroyWaypoint(m_pFoundRoutePoint);
1844 if (pRoutePropDialog && (pRoutePropDialog->IsShown())) {
1847 if (g_pRouteMan->IsRouteValid(m_pSelectedRoute)) {
1848 pRoutePropDialog->SetRouteAndUpdate(m_pSelectedRoute,
true);
1850 pRoutePropDialog->Hide();
1853 if (RouteManagerDialog::getInstanceFlag()) {
1854 if (pRouteManagerDialog && pRouteManagerDialog->IsShown()) {
1855 pRouteManagerDialog->UpdateWptListCtrl();
1856 pRouteManagerDialog->UpdateRouteListCtrl();
1860 gFrame->InvalidateAllGL();
1861 gFrame->RefreshAllCanvas(
true);
1866 case ID_RT_MENU_REMPOINT:
1867 if (m_pSelectedRoute) {
1868 if (m_pSelectedRoute->m_bIsInLayer)
break;
1869 g_pRouteMan->RemovePointFromRoute(m_pFoundRoutePoint, m_pSelectedRoute,
1870 parent->m_routeState);
1871 gFrame->InvalidateAllGL();
1872 gFrame->RefreshAllCanvas();
1876 case ID_RT_MENU_ACTPOINT:
1877 if (g_pRouteMan->GetpActiveRoute() == m_pSelectedRoute) {
1879 m_pSelectedRoute->m_bRtIsSelected =
false;
1884 case ID_RT_MENU_DEACTPOINT:
1887 case ID_RT_MENU_ACTNXTPOINT:
1888 if (g_pRouteMan->GetpActiveRoute() == m_pSelectedRoute) {
1890 m_pSelectedRoute->m_bRtIsSelected =
false;
1895 case ID_RT_MENU_PROPERTIES: {
1896 parent->ShowRoutePropertiesDialog(_(
"Route Properties"),
1901 case ID_TK_MENU_PROPERTIES: {
1902 parent->ShowTrackPropertiesDialog(m_pSelectedTrack);
1906 case ID_TK_MENU_DELETE: {
1907 int dlg_return = wxID_YES;
1908 if (g_bConfirmObjectDelete) {
1909 dlg_return = OCPNMessageBox(
1910 parent, _(
"Are you sure you want to delete this track?"),
1911 _(
"OpenCPN Track Delete"),
1912 (
long)wxYES_NO | wxCANCEL | wxYES_DEFAULT);
1915 if (dlg_return == wxID_YES) {
1916 if (m_pSelectedTrack == g_pActiveTrack)
1917 m_pSelectedTrack = parent->parent_frame->TrackOff();
1918 g_pAIS->DeletePersistentTrack(m_pSelectedTrack);
1919 pConfig->DeleteConfigTrack(m_pSelectedTrack);
1921 RoutemanGui(*g_pRouteMan).DeleteTrack(m_pSelectedTrack);
1923 if (TrackPropDlg::getInstanceFlag() && pTrackPropDialog &&
1924 (pTrackPropDialog->IsShown()) &&
1925 (m_pSelectedTrack == pTrackPropDialog->GetTrack())) {
1926 pTrackPropDialog->Hide();
1929 if (RoutePropDlgImpl::getInstanceFlag() && pRouteManagerDialog &&
1930 pRouteManagerDialog->IsShown()) {
1931 pRouteManagerDialog->UpdateTrkListCtrl();
1932 pRouteManagerDialog->UpdateRouteListCtrl();
1934 gFrame->InvalidateAllGL();
1935 gFrame->RefreshAllCanvas();
1940 case ID_TK_MENU_SENDTOPEER:
1941 if (m_pSelectedTrack) {
1943 dlg.SetTrack(m_pSelectedTrack);
1948 MdnsCache::GetInstance().
Validate();
1949 if (MdnsCache::GetInstance().GetCache().empty())
1950 dlg.SetScanOnCreate(
true);
1953 dlg.Create(NULL, -1, _(
"Send Track to OpenCPN Peer") + _T(
"..." ),
1959 case ID_RC_MENU_SCALE_IN:
1960 parent->parent_frame->DoStackDown(parent);
1962 parent->WarpPointer(r.x, r.y);
1965 case ID_RC_MENU_SCALE_OUT:
1966 parent->parent_frame->DoStackUp(parent);
1968 parent->WarpPointer(r.x, r.y);
1971 case ID_RC_MENU_ZOOM_IN:
1974 parent->WarpPointer(r.x, r.y);
1977 case ID_RC_MENU_ZOOM_OUT:
1980 parent->WarpPointer(r.x, r.y);
1983 case ID_RC_MENU_FINISH:
1984 parent->FinishRoute();
1986 parent->Refresh(
false);
1987 g_FlushNavobjChanges =
true;
1990 case ID_DEF_ZERO_XTE:
1991 g_pRouteMan->ZeroCurrentXTEToActivePoint();
1997 ArrayOfPlugInMenuItems item_array =
1998 g_pi_manager->GetPluginContextMenuItemArray();
2000 for (
unsigned int i = 0; i < item_array.GetCount(); i++) {
2003 if (pimis->id == event.GetId()) {
2004 if (pimis->m_pplugin)
2015 if ((event.GetId() >= ID_DEF_MENU_GROUPBASE) &&
2017 ID_DEF_MENU_GROUPBASE + (
int)g_pGroupArray->GetCount())) {
2018 parent->SetGroupIndex(event.GetId() - ID_DEF_MENU_GROUPBASE);
2021 parent->InvalidateGL();
Global state for AIS decoder.
Represents an active track that is currently being recorded.
Dialog for managing CM93 chart offsets.
Base class for all chart types.
ChartCanvas - Main chart display and interaction component.
bool GetCanvasPointPix(double rlat, double rlon, wxPoint *r)
Convert latitude/longitude to canvas pixel coordinates (physical pixels) rounded to nearest integer.
double GetDisplayScale()
Get the ratio of physical to logical pixel for the display.
float GetVPScale()
Return the ViewPort scale factor, in physical pixels per meter.
bool SetVPScale(double sc, bool b_refresh=true)
Sets the viewport scale while maintaining the center point.
void GetCanvasPixPoint(double x, double y, double &lat, double &lon)
Convert canvas pixel coordinates (physical pixels) to latitude/longitude.
Dialog for displaying and editing waypoint properties.
void Validate()
Check that all entries are accessible, remove stale ones.
Represents a waypoint or mark within the navigation system.
bool m_bIsolatedMark
Flag indicating if the waypoint is a standalone mark.
Represents a navigational route in the navigation system.
bool ActivateRoutePoint(Route *pA, RoutePoint *pRP)
bool ActivateNextPoint(Route *pr, bool skipped)
bool DeleteRoute(Route *pRoute, NavObjectChanges *nav_obj_changes)
Dialog for sending routes/waypoints to a GPS device.
Dialog for sending navigation objects to peer devices.
Represents a track, which is a series of connected track points.
bool RemoveRoutePoint(RoutePoint *prp)
Remove a routepoint from list if present, deallocate it all cases.
Represents a composite CM93 chart covering multiple scales.
virtual void OnContextMenuItemCallback(int id)
Handles context menu item selection.
The JSON value class implementation.
Hooks into gui available in model.
wxFont * GetOCPNScaledFont(wxString item, int default_size)
Retrieves a font from FontMgr, optionally scaled for physical readability.
wxFont GetOCPNGUIScaledFont(wxString item)
Retrieves a font optimized for touch and high-resolution interfaces.
MdnsCache mDNS host lookups cache.
Tools to send data to plugins.