OpenCPN Partial API docs
Loading...
Searching...
No Matches
canvasMenu.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: CanvasMenuHandler
5 * Author: David Register
6 *
7 ***************************************************************************
8 * Copyright (C) 2015 by David S. Register *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
24 **************************************************************************/
25
26#ifndef __CANVASMENU_H__
27#define __CANVASMENU_H__
28
29#include "bbox.h"
30
31#include <wx/datetime.h>
32#include <wx/treectrl.h>
33#include <wx/dirctrl.h>
34#include <wx/sound.h>
35#include <wx/grid.h>
36#include <wx/wxhtml.h>
37
38#include "ocpndc.h"
39#include "undo.h"
40
41#include "ocpCursor.h"
42#include "S57QueryDialog.h"
43#include "GoToPositionDialog.h"
44#include "DetailSlider.h"
45#include "RolloverWin.h"
46#include "AISTargetQueryDialog.h"
47#include "timers.h"
48#include "emboss_data.h"
49
50class wxGLContext;
51class GSHHSChart;
52class IDX_entry;
53
54//----------------------------------------------------------------------------
55// Forward Declarations
56//----------------------------------------------------------------------------
57class Route;
58class TCWin;
59class RoutePoint;
60class SelectItem;
61class BoundingBox;
62class ocpnBitmap;
63class WVSChart;
64class MyFrame;
65class ChartBaseBSB;
66class ChartBase;
67class AisTargetData;
68class S57ObjectTree;
69class S57ObjectDesc;
70class RolloverWin;
71class Quilt;
72class PixelCache;
73class ChInfoWin;
74class glChartCanvas;
75class Track;
76
82class CanvasMenuHandler : public wxEvtHandler {
83public:
84 CanvasMenuHandler(ChartCanvas *parentCanvas, Route *selectedRoute,
85 Track *selectedTrack, RoutePoint *selectedPoint,
86 int selectedAIS_MMSI, void *selectedTCIndex);
87
89
90 void CanvasPopupMenu(int x, int y, int seltype);
91 void PopupMenuHandler(wxCommandEvent &event);
92 static int GetNextContextMenuId();
93 void PrepareMenuItem(wxMenuItem *item);
94 void MenuPrepend1(wxMenu *menu, int id, wxString label);
95 void MenuAppend1(wxMenu *menu, int id, wxString label);
96 void SetMenuItemFont1(wxMenuItem *item);
97
98 static wxFont m_scaledFont;
99
100private:
101 int popx, popy;
102 ChartCanvas *parent;
103 Route *m_pSelectedRoute;
104 Track *m_pSelectedTrack;
105 RoutePoint *m_pFoundRoutePoint;
106 Route *m_pHead; // for split function
107 Route *m_pTail;
108 int m_SelectedIdx;
109 int m_FoundAIS_MMSI;
110 void *m_pIDXCandidate;
111 double m_DIPFactor;
112};
113
114#endif
Handles context menu events for the chart canvas.
Definition canvasMenu.h:82
A custom panel for displaying chart information.
Definition ChInfoWin.h:36
Base class for BSB (Maptech/NOS) format nautical charts.
Definition chartimg.h:131
Base class for all chart types.
Definition chartbase.h:119
ChartCanvas - Main chart display and interaction component.
Definition chcanv.h:148
Represents an index entry for tidal and current data.
Definition IDX_entry.h:49
Main application frame.
Definition ocpn_frame.h:135
Definition Quilt.h:83
Represents a waypoint or mark within the navigation system.
Definition route_point.h:68
Represents a navigational route in the navigation system.
Definition route.h:96
Describes an S57 object (feature) in an Electronic Navigational Chart.
Definition TCWin.h:46
Represents a track, which is a series of connected track points.
Definition track.h:79
OpenGL chart rendering canvas.