OpenCPN Partial API docs
Loading...
Searching...
No Matches
/home/runner/work/main/main/opencpn/include/ocpn_plugin.h

Retrieves a platform-normalized font scaled for consistent physical size.

Retrieves a platform-normalized font scaled for consistent physical size.Provides a font that maintains perceptually consistent size across different platforms, screen densities, and display characteristics. The scaling ensures that a specified font size appears similar in physical dimensions regardless of:

Parameters
TextElementIdentifies the UI context (e.g., "AISTargetAlert", "StatusBar")
default_sizeBase font size in points. When 0, uses system default. When non-zero (e.g., 12), applies cross-platform scaling to maintain consistent physical font size.
Returns
Pointer to a wxFont with platform-normalized scaling
Note
Scaling mechanism:
  • Adjusts point size based on system DPI
  • Applies platform-specific scaling factors
  • Ensures readable text across diverse display environments
Returned font is managed by OpenCPN's font cache
Pointer should not be deleted by the caller

// A 12-point font will look similar on: // - Windows laptop // - MacBook Retina display // - Android tablet wxFont* font = GetOCPNScaledFont_PlugIn("StatusBar", 12);

/**************************************************************************
* Copyright (C) 2010 - 2024 by David S. Register *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
**************************************************************************/
#ifndef _PLUGIN_H_
#define _PLUGIN_H_
#ifndef DECL_EXP
#if defined(__WXMSW__) || defined(__CYGWIN__)
#define DECL_EXP __declspec(dllexport)
#elif defined __GNUC__ && __GNUC__ >= 4
#define DECL_EXP __attribute__((visibility("default")))
#elif defined __WXOSX__
#define DECL_EXP __attribute__((visibility("default")))
#else
#define DECL_EXP
#endif
#endif
#if defined(__WXMSW__) && defined(MAKING_PLUGIN)
#define DECL_IMP __declspec(dllimport)
#else
#define DECL_IMP
#endif
#include <wx/xml/xml.h>
#include <wx/dcmemory.h>
#include <wx/dialog.h>
#include <wx/event.h>
#include <wx/menuitem.h>
#include <wx/gdicmn.h>
#ifdef ocpnUSE_SVG
#include <wx/bitmap.h>
#endif // ocpnUSE_SVG
#include <memory>
#include <vector>
#include <unordered_map>
class wxGLContext;
// This is the most modern API Version number
// It is expected that the API will remain downward compatible, meaning that
// PlugIns conforming to API Version less than the most modern will also
// be correctly supported.
#define API_VERSION_MAJOR 1
#define API_VERSION_MINOR 19
// Fwd Definitions
class wxFileConfig;
class wxNotebook;
class wxFont;
class wxAuiManager;
class wxScrolledWindow;
class wxGLCanvas;
//---------------------------------------------------------------------------------------------------------
//
// Bitfield PlugIn Capabilites flag definition
//
//---------------------------------------------------------------------------------------------------------
#define WANTS_OVERLAY_CALLBACK 0x00000001
#define WANTS_CURSOR_LATLON 0x00000002
#define WANTS_TOOLBAR_CALLBACK 0x00000004
#define INSTALLS_TOOLBAR_TOOL 0x00000008
#define WANTS_CONFIG 0x00000010
#define INSTALLS_TOOLBOX_PAGE 0x00000020
#define INSTALLS_CONTEXTMENU_ITEMS 0x00000040
#define WANTS_NMEA_SENTENCES 0x00000080
#define WANTS_NMEA_EVENTS 0x00000100
#define WANTS_AIS_SENTENCES 0x00000200
#define USES_AUI_MANAGER 0x00000400
#define WANTS_PREFERENCES 0x00000800
#define INSTALLS_PLUGIN_CHART 0x00001000
#define WANTS_ONPAINT_VIEWPORT 0x00002000
#define WANTS_PLUGIN_MESSAGING 0x00004000
#define WANTS_OPENGL_OVERLAY_CALLBACK 0x00008000
#define WANTS_DYNAMIC_OPENGL_OVERLAY_CALLBACK 0x00010000
#define WANTS_LATE_INIT 0x00020000
#define INSTALLS_PLUGIN_CHART_GL 0x00040000
#define WANTS_MOUSE_EVENTS 0x00080000
#define WANTS_VECTOR_CHART_OBJECT_INFO 0x00100000
#define WANTS_KEYBOARD_EVENTS 0x00200000
#define WANTS_PRESHUTDOWN_HOOK 0x00400000
//---------------------------------------------------------------------------------------------------------
//
// Overlay priorities
//
//---------------------------------------------------------------------------------------------------------
#define OVERLAY_LEGACY 0
#define OVERLAY_OVER_SHIPS 64
#define OVERLAY_OVER_EMBOSS 96
#define OVERLAY_OVER_UI 128
//----------------------------------------------------------------------------------------------------------
// Some PlugIn API interface object class definitions
//----------------------------------------------------------------------------------------------------------
};
public:
double clat;
double clon;
double view_scale_ppm;
double skew;
double rotation;
float chart_scale;
int pix_width;
int pix_height;
wxRect rv_rect;
bool b_quilt;
double lat_min;
double lat_max;
double lon_min;
double lon_max;
bool
};
public:
double Lat;
double Lon;
double Cog;
double Sog;
double Var;
time_t FixTime;
int nSats;
};
public:
double Lat;
double Lon;
double Cog;
double Sog;
double Var;
double Hdm;
double Hdt;
time_t FixTime;
int nSats;
};
public:
double Xte;
double Btw;
double Dtw;
wxString wp_name;
bool arrival;
};
};
public:
int MMSI;
int Class;
int NavStatus;
double SOG;
double COG;
double HDG;
double Lon;
double Lat;
int ROTAIS;
char CallSign[8];
char ShipName[21];
unsigned char ShipType;
int IMO;
double Range_NM;
double Brg;
// Per target collision parameters
bool bCPA_Valid;
double TCPA;
double CPA;
};
typedef enum ChartTypeEnumPI {
typedef enum ChartFamilyEnumPI {
typedef enum ChartDepthUnitTypePI {
typedef enum OcpnProjTypePI {
typedef struct _ExtentPI {
double SLAT;
double WLON;
double NLAT;
double ELON;
// PlugInChartBase::Init() init_flags constants
#define PI_FULL_INIT 0
#define PI_HEADER_ONLY 1
#define PI_THUMB_ONLY 2
class DECL_EXP PlugInChartBase : public wxObject {
public:
// These methods Must be overriden in any derived class
virtual ~PlugInChartBase();
virtual wxString GetFileSearchMask(void);
virtual int Init(const wxString &full_path, int init_flags);
virtual void SetColorScheme(int cs, bool bApplyImmediate);
virtual double GetNormalScaleMin(double canvas_scale_factor,
bool b_allow_overzoom);
virtual double GetNormalScaleMax(double canvas_scale_factor,
int canvas_width);
virtual double GetNearestPreferredScalePPM(double target_scale_ppm);
virtual bool GetChartExtent(ExtentPI *pext);
virtual wxBitmap &RenderRegionView(const PlugIn_ViewPort &VPoint,
const wxRegion &Region);
virtual bool AdjustVP(PlugIn_ViewPort &vp_last, PlugIn_ViewPort &vp_proposed);
virtual void GetValidCanvasRegion(const PlugIn_ViewPort &VPoint,
wxRegion *pValidRegion);
virtual int GetCOVREntries() { return 0; }
virtual int GetCOVRTablePoints(int iTable) { return 0; }
virtual int GetCOVRTablenPoints(int iTable) { return 0; }
virtual float *GetCOVRTableHead(int iTable) { return (float *)NULL; }
virtual wxBitmap *GetThumbnail(int tnx, int tny, int cs);
// Accessors, need not be overridden in derived class if the member
// variables are maintained
virtual wxString GetFullPath() const { return m_FullPath; }
virtual ChartTypeEnumPI GetChartType() { return m_ChartType; }
virtual ChartFamilyEnumPI GetChartFamily() { return m_ChartFamily; }
virtual OcpnProjTypePI GetChartProjection() { return m_projection; }
virtual wxString GetName() { return m_Name; }
virtual wxString GetDescription() { return m_Description; }
virtual wxString GetID() { return m_ID; }
virtual wxString GetSE() { return m_SE; }
virtual wxString GetDepthUnits() { return m_DepthUnits; }
virtual wxString GetSoundingsDatum() { return m_SoundingsDatum; }
virtual wxString GetDatumString() { return m_datum_str; }
virtual wxString GetExtraInfo() { return m_ExtraInfo; }
virtual wxString GetPubDate() { return m_PubYear; }
virtual double GetChartErrorFactor() { return m_Chart_Error_Factor; }
virtual ChartDepthUnitTypePI GetDepthUnitId() { return m_depth_unit_id; }
virtual bool IsReadyToRender() { return m_bReadyToRender; }
virtual int GetNativeScale() { return m_Chart_Scale; };
virtual double GetChartSkew() { return m_Chart_Skew; }
virtual wxDateTime GetEditionDate(void) { return m_EdDate; }
// Methods pertaining to CHART_FAMILY_RASTER type PlugIn charts only
virtual void ComputeSourceRectangle(const PlugIn_ViewPort &vp,
wxRect *pSourceRect);
virtual double GetRasterScaleFactor();
virtual bool GetChartBits(wxRect &source, unsigned char *pPix, int sub_samp);
virtual int GetSize_X();
virtual int GetSize_Y();
virtual void latlong_to_chartpix(double lat, double lon, double &pixx,
double &pixy);
virtual void chartpix_to_latlong(double pixx, double pixy, double *plat,
double *plon);
protected:
ChartTypeEnumPI m_ChartType;
ChartFamilyEnumPI m_ChartFamily;
wxString m_FullPath;
OcpnProjTypePI m_projection;
int m_Chart_Scale;
double m_Chart_Skew;
wxDateTime m_EdDate;
bool m_bReadyToRender;
wxString m_Name;
wxString m_Description;
wxString m_ID;
wxString m_SE;
wxString m_SoundingsDatum;
wxString m_datum_str;
wxString m_PubYear;
wxString m_DepthUnits;
wxString m_ExtraInfo;
ChartDepthUnitTypePI m_depth_unit_id;
double m_Chart_Error_Factor;
};
// Declare an array of PlugIn_AIS_Targets
WX_DEFINE_ARRAY_PTR(PlugIn_AIS_Target *, ArrayOfPlugIn_AIS_Targets);
class DECL_EXP opencpn_plugin {
public:
opencpn_plugin(void *pmgr) {}
virtual ~opencpn_plugin();
// Public API to the PlugIn class
// This group of methods is required, and will be called by the opencpn
// host opencpn PlugIns must implement this group
virtual int Init(void);
virtual bool DeInit(void);
virtual int GetAPIVersionMajor();
virtual int GetAPIVersionMinor();
virtual int GetPlugInVersionMajor();
virtual int GetPlugInVersionMinor();
virtual wxBitmap *GetPlugInBitmap();
// These three methods should produce valid, meaningful strings always
// ---EVEN IF--- the PlugIn has not (yet) been initialized.
// They are used by the PlugInManager GUI
virtual wxString GetCommonName();
virtual wxString GetShortDescription();
virtual wxString GetLongDescription();
// This group is optional.
// PlugIns may override any of these methods as required
virtual void SetDefaults(void);
virtual int GetToolbarToolCount(void);
virtual int GetToolboxPanelCount(void);
virtual void SetupToolboxPanel(int page_sel, wxNotebook *pnotebook);
virtual void OnCloseToolboxPanel(int page_sel, int ok_apply_cancel);
virtual void ShowPreferencesDialog(wxWindow *parent);
virtual bool RenderOverlay(wxMemoryDC *pmdc, PlugIn_ViewPort *vp);
virtual void SetCursorLatLon(double lat, double lon);
virtual void SetCurrentViewPort(PlugIn_ViewPort &vp);
virtual void SetPositionFix(PlugIn_Position_Fix &pfix);
virtual void SetNMEASentence(wxString &sentence);
virtual void SetAISSentence(wxString &sentence);
virtual void ProcessParentResize(int x, int y);
virtual void SetColorScheme(PI_ColorScheme cs);
virtual void OnToolbarToolCallback(int id);
virtual void OnContextMenuItemCallback(int id);
virtual void UpdateAuiStatus(void);
virtual wxArrayString GetDynamicChartClassNameArray(void);
};
// the types of the class factories used to create PlugIn instances
typedef opencpn_plugin *create_t(void *);
typedef void destroy_t(opencpn_plugin *);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
#endif
class DECL_EXP opencpn_plugin_16 : public opencpn_plugin {
public:
opencpn_plugin_16(void *pmgr);
virtual ~opencpn_plugin_16();
virtual bool RenderOverlay(wxDC &dc, PlugIn_ViewPort *vp);
virtual void SetPluginMessage(wxString &message_id, wxString &message_body);
};
class DECL_EXP opencpn_plugin_17 : public opencpn_plugin {
public:
opencpn_plugin_17(void *pmgr);
virtual ~opencpn_plugin_17();
virtual bool RenderOverlay(wxDC &dc, PlugIn_ViewPort *vp);
virtual bool RenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp);
virtual void SetPluginMessage(wxString &message_id, wxString &message_body);
};
class DECL_EXP opencpn_plugin_18 : public opencpn_plugin {
public:
opencpn_plugin_18(void *pmgr);
virtual ~opencpn_plugin_18();
virtual bool RenderOverlay(wxDC &dc, PlugIn_ViewPort *vp);
virtual bool RenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp);
virtual void SetPluginMessage(wxString &message_id, wxString &message_body);
virtual void SetPositionFixEx(PlugIn_Position_Fix_Ex &pfix);
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
class DECL_EXP opencpn_plugin_19 : public opencpn_plugin_18 {
public:
opencpn_plugin_19(void *pmgr);
virtual ~opencpn_plugin_19();
virtual void OnSetupOptions(void);
};
class DECL_EXP opencpn_plugin_110 : public opencpn_plugin_19 {
public:
opencpn_plugin_110(void *pmgr);
virtual void LateInit(void); // If WANTS_LATE_INIT is returned by Init()
};
class DECL_EXP opencpn_plugin_111 : public opencpn_plugin_110 {
public:
opencpn_plugin_111(void *pmgr);
};
class DECL_EXP opencpn_plugin_112 : public opencpn_plugin_111 {
public:
opencpn_plugin_112(void *pmgr);
virtual bool MouseEventHook(wxMouseEvent &event);
virtual void SendVectorChartObjectInfo(wxString &chart, wxString &feature,
wxString &objname, double lat,
double lon, double scale,
int nativescale);
};
class DECL_EXP opencpn_plugin_113 : public opencpn_plugin_112 {
public:
opencpn_plugin_113(void *pmgr);
virtual bool KeyboardEventHook(wxKeyEvent &event);
virtual void OnToolbarToolDownCallback(int id);
virtual void OnToolbarToolUpCallback(int id);
};
class DECL_EXP opencpn_plugin_114 : public opencpn_plugin_113 {
public:
opencpn_plugin_114(void *pmgr);
};
class DECL_EXP opencpn_plugin_115 : public opencpn_plugin_114 {
public:
opencpn_plugin_115(void *pmgr);
};
class DECL_EXP opencpn_plugin_116 : public opencpn_plugin_115 {
public:
opencpn_plugin_116(void *pmgr);
virtual bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext,
PlugIn_ViewPort *vp, int canvasIndex);
virtual bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp,
int canvasIndex);
virtual void PrepareContextMenu(int canvasIndex);
};
class DECL_EXP opencpn_plugin_117 : public opencpn_plugin_116 {
public:
opencpn_plugin_117(void *pmgr);
virtual int GetPlugInVersionPatch();
virtual int GetPlugInVersionPost();
virtual const char *GetPlugInVersionPre();
virtual const char *GetPlugInVersionBuild();
/*Provide active leg data to plugins*/
virtual void SetActiveLegInfo(Plugin_Active_Leg_Info &leg_info);
};
class DECL_EXP opencpn_plugin_118 : public opencpn_plugin_117 {
public:
opencpn_plugin_118(void *pmgr);
#ifdef _MSC_VER
virtual bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext,
PlugIn_ViewPort *vp, int canvasIndex,
int priority = -1);
#else
virtual bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext,
PlugIn_ViewPort *vp, int canvasIndex,
int priority);
bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext, PlugIn_ViewPort *vp,
int canvas_ix) override {
return RenderGLOverlayMultiCanvas(pcontext, vp, canvas_ix, -1);
}
#endif
#ifdef _MSC_VER
virtual bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp,
int canvasIndex, int priority = -1);
#else
virtual bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp,
int canvas_ix, int priority);
bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp,
int canvas_ix) override {
return RenderOverlayMultiCanvas(dc, vp, canvas_ix, -1);
}
#endif
};
class DECL_EXP opencpn_plugin_119 : public opencpn_plugin_118 {
public:
opencpn_plugin_119(void *pmgr);
virtual void PreShutdownHook();
};
//------------------------------------------------------------------
// Route and Waypoint PlugIn support
//
//------------------------------------------------------------------
class DECL_EXP Plugin_Hyperlink {
public:
wxString DescrText;
wxString Link;
wxString Type;
};
WX_DECLARE_LIST(Plugin_Hyperlink, Plugin_HyperlinkList);
class DECL_EXP PlugIn_Waypoint {
public:
PlugIn_Waypoint(double lat, double lon, const wxString &icon_ident,
const wxString &wp_name, const wxString &GUID = _T(""));
double m_lat;
double m_lon;
wxString m_GUID;
wxString m_MarkName;
wxString m_MarkDescription;
wxDateTime m_CreateTime;
bool m_IsVisible;
wxString m_IconName;
Plugin_HyperlinkList *m_HyperlinkList;
};
WX_DECLARE_LIST(PlugIn_Waypoint, Plugin_WaypointList);
class DECL_EXP PlugIn_Route {
public:
PlugIn_Route(void);
wxString m_NameString;
wxString m_StartString;
wxString m_EndString;
wxString m_GUID;
Plugin_WaypointList *pWaypointList;
};
class DECL_EXP PlugIn_Track {
public:
PlugIn_Track(void);
wxString m_NameString;
wxString m_StartString;
wxString m_EndString;
wxString m_GUID;
Plugin_WaypointList *pWaypointList;
};
//----------------------------------------------------------------------------------------------------------
// The PlugIn CallBack API Definition
//
// The API back up to the PlugIn Manager
// PlugIns may call these static functions as necessary for system services
//
//----------------------------------------------------------------------------------------------------------
extern "C" DECL_EXP int InsertPlugInTool(wxString label, wxBitmap *bitmap,
wxBitmap *bmpRollover, wxItemKind kind,
wxString shortHelp, wxString longHelp,
wxObject *clientData, int position,
int tool_sel, opencpn_plugin *pplugin);
extern "C" DECL_EXP void RemovePlugInTool(int tool_id);
extern "C" DECL_EXP void SetToolbarToolViz(int item, bool viz);
extern "C" DECL_EXP void SetToolbarItemState(int item, bool toggle);
extern "C" DECL_EXP void SetToolbarToolBitmaps(int item, wxBitmap *bitmap,
wxBitmap *bmpRollover);
extern "C" DECL_EXP int InsertPlugInToolSVG(
wxString label, wxString SVGfile, wxString SVGfileRollover,
wxString SVGfileToggled, wxItemKind kind, wxString shortHelp,
wxString longHelp, wxObject *clientData, int position, int tool_sel,
opencpn_plugin *pplugin);
extern "C" DECL_EXP void SetToolbarToolBitmapsSVG(int item, wxString SVGfile,
wxString SVGfileRollover,
wxString SVGfileToggled);
extern "C" DECL_EXP int AddCanvasContextMenuItem(wxMenuItem *pitem,
opencpn_plugin *pplugin);
extern "C" DECL_EXP void RemoveCanvasContextMenuItem(int item);
extern "C" DECL_EXP void SetCanvasContextMenuItemViz(int item, bool viz);
extern "C" DECL_EXP void SetCanvasContextMenuItemGrey(int item, bool grey);
extern "C" DECL_EXP wxFileConfig *GetOCPNConfigObject(void);
extern "C" DECL_EXP void RequestRefresh(wxWindow *);
extern "C" DECL_EXP bool GetGlobalColor(wxString colorName, wxColour *pcolour);
extern "C" DECL_EXP void GetCanvasPixLL(PlugIn_ViewPort *vp, wxPoint *pp,
double lat, double lon);
extern "C" DECL_EXP void GetCanvasLLPix(PlugIn_ViewPort *vp, wxPoint p,
double *plat, double *plon);
extern "C" DECL_EXP wxWindow *GetOCPNCanvasWindow();
extern "C" DECL_EXP wxFont *OCPNGetFont(wxString TextElement, int default_size = 0);
extern "C" DECL_EXP wxString *GetpSharedDataLocation();
extern "C" DECL_EXP ArrayOfPlugIn_AIS_Targets *GetAISTargetArray(void);
extern "C" DECL_EXP wxAuiManager *GetFrameAuiManager(void);
extern "C" DECL_EXP bool AddLocaleCatalog(wxString catalog);
extern "C" DECL_EXP void PushNMEABuffer(wxString str);
extern DECL_EXP wxXmlDocument GetChartDatabaseEntryXML(int dbIndex,
bool b_getGeom);
extern DECL_EXP bool UpdateChartDBInplace(wxArrayString dir_array,
bool b_force_update,
bool b_ProgressDialog);
extern DECL_EXP wxArrayString GetChartDBDirArrayString();
extern "C" DECL_EXP void SendPluginMessage(wxString message_id,
wxString message_body);
extern "C" DECL_EXP void DimeWindow(wxWindow *);
extern "C" DECL_EXP void JumpToPosition(double lat, double lon, double scale);
/* API 1.9 adds some common cartographic functions to avoid unnecessary code
* duplication */
/* Study the original OpenCPN source (georef.c) for functional definitions */
extern "C" DECL_EXP void PositionBearingDistanceMercator_Plugin(
double lat, double lon, double brg, double dist, double *dlat,
double *dlon);
extern "C" DECL_EXP void DistanceBearingMercator_Plugin(
double lat0, double lon0, double lat1, double lon1, double *brg,
double *dist);
extern "C" DECL_EXP double DistGreatCircle_Plugin(double slat, double slon,
double dlat, double dlon);
extern "C" DECL_EXP void toTM_Plugin(float lat, float lon, float lat0,
float lon0, double *x, double *y);
extern "C" DECL_EXP void fromTM_Plugin(double x, double y, double lat0,
double lon0, double *lat, double *lon);
extern "C" DECL_EXP void toSM_Plugin(double lat, double lon, double lat0,
double lon0, double *x, double *y);
extern "C" DECL_EXP void fromSM_Plugin(double x, double y, double lat0,
double lon0, double *lat, double *lon);
extern "C" DECL_EXP void toSM_ECC_Plugin(double lat, double lon, double lat0,
double lon0, double *x, double *y);
extern "C" DECL_EXP void fromSM_ECC_Plugin(double x, double y, double lat0,
double lon0, double *lat,
double *lon);
extern "C" DECL_EXP bool DecodeSingleVDOMessage(const wxString &str,
wxString *acc);
extern "C" DECL_EXP int GetChartbarHeight(void);
extern "C" DECL_EXP bool GetActiveRoutepointGPX(char *buffer,
unsigned int buffer_length);
/* API 1.9 */
typedef enum OptionsParentPI {
extern DECL_EXP wxScrolledWindow *AddOptionsPage(OptionsParentPI parent,
wxString title);
extern DECL_EXP bool DeleteOptionsPage(wxScrolledWindow *page);
/* API 1.10 */
/* API 1.10 adds some common functions to avoid unnecessary code duplication */
/* Study the original OpenCPN source for functional definitions */
extern "C" DECL_EXP double toUsrDistance_Plugin(double nm_distance,
int unit = -1);
extern "C" DECL_EXP double fromUsrDistance_Plugin(double usr_distance,
int unit = -1);
extern "C" DECL_EXP double toUsrSpeed_Plugin(double kts_speed, int unit = -1);
extern "C" DECL_EXP double fromUsrSpeed_Plugin(double usr_speed, int unit = -1);
extern "C" DECL_EXP double toUsrTemp_Plugin(double cel_temp, int unit = -1);
extern "C" DECL_EXP double fromUsrTemp_Plugin(double usr_temp, int unit = -1);
extern DECL_EXP wxString getUsrDistanceUnit_Plugin(int unit = -1);
extern DECL_EXP wxString getUsrSpeedUnit_Plugin(int unit = -1);
extern DECL_EXP wxString getUsrTempUnit_Plugin(int unit = -1);
DateTimeFormatOptions() = default;
wxString format_string = "$weekday_short_date_time";
wxString time_zone = wxEmptyString;
double longitude = NAN;
int version = 1; // For future compatibility checks
DateTimeFormatOptions &SetFormatString(const wxString &fmt) {
return *this;
}
DateTimeFormatOptions &SetTimezone(const wxString &tz) {
time_zone = tz;
return *this;
}
longitude = lon;
return *this;
}
};
extern DECL_EXP wxString toUsrDateTimeFormat_Plugin(
const wxDateTime date_time,
extern DECL_EXP wxString GetNewGUID();
extern "C" DECL_EXP bool PlugIn_GSHHS_CrossesLand(double lat1, double lon1,
double lat2, double lon2);
extern DECL_EXP void PlugInPlaySound(wxString &sound_file);
// API 1.10 Route and Waypoint Support
extern DECL_EXP wxBitmap *FindSystemWaypointIcon(wxString &icon_name);
extern DECL_EXP bool AddCustomWaypointIcon(wxBitmap *pimage, wxString key,
wxString description);
extern DECL_EXP bool AddSingleWaypoint(PlugIn_Waypoint *pwaypoint,
bool b_permanent = true);
extern DECL_EXP bool DeleteSingleWaypoint(wxString &GUID);
extern DECL_EXP bool UpdateSingleWaypoint(PlugIn_Waypoint *pwaypoint);
extern DECL_EXP bool AddPlugInRoute(PlugIn_Route *proute,
bool b_permanent = true);
extern DECL_EXP bool DeletePlugInRoute(wxString &GUID);
extern DECL_EXP bool UpdatePlugInRoute(PlugIn_Route *proute);
extern DECL_EXP bool AddPlugInTrack(PlugIn_Track *ptrack,
bool b_permanent = true);
extern DECL_EXP bool DeletePlugInTrack(wxString &GUID);
extern DECL_EXP bool UpdatePlugInTrack(PlugIn_Track *ptrack);
/* API 1.11 */
/* API 1.11 adds some more common functions to avoid unnecessary code
* duplication */
wxColour DECL_EXP GetBaseGlobalColor(wxString colorName);
int DECL_EXP OCPNMessageBox_PlugIn(wxWindow *parent, const wxString &message,
const wxString &caption = _T("Message"),
int style = wxOK, int x = -1, int y = -1);
extern DECL_EXP wxString toSDMM_PlugIn(int NEflag, double a,
bool hi_precision = true);
extern "C" DECL_EXP wxString *GetpPrivateApplicationDataLocation();
extern DECL_EXP wxString GetOCPN_ExePath(void);
extern "C" DECL_EXP wxString *GetpPlugInLocation();
extern DECL_EXP wxString GetPlugInPath(opencpn_plugin *pplugin);
extern "C" DECL_EXP int AddChartToDBInPlace(wxString &full_path,
bool b_RefreshCanvas);
extern "C" DECL_EXP int RemoveChartFromDBInPlace(wxString &full_path);
extern DECL_EXP wxString GetLocaleCanonicalName();
#define PLIB_CAPS_LINE_VBO 1
#define PLIB_CAPS_LINE_BUFFER 1 << 1
#define PLIB_CAPS_SINGLEGEO_BUFFER 1 << 2
#define PLIB_CAPS_OBJSEGLIST 1 << 3
#define PLIB_CAPS_OBJCATMUTATE 1 << 4
class PI_S57Obj;
WX_DECLARE_LIST(PI_S57Obj, ListOfPI_S57Obj);
// ----------------------------------------------------------------------------
// PlugInChartBaseGL
// Derived from PlugInChartBase, add OpenGL Vector chart support
// ----------------------------------------------------------------------------
class DECL_EXP PlugInChartBaseGL : public PlugInChartBase {
public:
virtual ~PlugInChartBaseGL();
virtual int RenderRegionViewOnGL(const wxGLContext &glc,
const PlugIn_ViewPort &VPoint,
const wxRegion &Region, bool b_use_stencil);
virtual ListOfPI_S57Obj *GetObjRuleListAtLatLon(float lat, float lon,
float select_radius,
PlugIn_ViewPort *VPoint);
virtual wxString CreateObjDescriptions(ListOfPI_S57Obj *obj_list);
virtual int GetNoCOVREntries();
virtual int GetNoCOVRTablePoints(int iTable);
virtual int GetNoCOVRTablenPoints(int iTable);
virtual float *GetNoCOVRTableHead(int iTable);
};
// ----------------------------------------------------------------------------
// PlugInChartBaseGLPlus2
// Derived from PlugInChartBaseGL, add additional chart management methods
// ----------------------------------------------------------------------------
class DECL_EXP PlugInChartBaseGLPlus2 : public PlugInChartBaseGL {
public:
virtual ListOfPI_S57Obj *GetLightsObjRuleListVisibleAtLatLon(
float lat, float lon, PlugIn_ViewPort *VPoint);
};
// ----------------------------------------------------------------------------
// PlugInChartBaseExtended
// Derived from PlugInChartBase, add extended chart support methods
// ----------------------------------------------------------------------------
class DECL_EXP PlugInChartBaseExtended : public PlugInChartBase {
public:
virtual int RenderRegionViewOnGL(const wxGLContext &glc,
const PlugIn_ViewPort &VPoint,
const wxRegion &Region, bool b_use_stencil);
virtual wxBitmap &RenderRegionViewOnDCNoText(const PlugIn_ViewPort &VPoint,
const wxRegion &Region);
virtual bool RenderRegionViewOnDCTextOnly(wxMemoryDC &dc,
const PlugIn_ViewPort &VPoint,
const wxRegion &Region);
virtual int RenderRegionViewOnGLNoText(const wxGLContext &glc,
const PlugIn_ViewPort &VPoint,
const wxRegion &Region,
bool b_use_stencil);
virtual int RenderRegionViewOnGLTextOnly(const wxGLContext &glc,
const PlugIn_ViewPort &VPoint,
const wxRegion &Region,
bool b_use_stencil);
virtual ListOfPI_S57Obj *GetObjRuleListAtLatLon(float lat, float lon,
float select_radius,
PlugIn_ViewPort *VPoint);
virtual wxString CreateObjDescriptions(ListOfPI_S57Obj *obj_list);
virtual int GetNoCOVREntries();
virtual int GetNoCOVRTablePoints(int iTable);
virtual int GetNoCOVRTablenPoints(int iTable);
virtual float *GetNoCOVRTableHead(int iTable);
virtual void ClearPLIBTextList();
};
// ----------------------------------------------------------------------------
// PlugInChartBaseExtendedPlus2
// Derived from PlugInChartBaseExtended, add additional extended chart support
// methods
// ----------------------------------------------------------------------------
public:
virtual ListOfPI_S57Obj *GetLightsObjRuleListVisibleAtLatLon(
float lat, float lon, PlugIn_ViewPort *VPoint);
};
class wxArrayOfS57attVal;
typedef enum _PI_LUPname {
PI_SIMPLIFIED = 'L',
'R',
PI_LINES = 'S',
typedef enum _PI_DisCat {
PI_STANDARD = 'S',
PI_OTHER = 'O',
typedef enum _PI_DisPrio {
typedef enum PI_InitReturn {
PI_INIT_OK = 0,
public:
size_t vbo_offset;
size_t n_points;
int priority;
float lat_max;
float lat_min;
float lon_max;
float lon_min;
int type;
void *private0;
};
class DECL_EXP PI_S57Obj {
public:
// Public Methods
public:
// Instance Data
char FeatureName[8];
int Primitive_type;
char *att_array;
wxArrayOfS57attVal *attVal;
int n_attr;
int iOBJL;
int Index;
double x;
double y;
double z;
int npt;
void *geoPt;
double *geoPtz;
double *geoPtMulti;
void *pPolyTessGeo;
double m_lat;
double m_lon;
double chart_ref_lat;
double chart_ref_lon;
double lat_min;
double lat_max;
double lon_min;
double lon_max;
int Scamin;
bool bIsClone;
int nRef;
bool bIsAton;
bool bIsAssociable;
int m_n_lsindex;
int *m_lsindex_array;
int m_n_edge_max_points;
void *m_chart_context;
PI_DisCat m_DisplayCat;
void *S52_Context;
PI_S57Obj *child;
PI_S57Obj *next;
// Coordinate transform coefficients
double x_rate;
double y_rate;
double x_origin;
double y_origin;
// OpenGL rendering parameters
int auxParm0;
int auxParm1;
int auxParm2;
int auxParm3;
bool m_bcategory_mutable;
int m_DPRI;
};
wxString DECL_EXP PI_GetPLIBColorScheme();
int DECL_EXP PI_GetPLIBDepthUnitInt();
int DECL_EXP PI_GetPLIBSymbolStyle();
int DECL_EXP PI_GetPLIBBoundaryStyle();
int DECL_EXP PI_GetPLIBStateHash();
double DECL_EXP PI_GetPLIBMarinerSafetyContour();
bool DECL_EXP PI_GetObjectRenderBox(PI_S57Obj *pObj, double *lat_min,
double *lat_max, double *lon_min,
double *lon_max);
void DECL_EXP PI_UpdateContext(PI_S57Obj *pObj);
bool DECL_EXP PI_PLIBObjectRenderCheck(PI_S57Obj *pObj, PlugIn_ViewPort *vp);
PI_LUPname DECL_EXP PI_GetObjectLUPName(PI_S57Obj *pObj);
PI_DisPrio DECL_EXP PI_GetObjectDisplayPriority(PI_S57Obj *pObj);
PI_DisCat DECL_EXP PI_GetObjectDisplayCategory(PI_S57Obj *pObj);
void DECL_EXP PI_PLIBSetLineFeaturePriority(PI_S57Obj *pObj, int prio);
void DECL_EXP PI_PLIBPrepareForNewRender(void);
void DECL_EXP PI_PLIBFreeContext(void *pContext);
void DECL_EXP PI_PLIBSetRenderCaps(unsigned int flags);
bool DECL_EXP PI_PLIBSetContext(PI_S57Obj *pObj);
int DECL_EXP PI_PLIBRenderObjectToDC(wxDC *pdc, PI_S57Obj *pObj,
int DECL_EXP PI_PLIBRenderAreaToDC(wxDC *pdc, PI_S57Obj *pObj,
PlugIn_ViewPort *vp, wxRect rect,
unsigned char *pixbuf);
int DECL_EXP PI_PLIBRenderAreaToGL(const wxGLContext &glcc, PI_S57Obj *pObj,
PlugIn_ViewPort *vp, wxRect &render_rect);
int DECL_EXP PI_PLIBRenderObjectToGL(const wxGLContext &glcc, PI_S57Obj *pObj,
PlugIn_ViewPort *vp, wxRect &render_rect);
/* API 1.11 OpenGL Display List and vertex buffer object routines
Effectively these two routines cancel each other so all
of the translation, scaling and rotation can be done by opengl.
Display lists need only be built infrequently, but used in each frame
greatly accelerates the speed of rendering. This avoids costly calculations,
and also allows the vertexes to be stored in graphics memory.
static int dl = 0;
glPushMatrix();
PlugInMultMatrixViewport(current_viewport);
if(dl)
glCallList(dl);
else {
dl = glGenLists(1);
PlugInViewPort norm_viewport = current_viewport;
NormalizeViewPort(norm_viewport);
glNewList(dl, GL_COMPILE_AND_EXECUTE);
... // use norm_viewport with GetCanvasLLPix here
glEndList();
}
glPopMatrix();
... // use current_viewport with GetCanvasLLPix again
*/
extern DECL_EXP bool PlugInHasNormalizedViewPort(PlugIn_ViewPort *vp);
extern DECL_EXP void PlugInMultMatrixViewport(PlugIn_ViewPort *vp,
float lat = 0, float lon = 0);
extern DECL_EXP void PlugInNormalizeViewport(PlugIn_ViewPort *vp, float lat = 0,
float lon = 0);
class wxPoint2DDouble;
extern "C" DECL_EXP void GetDoubleCanvasPixLL(PlugIn_ViewPort *vp,
wxPoint2DDouble *pp, double lat,
double lon);
/* API 1.13 */
/* API 1.13 adds some more common functions to avoid unnecessary code
* duplication */
extern DECL_EXP double fromDMM_Plugin(wxString sdms);
extern DECL_EXP void SetCanvasRotation(double rotation);
extern DECL_EXP void SetCanvasProjection(int projection);
extern DECL_EXP bool GetSingleWaypoint(wxString GUID,
PlugIn_Waypoint *pwaypoint);
extern DECL_EXP bool CheckEdgePan_PlugIn(int x, int y, bool dragging,
int margin, int delta);
extern DECL_EXP wxBitmap GetIcon_PlugIn(const wxString &name);
extern DECL_EXP void SetCursor_PlugIn(wxCursor *pPlugin_Cursor = NULL);
extern DECL_EXP wxFont *GetOCPNScaledFont_PlugIn(wxString TextElement,
int default_size = 0);
extern DECL_EXP wxFont GetOCPNGUIScaledFont_PlugIn(wxString item);
extern DECL_EXP double GetOCPNGUIToolScaleFactor_PlugIn(int GUIScaledFactor);
extern DECL_EXP double GetOCPNGUIToolScaleFactor_PlugIn();
extern DECL_EXP float GetOCPNChartScaleFactor_Plugin();
extern DECL_EXP wxColour GetFontColour_PlugIn(wxString TextElement);
extern DECL_EXP double GetCanvasTilt();
extern DECL_EXP void SetCanvasTilt(double tilt);
extern DECL_EXP bool PlugInPlaySoundEx(wxString &sound_file,
int deviceIndex = -1);
extern DECL_EXP void AddChartDirectory(wxString &path);
extern DECL_EXP void ForceChartDBUpdate();
extern DECL_EXP void ForceChartDBRebuild();
extern DECL_EXP wxString GetWritableDocumentsDir(void);
extern DECL_EXP wxDialog *GetActiveOptionsDialog();
extern DECL_EXP wxArrayString GetWaypointGUIDArray(void);
extern DECL_EXP wxArrayString GetIconNameArray(void);
extern DECL_EXP bool AddPersistentFontKey(wxString TextElement);
extern DECL_EXP wxString GetActiveStyleName();
extern DECL_EXP wxBitmap GetBitmapFromSVGFile(wxString filename,
unsigned int width,
unsigned int height);
extern DECL_EXP bool IsTouchInterface_PlugIn(void);
/* Platform optimized File/Dir selector dialogs */
extern DECL_EXP int PlatformDirSelectorDialog(wxWindow *parent,
wxString *file_spec,
wxString Title, wxString initDir);
extern DECL_EXP int PlatformFileSelectorDialog(wxWindow *parent,
wxString *file_spec,
wxString Title, wxString initDir,
wxString suggestedName,
wxString wildcard);
/* OpenCPN HTTP File Download PlugIn Interface */
/* Various method Return Codes, etc */
typedef enum _OCPN_DLStatus {
typedef enum _OCPN_DLCondition {
// Style definitions for Synchronous file download modal dialogs, if
// desired. Abstracted from wxCURL package
0x0002,
OCPN_DLDS_SPEED = 0x0008,
OCPN_DLDS_SIZE = 0x0010,
0x0020,
// styles related to the use of wxCurlConnectionSettingsDialog:
0x0040,
0x0100,
OCPN_DLDS_CONN_SETTINGS_ALL = OCPN_DLDS_CONN_SETTINGS_AUTH |
OCPN_DLDS_CONN_SETTINGS_ALL,
0x1000,
// by default all available features are enabled:
OCPN_DLDS_DEFAULT_STYLE = OCPN_DLDS_CAN_START | OCPN_DLDS_CAN_PAUSE |
OCPN_DLDS_CAN_ABORT | OCPN_DLDS_SHOW_ALL |
};
#define ONLINE_CHECK_RETRY \
30 // Recheck the Internet connection availability every ONLINE_CHECK_RETRY s
extern DECL_EXP _OCPN_DLStatus OCPN_downloadFile(
const wxString &url, const wxString &outputFile, const wxString &title,
const wxString &message, const wxBitmap &bitmap, wxWindow *parent,
long style, int timeout_secs);
extern DECL_EXP _OCPN_DLStatus
OCPN_downloadFileBackground(const wxString &url, const wxString &outputFile,
wxEvtHandler *handler, long *handle);
extern DECL_EXP void OCPN_cancelDownloadFileBackground(long handle);
extern DECL_EXP _OCPN_DLStatus OCPN_postDataHttp(const wxString &url,
const wxString &parameters,
wxString &result,
int timeout_secs);
extern DECL_EXP bool OCPN_isOnline();
/* Supporting Event for Background downloading */
/* OCPN_downloadEvent Definition */
/* PlugIn should be ready/able to handle this event after initiating a
* background file transfer
*
* The event as received should be parsed primarily by the getDLEventCondition()
* method. This will allow identification of download start, progress, and end
* states.
*
* Other accessor methods contain status, byte counts, etc.
*
* A PlugIn may safely destroy its EvtHandler after receipt of an
* OCPN_downloadEvent with getDLEventCondition == OCPN_DL_EVENT_TYPE_END
*/
class DECL_EXP OCPN_downloadEvent : public wxEvent {
public:
OCPN_downloadEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
// accessors
_OCPN_DLStatus getDLEventStatus() { return m_stat; }
OCPN_DLCondition getDLEventCondition() { return m_condition; }
void setDLEventStatus(_OCPN_DLStatus stat) { m_stat = stat; }
void setDLEventCondition(OCPN_DLCondition cond) { m_condition = cond; }
void setTotal(long bytes) { m_totalBytes = bytes; }
void setTransferred(long bytes) { m_sofarBytes = bytes; }
long getTotal() { return m_totalBytes; }
long getTransferred() { return m_sofarBytes; }
void setComplete(bool b_complete) { m_b_complete = b_complete; }
bool getComplete() { return m_b_complete; }
// required for sending with wxPostEvent()
wxEvent *Clone() const;
private:
OCPN_DLStatus m_stat;
OCPN_DLCondition m_condition;
long m_totalBytes;
long m_sofarBytes;
bool m_b_complete;
};
// extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DOWNLOAD_EVENT;
#ifdef MAKING_PLUGIN
extern DECL_IMP wxEventType wxEVT_DOWNLOAD_EVENT;
#else
extern DECL_EXP wxEventType wxEVT_DOWNLOAD_EVENT;
#endif
/* API 1.14 */
/* API 1.14 adds some more common functions to avoid unnecessary code
* duplication */
bool LaunchDefaultBrowser_Plugin(wxString url);
// API 1.14 Extra canvas Support
extern DECL_EXP void PlugInAISDrawGL(wxGLCanvas *glcanvas,
const PlugIn_ViewPort &vp);
extern DECL_EXP bool PlugInSetFontColor(const wxString TextElement,
const wxColour color);
// API 1.15
extern DECL_EXP double PlugInGetDisplaySizeMM();
extern DECL_EXP wxFont *FindOrCreateFont_PlugIn(
int point_size, wxFontFamily family, wxFontStyle style, wxFontWeight weight,
bool underline = false, const wxString &facename = wxEmptyString,
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
extern DECL_EXP int PlugInGetMinAvailableGshhgQuality();
extern DECL_EXP int PlugInGetMaxAvailableGshhgQuality();
extern DECL_EXP void PlugInHandleAutopilotRoute(bool enable);
// API 1.16
//
extern DECL_EXP wxString GetPluginDataDir(const char *plugin_name);
extern DECL_EXP bool ShuttingDown(void);
// Support for MUI MultiCanvas model
extern DECL_EXP wxWindow *PluginGetFocusCanvas();
extern DECL_EXP wxWindow *PluginGetOverlayRenderCanvas();
extern "C" DECL_EXP void CanvasJumpToPosition(wxWindow *canvas, double lat,
double lon, double scale);
extern "C" DECL_EXP int AddCanvasMenuItem(wxMenuItem *pitem,
opencpn_plugin *pplugin,
const char *name = "");
extern "C" DECL_EXP void RemoveCanvasMenuItem(int item, const char *name = "");
extern "C" DECL_EXP void SetCanvasMenuItemViz(int item, bool viz,
const char *name = "");
extern "C" DECL_EXP void SetCanvasMenuItemGrey(int item, bool grey,
const char *name = "");
// Extract waypoints, routes and tracks
extern DECL_EXP wxString GetSelectedWaypointGUID_Plugin();
extern DECL_EXP wxString GetSelectedRouteGUID_Plugin();
extern DECL_EXP wxString GetSelectedTrackGUID_Plugin();
extern DECL_EXP std::unique_ptr<PlugIn_Waypoint> GetWaypoint_Plugin(
const wxString &);
extern DECL_EXP std::unique_ptr<PlugIn_Route> GetRoute_Plugin(const wxString &);
extern DECL_EXP std::unique_ptr<PlugIn_Track> GetTrack_Plugin(const wxString &);
extern DECL_EXP wxWindow *GetCanvasUnderMouse();
extern DECL_EXP int GetCanvasIndexUnderMouse();
// extern DECL_EXP std::vector<wxWindow *> GetCanvasArray();
extern DECL_EXP wxWindow *GetCanvasByIndex(int canvasIndex);
extern DECL_EXP int GetCanvasCount();
extern DECL_EXP bool CheckMUIEdgePan_PlugIn(int x, int y, bool dragging,
int margin, int delta,
int canvasIndex);
extern DECL_EXP void SetMUICursor_PlugIn(wxCursor *pCursor, int canvasIndex);
// API 1.17
//
extern DECL_EXP wxRect GetMasterToolbarRect();
enum SDDMFORMAT {
};
extern DECL_EXP int GetLatLonFormat(void);
// API 1.17
extern "C" DECL_EXP void ZeroXTE();
class DECL_EXP PlugIn_Waypoint_Ex {
public:
PlugIn_Waypoint_Ex(double lat, double lon, const wxString &icon_ident,
const wxString &wp_name, const wxString &GUID = "",
const double ScaMin = 1e9, const bool bNameVisible = false,
const int nRanges = 0, const double RangeDistance = 1.0,
const wxColor RangeColor = wxColor(255, 0, 0));
void InitDefaults();
bool GetFSStatus();
int GetRouteMembershipCount();
double m_lat;
double m_lon;
wxString m_GUID;
wxString m_MarkName;
wxString m_MarkDescription;
wxDateTime m_CreateTime;
bool IsVisible;
bool IsActive;
double scamin;
bool b_useScamin;
bool IsNameVisible;
int nrange_rings;
double RangeRingSpace;
wxColour RangeRingColor;
wxString IconName;
wxString IconDescription;
Plugin_HyperlinkList *m_HyperlinkList;
};
WX_DECLARE_LIST(PlugIn_Waypoint_Ex, Plugin_WaypointExList);
class DECL_EXP PlugIn_Route_Ex {
public:
wxString m_NameString;
wxString m_StartString;
wxString m_EndString;
wxString m_GUID;
bool m_isActive;
bool m_isVisible;
wxString m_Description;
Plugin_WaypointExList *pWaypointList;
};
extern DECL_EXP wxArrayString GetRouteGUIDArray(void);
extern DECL_EXP wxArrayString GetTrackGUIDArray(void);
extern DECL_EXP bool GetSingleWaypointEx(wxString GUID,
PlugIn_Waypoint_Ex *pwaypoint);
extern DECL_EXP bool AddSingleWaypointEx(PlugIn_Waypoint_Ex *pwaypoint,
bool b_permanent = true);
extern DECL_EXP bool UpdateSingleWaypointEx(PlugIn_Waypoint_Ex *pwaypoint);
extern DECL_EXP bool AddPlugInRouteEx(PlugIn_Route_Ex *proute,
bool b_permanent = true);
extern DECL_EXP bool UpdatePlugInRouteEx(PlugIn_Route_Ex *proute);
extern DECL_EXP std::unique_ptr<PlugIn_Waypoint_Ex> GetWaypointEx_Plugin(
const wxString &);
extern DECL_EXP std::unique_ptr<PlugIn_Route_Ex> GetRouteEx_Plugin(
const wxString &);
extern DECL_EXP wxString GetActiveWaypointGUID(void);
extern DECL_EXP wxString GetActiveRouteGUID(void);
// API 1.18
extern DECL_EXP double OCPN_GetDisplayContentScaleFactor();
extern DECL_EXP double OCPN_GetWinDIPScaleFactor();
extern DECL_EXP std::vector<std::string> GetPriorityMaps();
extern DECL_EXP std::vector<std::string> GetActivePriorityIdentifiers();
extern DECL_EXP int GetGlobalWatchdogTimoutSeconds();
typedef enum _OBJECT_LAYER_REQ {
// FIXME (dave) Implement these
extern DECL_EXP wxArrayString GetRouteGUIDArray(OBJECT_LAYER_REQ req);
extern DECL_EXP wxArrayString GetTrackGUIDArray(OBJECT_LAYER_REQ req);
extern DECL_EXP wxArrayString GetWaypointGUIDArray(OBJECT_LAYER_REQ req);
/* Listening to messages. */
// This is a verbatim copy from observable_evt.h, don't define twice.
#ifndef OBSERVABLE_EVT_H
#define OBSERVABLE_EVT_H
wxDECLARE_EVENT(obsNOTIFY, ObservedEvt);
class ObservedEvt : public wxCommandEvent {
public:
ObservedEvt(wxEventType commandType = obsNOTIFY, int id = 0)
: wxCommandEvent(commandType, id) {}
ObservedEvt(const ObservedEvt &event) : wxCommandEvent(event) {
this->m_shared_ptr = event.m_shared_ptr;
}
wxEvent *Clone() const { return new ObservedEvt(*this); }
std::shared_ptr<const void> GetSharedPtr() const { return m_shared_ptr; }
void SetSharedPtr(std::shared_ptr<const void> p) { m_shared_ptr = p; }
private:
std::shared_ptr<const void> m_shared_ptr;
};
#endif // OBSERVABLE_EVT_H
struct NMEA2000Id {
const uint64_t id;
NMEA2000Id(int value) : id(static_cast<uint64_t>(value)) {};
};
extern DECL_EXP std::shared_ptr<ObservableListener> GetListener(
NMEA2000Id id, wxEventType ev, wxEvtHandler *handler);
struct NMEA0183Id {
const std::string id;
NMEA0183Id(const std::string &s) : id(s) {};
};
extern DECL_EXP std::shared_ptr<ObservableListener> GetListener(
NMEA0183Id id, wxEventType ev, wxEvtHandler *handler);
struct SignalkId {
const std::string id;
SignalkId(const std::string &s) : id(s) {};
};
extern DECL_EXP std::shared_ptr<ObservableListener> GetListener(
SignalkId id, wxEventType ev, wxEvtHandler *handler);
extern DECL_EXP std::vector<uint8_t> GetN2000Payload(NMEA2000Id id,
extern DECL_EXP std::shared_ptr<void> GetSignalkPayload(ObservedEvt ev);
extern DECL_EXP std::string GetN2000Source(NMEA2000Id id, ObservedEvt ev);
extern DECL_EXP std::string GetN0183Payload(NMEA0183Id id, ObservedEvt ev);
struct NavDataId {
const int type;
NavDataId() : type(0) {}
};
extern DECL_EXP std::shared_ptr<ObservableListener> GetListener(
NavDataId id, wxEventType ev, wxEvtHandler *handler);
struct PluginNavdata {
double lat;
double lon;
double sog;
double cog;
double var;
double hdt;
time_t time;
};
/*
* Plugins may access comm ports for direct output.
* The general program flow for a plugin may look something like this
* pseudo-code:
* 1. Plugin will query OCPN core for a list of active comm drivers.
* 2. Plugin will inspect the list, and query OCPN core for driver
* attributes.
* 3. Plugin will select a comm driver with appropriate attributes for output.
* 4. Plugin will register a list of PGNs expected to be transmitted
* (N2K specific)
* 5. Plugin may then send a payload buffer to a specific comm driver for
* output as soon as possible.
*
* The mechanism for specifying a particular comm driver uses the notion of
* "handles". Each active comm driver has an associated opaque handle, managed
* by OCPN core. All references by a plugin to a driver are by means of its
* handle. Handles should be considered to be "opaque", meaning that the exact
* contents of the handle are of no specific value to the plugin, and only
* have meaning to the OCPN core management of drivers.
*/
typedef std::string DriverHandle;
typedef enum CommDriverResult {
extern DECL_EXP std::vector<DriverHandle> GetActiveDrivers();
extern DECL_EXP const std::unordered_map<std::string, std::string>
/* Writing to a specific driver */
DriverHandle handle, const std::shared_ptr<std::vector<uint8_t>> &payload);
DriverHandle handle, int PGN, int destinationCANAddress, int priority,
const std::shared_ptr<std::vector<uint8_t>> &payload);
std::vector<int> &pgn_list);
// API 1.19
//
typedef enum _PI_NavMode {
struct PluginMsgId {
const std::string id;
PluginMsgId(const std::string &s) : id(s) {};
};
extern DECL_EXP std::shared_ptr<ObservableListener> GetListener(
PluginMsgId id, wxEventType ev, wxEvtHandler *handler);
extern DECL_EXP std::string GetPluginMsgPayload(PluginMsgId id, ObservedEvt ev);
extern DECL_EXP void ExitOCPN();
extern "C" DECL_EXP void RequestWindowRefresh(wxWindow *win,
bool eraseBackground);
extern DECL_EXP bool GetFullScreen();
extern DECL_EXP void SetFullScreen(bool full_screen_on);
extern DECL_EXP void EnableTouchMode(bool enable);
extern DECL_EXP bool GetTouchMode();
extern DECL_EXP void SetGlobalColor(std::string table, std::string name,
wxColor color);
extern DECL_EXP wxColor GetGlobalColorD(std::string map_name, std::string name);
extern DECL_EXP void EnableStatusBar(bool enable);
extern DECL_EXP void EnableMenu(bool enable);
extern DECL_EXP bool GetEnableStatusBar();
extern DECL_EXP bool GetEnableMenu();
extern DECL_EXP void SetNavigationMode(PI_NavMode mode, int CanvasIndex);
extern DECL_EXP PI_NavMode GetNavigationMode(int CanvasIndex);
extern DECL_EXP void EnableLookaheadMode(bool enable, int CanvasIndex);
extern DECL_EXP bool GetEnableLookaheadMode(int CanvasIndex);
extern DECL_EXP void EnableMUIBar(bool enable, int CanvasIndex);
extern DECL_EXP void EnableCompassGPSIcon(bool enable, int CanvasIndex);
extern DECL_EXP void EnableChartBar(bool enable, int CanvasIndex);
extern DECL_EXP bool GetEnableMUIBar(int CanvasIndex);
extern DECL_EXP bool GetEnableCompassGPSIcon(int CanvasIndex);
extern DECL_EXP bool GetEnableChartBar(int CanvasIndex);
extern DECL_EXP void EnableCanvasFocusBar(bool enable, int CanvasIndex);
extern DECL_EXP bool GetEnableCanvasFocusBar(int CanvasIndex);
/*
* Allow plugin control of "Chart Panel Options" dialog
*/
extern DECL_EXP void EnableLatLonGrid(bool enable, int CanvasIndex);
extern DECL_EXP void EnableChartOutlines(bool enable, int CanvasIndex);
extern DECL_EXP void EnableDepthUnitDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableAisTargetDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableTideStationsDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableCurrentStationsDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableENCTextDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableENCDepthSoundingsDisplay(bool enable,
int CanvasIndex);
extern DECL_EXP void EnableBuoyLightLabelsDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableLightsDisplay(bool enable, int CanvasIndex);
extern DECL_EXP void EnableLightDescriptionsDisplay(bool enable,
int CanvasIndex);
extern DECL_EXP void SetENCDisplayCategory(PI_DisCat cat, int CanvasIndex);
extern DECL_EXP bool GetEnableLatLonGrid(int CanvasIndex);
extern DECL_EXP bool GetEnableChartOutlines(int CanvasIndex);
extern DECL_EXP bool GetEnableDepthUnitDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableAisTargetDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableTideStationsDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableCurrentStationsDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableENCTextDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableENCDepthSoundingsDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableBuoyLightLabelsDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableLightsDisplay(int CanvasIndex);
extern DECL_EXP bool GetEnableLightDescriptionsDisplay(int CanvasIndex);
extern DECL_EXP PI_DisCat GetENCDisplayCategory(int CanvasIndex);
extern DECL_EXP void PluginSetFollowMode(int CanvasIndex, bool enable_follow);
extern DECL_EXP bool PluginGetFollowMode(int CanvasIndex);
extern DECL_EXP void SetTrackingMode(bool enable);
extern DECL_EXP bool GetTrackingMode();
extern DECL_EXP void SetAppColorScheme(PI_ColorScheme cs);
extern DECL_EXP void EnableSplitScreenLayout(bool enable = true);
// ChartCanvas control utilities
extern DECL_EXP void PluginZoomCanvas(int CanvasIndex, double factor);
extern DECL_EXP bool GetEnableMainToolbar();
extern DECL_EXP void SetEnableMainToolbar(bool enable);
extern DECL_EXP void ShowGlobalSettingsDialog();
extern DECL_EXP void PluginCenterOwnship(int CanvasIndex);
extern DECL_EXP bool GetEnableTenHertzUpdate();
extern DECL_EXP void EnableTenHertzUpdate(bool enable);
extern DECL_EXP void ConfigFlushAndReload();
#endif //_PLUGIN_H_
Keeps listening over it's lifespan, removes itself on destruction.
Definition observable.h:131
Custom event class for OpenCPN's notification system.
void SetSharedPtr(std::shared_ptr< const void > p)
Sets the event's payload data.
wxEvent * Clone() const
Creates a cloned copy of this event.
std::shared_ptr< const void > GetSharedPtr() const
Gets the event's payload data.
Class representing an S-57 chart object.
Represents a line segment element for efficient vector chart rendering.
int priority
Drawing priority (higher draws on top)
int type
Line type identifier.
void * private0
Private data pointer for implementation use.
float lon_min
Minimum longitude of segment's bounding box.
float lat_min
Minimum latitude of segment's bounding box.
size_t vbo_offset
Offset into vertex buffer object for this segment.
float lat_max
Maximum latitude of segment's bounding box.
float lon_max
Maximum longitude of segment's bounding box.
PI_line_segment_element * next
Pointer to next segment in linked list.
size_t n_points
Number of points in this line segment.
Extended chart base class with separated text rendering.
Extended OpenGL-optimized chart base class with additional querying capabilities.
OpenGL-optimized chart base class for plugin chart types.
Base class for implementing custom chart types in OpenCPN plugins.
AIS target information accessible to plugins.
char CallSign[8]
Call sign, includes NULL terminator.
double HDG
Heading in degrees true.
int ROTAIS
Rate of turn as indicated in AIS message.
unsigned char ShipType
Ship type as per ITU-R M.1371.
double Lat
Latitude in decimal degrees.
int MMSI
Maritime Mobile Service Identity number.
bool bCPA_Valid
True if CPA calculation is valid.
double Brg
Bearing to target in degrees true.
double Lon
Longitude in decimal degrees.
double CPA
Closest Point of Approach in nautical miles.
int Class
AIS class (Class A: 0, Class B: 1)
double SOG
Speed over ground in knots.
double Range_NM
Range to target in nautical miles.
int NavStatus
Navigational status (0-15 as per ITU-R M.1371)
int IMO
IMO ship identification number.
char ShipName[21]
Ship name, includes NULL terminator.
double TCPA
Time to Closest Point of Approach in minutes.
double COG
Course over ground in degrees.
plugin_ais_alarm_type alarm_state
Current alarm state for this target.
Extended position fix information.
int nSats
Number of satellites used in the fix.
double Var
Magnetic variation in degrees, typically from RMC message.
double Cog
Course over ground in degrees.
double Lat
Latitude in decimal degrees.
double Hdm
Heading magnetic in degrees.
time_t FixTime
UTC time of fix.
double Lon
Longitude in decimal degrees.
double Sog
Speed over ground in knots.
double Hdt
Heading true in degrees.
Basic position fix information.
double Cog
Course over ground in degrees.
double Sog
Speed over ground in knots.
time_t FixTime
UTC time of fix as time_t value.
double Lat
Latitude in decimal degrees.
int nSats
Number of satellites used in the fix.
double Var
Magnetic variation in degrees, typically from RMC message.
double Lon
Longitude in decimal degrees.
Extended route class for managing complex route features.
Plugin route class for managing ordered waypoint collections.
Plugin track class for managing recorded track data.
Contains view parameters and status information for a chart display viewport.
double view_scale_ppm
Display scale in pixels per meter.
wxRect rv_rect
Rectangle defining the rendered view area.
int pix_width
Viewport width in pixels.
double lon_max
Maximum longitude of the viewport.
double clon
Center longitude of the viewport in decimal degrees.
double lat_max
Maximum latitude of the viewport.
int pix_height
Viewport height in pixels.
double clat
Center latitude of the viewport in decimal degrees.
double skew
Display skew angle in radians.
double rotation
Display rotation angle in radians.
bool bValid
True if this viewport is valid and can be used for rendering.
double lon_min
Minimum longitude of the viewport.
double lat_min
Minimum latitude of the viewport.
int m_projection_type
Chart projection type (PROJECTION_MERCATOR, etc.)
bool b_quilt
True if the viewport is in quilt mode (showing multiple charts)
float chart_scale
Conventional chart displayed scale (e.g., 1:50000)
Extended waypoint class with additional navigation features.
Plugin waypoint class providing core waypoint/mark functionality.
Information about the currently active route leg.
double Dtw
Distance to waypoint in nautical miles.
wxString wp_name
Name of destination waypoint for the active leg.
double Xte
Cross track error in nautical miles, negative values indicate left side of track.
double Btw
Bearing to waypoint in degrees true.
bool arrival
True when vessel is within the arrival circle of the destination waypoint.
virtual bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics with canvas selection.
virtual bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics in OpenGL mode with canvas selection.
Base class for OpenCPN plugins.
virtual bool RenderOverlay(wxMemoryDC *pmdc, PlugIn_ViewPort *vp)
Render plugin overlay graphics using standard device context.
_OBJECT_LAYER_REQ
Filter options for object queries.
@ OBJECTS_ALL
Return all objects including those in layers.
@ OBJECTS_ONLY_LAYERS
Return only objects that are in layers.
@ OBJECTS_NO_LAYERS
Exclude objects that are in layers.
plugin_ais_alarm_type
Enumeration of AIS alarm states.
@ PI_AIS_ALARM_ACKNOWLEDGED
Alarm has been acknowledged by the user.
@ PI_AIS_NO_ALARM
No alarm condition exists.
@ PI_AIS_ALARM_SET
Alarm has been set but not acknowledged.
enum ChartDepthUnitTypePI _ChartDepthUnitTypePI
Enumeration of depth unit types used in charts.
enum _PI_DisCat PI_DisCat
Display categories for S52 chart features.
CommDriverResult
Error return values
@ RESULT_COMM_INVALID_PARMS
Invalid parameters provided to operation.
@ RESULT_COMM_REGISTER_GATEWAY_ERROR
Failed to register with gateway device.
@ RESULT_COMM_TX_ERROR
Error occurred during transmission.
@ RESULT_COMM_REGISTER_PGN_ERROR
Failed to register PGN parameters.
@ RESULT_COMM_NO_ERROR
Operation completed successfully.
@ RESULT_COMM_INVALID_HANDLE
Invalid or unknown driver handle specified.
enum OptionsParentPI _OptionsParentPI
Enum defining parent pages in OpenCPN options dialog where plugins can add panels.
enum _PI_DisPrio PI_DisPrio
Display priority levels for S52 chart objects.
_OCPN_DLCondition
Event types for HTTP file download operations.
@ OCPN_DL_EVENT_TYPE_UNKNOWN
Unknown event type.
@ OCPN_DL_EVENT_TYPE_PROGRESS
Download progress update.
@ OCPN_DL_EVENT_TYPE_END
Download has completed.
@ OCPN_DL_EVENT_TYPE_START
Download is starting.
ChartTypeEnumPI
Enumeration of chart types.
@ PI_CHART_TYPE_PLUGIN
Chart type provided by a plugin.
@ PI_CHART_TYPE_CM93COMP
CM93 Composite vector chart format.
@ PI_CHART_TYPE_CM93
CM93 vector chart format.
@ PI_CHART_TYPE_S57
S-57 vector chart format.
@ PI_CHART_TYPE_UNKNOWN
Chart type is unknown or undefined.
@ PI_CHART_TYPE_DONTCARE
Chart type is not important for the operation.
@ PI_CHART_TYPE_KAP
BSB/KAP raster chart format.
@ PI_CHART_TYPE_DUMMY
Dummy chart used when no actual chart is available.
@ PI_CHART_TYPE_GEO
GEO raster chart format.
PI_ColorScheme
Enumeration of color schemes.
@ PI_GLOBAL_COLOR_SCHEME_DAY
Day color scheme, optimized for bright ambient light.
@ PI_GLOBAL_COLOR_SCHEME_NIGHT
Night color scheme, optimized for dark conditions with minimal impact on night vision.
@ PI_N_COLOR_SCHEMES
Number of color schemes, used for bounds checking.
@ PI_GLOBAL_COLOR_SCHEME_RGB
RGB color scheme, unmodified colors.
@ PI_GLOBAL_COLOR_SCHEME_DUSK
Dusk color scheme, optimized for low ambient light.
enum _OCPN_DLCondition OCPN_DLCondition
Event types for HTTP file download operations.
enum PI_InitReturn _PI_InitReturn
Return values for plugin initialization.
_OCPN_DLStatus
Status codes for HTTP file download operations.
@ OCPN_DL_NO_ERROR
Download completed successfully.
@ OCPN_DL_USER_TIMEOUT
Download timed out waiting for user action.
@ OCPN_DL_STARTED
Download has begun but not yet complete.
@ OCPN_DL_FAILED
Download failed (general error)
@ OCPN_DL_UNKNOWN
Unknown or uninitialized status.
@ OCPN_DL_ABORTED
Download was cancelled by user.
SDDMFORMAT
Coordinate format options for lat/lon display.
@ DEGREES_DECIMAL_MINUTES
Format like "50° 12.345' N".
@ DEGREES_MINUTES_SECONDS
Format like "50° 12' 34.5" N".
@ DECIMAL_DEGREES
Format like "50.12345° N".
@ END_SDDMFORMATS
Number of available formats.
OCPN_DLDialogStyle
@ OCPN_DLDS_CONN_SETTINGS_AUTH
The dialog allows the user to change the authentication settings.
@ OCPN_DLDS_CAN_START
The transfer won't start automatically.
@ OCPN_DLDS_URL
The dialog shows the URL involved in the transfer.
@ OCPN_DLDS_AUTO_CLOSE
The dialog auto closes when transfer is complete.
@ OCPN_DLDS_CAN_ABORT
The transfer can be aborted by the user.
@ OCPN_DLDS_ESTIMATED_TIME
The dialog shows the estimated total time.
@ OCPN_DLDS_SIZE
The dialog shows the size of the resource to download/upload.
@ OCPN_DLDS_CONN_SETTINGS_PROXY
The dialog allows the user to change the proxy settings.
@ OCPN_DLDS_REMAINING_TIME
The dialog shows the remaining time.
@ OCPN_DLDS_SPEED
The dialog shows the transfer speed.
@ OCPN_DLDS_ELAPSED_TIME
The dialog shows the elapsed time.
@ OCPN_DLDS_CAN_PAUSE
The transfer can be paused.
@ OCPN_DLDS_CONN_SETTINGS_PORT
The dialog allows the user to change the port for the transfer.
ChartFamilyEnumPI
Enumeration of chart families (broad categories).
@ PI_CHART_FAMILY_UNKNOWN
Chart family is unknown.
@ PI_CHART_FAMILY_VECTOR
Vector chart formats (S-57, CM93, etc.)
@ PI_CHART_FAMILY_RASTER
Raster chart formats (KAP, GEO, etc.)
@ PI_CHART_FAMILY_DONTCARE
Chart family is not important for the operation.
enum _PI_LUPname PI_LUPname
Name identifiers for S57 lookup table sets.
DECL_EXP wxBitmap * FindSystemWaypointIcon(wxString &icon_name)
Finds built-in system waypoint icon.
DECL_EXP int PlugInGetMinAvailableGshhgQuality()
Gets minimum available GSHHS coastline data quality.
DECL_EXP int PlugInGetMaxAvailableGshhgQuality()
Gets maximum available GSHHS coastline data quality.
ChartDepthUnitTypePI
Enumeration of depth unit types used in charts.
@ PI_DEPTH_UNIT_METERS
Depths shown in meters.
@ PI_DEPTH_UNIT_UNKNOWN
Depth unit is unknown or not specified.
@ PI_DEPTH_UNIT_FATHOMS
Depths shown in fathoms.
@ PI_DEPTH_UNIT_FEET
Depths shown in feet.
std::string DriverHandle
Plugin API supporting direct access to comm drivers for output purposes.
enum _OCPN_DLStatus OCPN_DLStatus
Status codes for HTTP file download operations.
struct _ExtentPI ExtentPI
Geographic extent structure defining a bounding box.
enum ChartTypeEnumPI _ChartTypeEnumPI
Enumeration of chart types.
enum OcpnProjTypePI _OcpnProjTypePI
Enumeration of chart projection types.
enum ChartFamilyEnumPI _ChartFamilyEnumPI
Enumeration of chart families (broad categories).
_PI_NavMode
Navigation mode options for chart display orientation.
@ PI_NORTH_UP_MODE
North Up Mode - True north is always at the top of the display.
@ PI_COURSE_UP_MODE
Course Up Mode - Current course over ground at the top.
@ PI_HEAD_UP_MODE
Head Up Mode - Current vessel heading at the top.
_PI_DisPrio
Display priority levels for S52 chart objects.
@ PI_PRIO_AREA_2
Superimposed areas including water features.
@ PI_PRIO_NUM
Number of priority levels.
@ PI_PRIO_AREA_1
Superimposed areas.
@ PI_PRIO_MARINERS
VRM, EBL, own ship (highest priority)
@ PI_PRIO_SYMB_POINT
Point symbols including land features.
@ PI_PRIO_ROUTEING
Routeing lines (TSS, recommended tracks)
@ PI_PRIO_GROUP1
S57 group 1 filled areas (land, etc)
@ PI_PRIO_SYMB_AREA
Area symbols including traffic areas.
@ PI_PRIO_SYMB_LINE
Line symbols including restricted areas.
@ PI_PRIO_NODATA
No data fill area pattern (lowest priority)
@ PI_PRIO_HAZARDS
Hazards, buoys, beacons.
enum CommDriverResult _CommDriverResult
Error return values
_PI_DisCat
Display categories for S52 chart features.
@ PI_DISP_CAT_NUM
Number of categories (for array sizing)
@ PI_OTHER
Other - additional features for detailed navigation.
@ PI_MARINERS_OTHER
Additional mariner specified features.
@ PI_DISPLAYBASE
Display Base - features that must always be shown.
@ PI_STANDARD
Standard - default features for safe navigation.
@ PI_MARINERS_STANDARD
Mariner specified standard features.
enum _PI_NavMode PI_NavMode
Navigation mode options for chart display orientation.
_PI_LUPname
Name identifiers for S57 lookup table sets.
@ PI_PLAIN_BOUNDARIES
Area objects with simple boundaries.
@ PI_PAPER_CHART
Point objects using traditional paper chart symbols.
@ PI_LINES
Line objects (e.g., depth contours, coastlines)
@ PI_LUPNAME_NUM
Total number of lookup table types.
@ PI_SIMPLIFIED
Point objects using simplified symbols.
@ PI_SYMBOLIZED_BOUNDARIES
Area objects with symbolized boundaries.
OcpnProjTypePI
Enumeration of chart projection types.
@ PI_PROJECTION_UNKNOWN
Projection type is unknown or undefined.
@ PI_PROJECTION_MERCATOR
Mercator projection, standard for navigation charts.
@ PI_PROJECTION_STEREOGRAPHIC
Stereographic projection, used for polar and specialty charts.
@ PI_PROJECTION_GNOMONIC
Gnomonic projection, in which great circles appear as straight lines.
@ PI_PROJECTION_POLAR
Polar projection, used for polar regions.
@ PI_PROJECTION_POLYCONIC
Polyconic projection, sometimes used for inland charts.
@ PI_PROJECTION_TRANSVERSE_MERCATOR
Transverse Mercator projection, used for some coastal charts.
@ PI_PROJECTION_ORTHOGRAPHIC
Orthographic projection, showing Earth as viewed from space.
@ PI_PROJECTION_EQUIRECTANGULAR
Equirectangular/Plate Carrée projection, simple lat/lon grid.
DECL_EXP bool GetEnableLightDescriptionsDisplay(int CanvasIndex)
Gets light description text visibility.
enum _OBJECT_LAYER_REQ OBJECT_LAYER_REQ
Filter options for object queries.
PI_InitReturn
Return values for plugin initialization.
@ PI_INIT_OK
Initialization successful.
@ PI_INIT_FAIL_NOERROR
Init failed, request no explicit error message.
@ PI_INIT_FAIL_RETRY
Init failed, retry suggested.
@ PI_INIT_FAIL_REMOVE
Init failed, suggest remove from further use.
OptionsParentPI
Enum defining parent pages in OpenCPN options dialog where plugins can add panels.
@ PI_OPTIONS_PARENT_DISPLAY
Display settings section.
@ PI_OPTIONS_PARENT_UI
User Interface section.
@ PI_OPTIONS_PARENT_SHIPS
Ships section.
@ PI_OPTIONS_PARENT_CHARTS
Charts section.
@ PI_OPTIONS_PARENT_PLUGINS
Plugins section.
@ PI_OPTIONS_PARENT_CONNECTIONS
Connections section.
void SetCanvasContextMenuItemGrey(int item, bool grey)
Sets menu item enabled/disabled state.
bool UpdateSingleWaypoint(PlugIn_Waypoint *pwaypoint)
Updates a single waypoint.
bool PlugInHasNormalizedViewPort(PlugIn_ViewPort *vp)
Checks if viewport has been normalized.
void PluginCenterOwnship(int CanvasIndex)
Center the chart view on the own ship position for a specific canvas.
void SetCanvasRotation(double rotation)
Sets chart display rotation angle.
wxString GetSelectedWaypointGUID_Plugin()
Gets GUID of currently selected waypoint.
int GetChartbarHeight(void)
Gets height of chart bar in pixels.
void RemovePlugInTool(int tool_id)
Removes a tool from OpenCPN's toolbar.
void SetCanvasProjection(int projection)
Sets chart projection type.
wxString * GetpSharedDataLocation(void)
Gets shared application data location.
double toUsrTemp_Plugin(double cel_temp, int unit)
Converts Celsius to user's preferred temperature unit.
wxWindow * PluginGetFocusCanvas()
Gets the currently focused chart canvas.
int AddChartToDBInPlace(wxString &full_path, bool b_RefreshCanvas)
Adds a chart to the database without full rebuild.
void fromSM_Plugin(double x, double y, double lat0, double lon0, double *lat, double *lon)
Converts Simple Mercator coordinates to geographic.
wxWindow * GetOCPNCanvasWindow()
Gets OpenCPN's main canvas window.
bool GetEnableLatLonGrid(int CanvasIndex)
Gets latitude/longitude grid visibility state.
bool UpdatePlugInRouteEx(PlugIn_Route_Ex *proute)
Updates an existing extended route.
void SetCanvasContextMenuItemViz(int item, bool viz)
Temporarily changes context menu item visibility.
int PlatformDirSelectorDialog(wxWindow *parent, wxString *file_spec, wxString Title, wxString initDir)
Shows platform-optimized directory selector dialog.
bool GetTouchMode()
Gets touch interface mode state.
int GetCanvasCount()
Gets total number of chart canvases.
ArrayOfPlugIn_AIS_Targets * GetAISTargetArray(void)
Gets array of AIS targets.
void SetCanvasMenuItemViz(int item, bool viz, const char *name)
Temporarily changes context menu item visibility.
void PlugInMultMatrixViewport(PlugIn_ViewPort *vp, float lat, float lon)
Applies viewport transformation matrix.
wxFont * OCPNGetFont(wxString TextElement, int default_size)
Gets a font for UI elements.
bool GetEnableMainToolbar()
Check if the main toolbar is enabled.
bool GetEnableENCTextDisplay(int CanvasIndex)
Gets ENC text label visibility.
bool UpdateSingleWaypointEx(PlugIn_Waypoint_Ex *pwaypoint)
Updates an existing extended waypoint.
wxArrayString GetTrackGUIDArray(void)
Gets array of track GUIDs.
wxString getUsrDistanceUnit_Plugin(int unit)
Gets display string for user's preferred distance unit.
bool DeletePlugInTrack(wxString &GUID)
Deletes a track.
bool DeletePlugInRoute(wxString &GUID)
Deletes a route.
void EnableSplitScreenLayout(bool enable)
Enable or disable the split-screen layout.
bool GetEnableLightsDisplay(int CanvasIndex)
Gets light icon visibility.
wxFont GetOCPNGUIScaledFont_PlugIn(wxString item)
Gets a uniquely scaled font copy for responsive UI elements.
wxBitmap GetBitmapFromSVGFile(wxString filename, unsigned int width, unsigned int height)
Creates bitmap from SVG file.
wxFont * FindOrCreateFont_PlugIn(int point_size, wxFontFamily family, wxFontStyle style, wxFontWeight weight, bool underline, const wxString &facename, wxFontEncoding encoding)
Creates or finds a font in the font cache.
int GetGlobalWatchdogTimoutSeconds()
Comm Global Watchdog Query
wxColour GetFontColour_PlugIn(wxString TextElement)
Gets color configured for a UI text element.
void EnableChartBar(bool enable, int CanvasIndex)
Controls visibility of chart info bar.
void PositionBearingDistanceMercator_Plugin(double lat, double lon, double brg, double dist, double *dlat, double *dlon)
Calculates destination point given start point, bearing and distance.
double toUsrDistance_Plugin(double nm_distance, int unit)
Converts nautical miles to user's preferred distance unit.
void SetENCDisplayCategory(PI_DisCat cat, int CanvasIndex)
Sets ENC (Electronic Navigation Chart) feature display category.
void toSM_Plugin(double lat, double lon, double lat0, double lon0, double *x, double *y)
Converts geographic coordinates to Simple Mercator projection.
PI_DisCat GetENCDisplayCategory(int CanvasIndex)
Gets current ENC display category.
void EnableTouchMode(bool enable)
Enables/disables touch interface mode.
void EnableCurrentStationsDisplay(bool enable, int CanvasIndex)
Controls current station icon display.
void EnableChartOutlines(bool enable, int CanvasIndex)
Controls chart outline display.
void EnableMUIBar(bool enable, int CanvasIndex)
Controls visibility of MUI (Mobile/Touch User Interface) bar.
double OCPN_GetDisplayContentScaleFactor()
Gets content scaling factor for current display.
double DistGreatCircle_Plugin(double slat, double slon, double dlat, double dlon)
Calculates great circle distance between two points.
void EnableLookaheadMode(bool enable, int CanvasIndex)
Enables/disables look-ahead mode for a canvas.
bool PluginGetFollowMode(int CanvasIndex)
Get the current follow mode status for a specific canvas.
wxArrayString GetRouteGUIDArray(void)
Gets array of route GUIDs.
wxScrolledWindow * AddOptionsPage(OptionsParentPI parent, wxString title)
Adds a new preferences page to OpenCPN options dialog.
void EnableLightsDisplay(bool enable, int CanvasIndex)
Controls light icon display.
void PlugInHandleAutopilotRoute(bool enable)
Controls autopilot route handling.
void RemoveCanvasMenuItem(int item, const char *name)
Removes a context menu item completely.
void JumpToPosition(double lat, double lon, double scale)
Centers chart display on specified position at given scale.
int InsertPlugInToolSVG(wxString label, wxString SVGfile, wxString SVGfileRollover, wxString SVGfileToggled, wxItemKind kind, wxString shortHelp, wxString longHelp, wxObject *clientData, int position, int tool_sel, opencpn_plugin *pplugin)
Adds a tool using SVG graphics.
bool GetEnableCurrentStationsDisplay(int CanvasIndex)
Gets current station icon visibility.
wxDialog * GetActiveOptionsDialog()
Gets pointer to active options dialog.
wxString getUsrSpeedUnit_Plugin(int unit)
Gets display string for user's preferred speed unit.
std::unique_ptr< PlugIn_Waypoint > GetWaypoint_Plugin(const wxString &GUID)
Gets waypoint details by GUID.
bool GetEnableLookaheadMode(int CanvasIndex)
Gets look-ahead mode state for a canvas.
void EnableTideStationsDisplay(bool enable, int CanvasIndex)
Controls tide station icon display.
bool GetEnableChartBar(int CanvasIndex)
Gets chart bar visibility state.
wxBitmap GetIcon_PlugIn(const wxString &name)
Gets icon bitmap by name.
wxArrayString GetIconNameArray(void)
Gets array of available waypoint icons.
bool PlugIn_GSHHS_CrossesLand(double lat1, double lon1, double lat2, double lon2)
Checks if a great circle route crosses land.
void SetNavigationMode(PI_NavMode mode, int CanvasIndex)
Sets the navigation mode for a specific chart canvas.
bool GetEnableStatusBar()
Gets status bar visibility state.
bool GetEnableDepthUnitDisplay(int CanvasIndex)
Gets depth unit display state.
int InsertPlugInTool(wxString label, wxBitmap *bitmap, wxBitmap *bmpRollover, wxItemKind kind, wxString shortHelp, wxString longHelp, wxObject *clientData, int position, int tool_sel, opencpn_plugin *pplugin)
Adds a tool to OpenCPN's toolbar.
void EnableENCDepthSoundingsDisplay(bool enable, int CanvasIndex)
Controls ENC depth sounding display.
void PlugInAISDrawGL(wxGLCanvas *glcanvas, const PlugIn_ViewPort &vp)
Renders AIS targets on a secondary OpenGL canvas.
double GetCanvasTilt()
Gets current canvas tilt angle.
void AddChartDirectory(wxString &path)
Adds a chart directory to OpenCPN's chart database.
bool GetActiveRoutepointGPX(char *buffer, unsigned int buffer_length)
Gets GPX representation of active route waypoint.
double PlugInGetDisplaySizeMM()
Gets physical display size in millimeters.
bool UpdatePlugInRoute(PlugIn_Route *proute)
Updates an existing route.
void SetToolbarToolBitmaps(int item, wxBitmap *bitmap, wxBitmap *bmpRollover)
Updates toolbar tool bitmaps.
void EnableBuoyLightLabelsDisplay(bool enable, int CanvasIndex)
Controls buoy/light name label display.
wxString GetActiveWaypointGUID(void)
Gets GUID of currently active waypoint.
void ConfigFlushAndReload()
Flush configuration changes to disk and reload settings.
void EnableAisTargetDisplay(bool enable, int CanvasIndex)
Controls AIS target display.
int PlatformFileSelectorDialog(wxWindow *parent, wxString *file_spec, wxString Title, wxString initDir, wxString suggestedName, wxString wildcard)
Shows platform-optimized file selector dialog.
bool CheckMUIEdgePan_PlugIn(int x, int y, bool dragging, int margin, int delta, int canvasIndex)
Checks if chart should pan when cursor near edge.
bool AddPlugInRoute(PlugIn_Route *proute, bool b_permanent)
Adds a new route.
wxString GetNewGUID(void)
Generates a new globally unique identifier (GUID).
double fromDMM_Plugin(wxString sdms)
Converts degrees/decimal minutes string to decimal degrees.
void EnableENCTextDisplay(bool enable, int CanvasIndex)
Controls ENC text label display.
int GetCanvasIndexUnderMouse(void)
Gets index of chart canvas under mouse cursor.
void EnableTenHertzUpdate(bool enable)
Enable or disable 10 Hz update rate.
wxRect GetMasterToolbarRect()
Gets bounding rectangle of master toolbar.
void toTM_Plugin(float lat, float lon, float lat0, float lon0, double *x, double *y)
Converts geographic coordinates to Transverse Mercator projection.
void CanvasJumpToPosition(wxWindow *canvas, double lat, double lon, double scale)
Centers specified canvas on given position at given scale.
double fromUsrSpeed_Plugin(double usr_speed, int unit)
Converts from user's preferred speed unit to knots.
void GetDoubleCanvasPixLL(PlugIn_ViewPort *vp, wxPoint2DDouble *pp, double lat, double lon)
Converts lat/lon to canvas pixels with double precision.
std::unique_ptr< PlugIn_Track > GetTrack_Plugin(const wxString &GUID)
Gets track details by GUID.
bool PlugInPlaySoundEx(wxString &sound_file, int deviceIndex)
Start playing a sound file asynchronously.
void EnableCompassGPSIcon(bool enable, int CanvasIndex)
Controls visibility of compass/GPS status icon.
wxString GetActiveRouteGUID(void)
Gets GUID of currently active route.
void EnableDepthUnitDisplay(bool enable, int CanvasIndex)
Controls depth unit display.
bool GetEnableTideStationsDisplay(int CanvasIndex)
Gets tide station icon visibility.
bool PlugInSetFontColor(const wxString TextElement, const wxColour color)
Sets text color for a UI element.
wxWindow * GetCanvasUnderMouse(void)
Gets canvas window under mouse cursor.
std::unique_ptr< PlugIn_Waypoint_Ex > GetWaypointEx_Plugin(const wxString &GUID)
Gets extended waypoint by GUID.
bool GetTrackingMode()
Get the current tracking mode status.
bool GetEnableChartOutlines(int CanvasIndex)
Gets chart outline visibility state.
void GetCanvasPixLL(PlugIn_ViewPort *vp, wxPoint *pp, double lat, double lon)
Converts lat/lon to canvas physical pixel coordinates.
wxColor GetGlobalColorD(std::string map_name, std::string name)
Gets a color from the global color scheme.
bool GetEnableCompassGPSIcon(int CanvasIndex)
Gets compass icon visibility state.
void SetMUICursor_PlugIn(wxCursor *pCursor, int canvasIndex)
Sets mouse cursor for specific canvas.
void EnableMenu(bool enable)
Shows/hides the main menu bar.
void DimeWindow(wxWindow *win)
Applies system color scheme to window.
bool GetEnableAisTargetDisplay(int CanvasIndex)
Gets AIS target display state.
std::vector< std::string > GetPriorityMaps()
Comm Priority query support methods
double GetOCPNGUIToolScaleFactor_PlugIn()
Gets current global GUI scaling factor.
void SetToolbarToolBitmapsSVG(int item, wxString SVGfile, wxString SVGfileRollover, wxString SVGfileToggled)
Updates SVG graphics for toolbar tool.
wxString getUsrTempUnit_Plugin(int unit)
Gets display string for user's preferred temperature unit.
bool AddSingleWaypointEx(PlugIn_Waypoint_Ex *pwaypointex, bool b_permanent)
Adds a waypoint with extended properties.
wxArrayString GetWaypointGUIDArray(void)
Gets array of all waypoint/marks GUIDs.
int AddCanvasContextMenuItem(wxMenuItem *pitem, opencpn_plugin *pplugin)
Adds item to chart canvas context menu.
wxString GetActiveStyleName()
Gets name of currently active style sheet.
wxArrayString GetChartDBDirArrayString()
Gets chart database directory list.
void SetCursor_PlugIn(wxCursor *pCursor)
Sets mouse cursor.
bool GetEnableTenHertzUpdate()
Check if 10 Hz update rate is enabled.
wxString GetLocaleCanonicalName()
Gets system locale canonical name.
wxWindow * PluginGetOverlayRenderCanvas()
Gets the canvas currently designated for overlay rendering.
bool AddPersistentFontKey(wxString TextElement)
Registers a new font configuration element.
bool AddPlugInTrack(PlugIn_Track *ptrack, bool b_permanent)
Adds a new track.
bool UpdateChartDBInplace(wxArrayString dir_array, bool b_force_update, bool b_ProgressDialog)
Updates chart database in place.
void RequestWindowRefresh(wxWindow *win, bool eraseBackground)
Requests window refresh.
void EnableLatLonGrid(bool enable, int CanvasIndex)
Controls latitude/longitude grid display.
void SetAppColorScheme(PI_ColorScheme cs)
Set the application color scheme.
bool DeleteSingleWaypoint(wxString &GUID)
Deletes a single waypoint.
void RemoveCanvasContextMenuItem(int item)
Removes a context menu item completely.
bool DecodeSingleVDOMessage(const wxString &str, PlugIn_Position_Fix_Ex *pos, wxString *accumulator)
Decodes a single VDO (Own Ship AIS) message.
bool AddCustomWaypointIcon(wxBitmap *pimage, wxString key, wxString description)
Adds a custom waypoint icon.
bool CheckEdgePan_PlugIn(int x, int y, bool dragging, int margin, int delta)
Checks if chart should pan when cursor near edge.
double toUsrSpeed_Plugin(double kts_speed, int unit)
Converts knots to user's preferred speed unit.
std::unique_ptr< PlugIn_Route_Ex > GetRouteEx_Plugin(const wxString &GUID)
Gets extended route by GUID.
std::vector< std::string > GetActivePriorityIdentifiers()
Gets list of active priority identifiers.
bool GetEnableENCDepthSoundingsDisplay(int CanvasIndex)
Gets ENC depth sounding visibility.
void SetToolbarItemState(int item, bool toggle)
Sets toolbar item toggle state.
bool DeleteOptionsPage(wxScrolledWindow *page)
Removes a previously added options page.
void EnableLightDescriptionsDisplay(bool enable, int CanvasIndex)
Controls light description text display.
float GetOCPNChartScaleFactor_Plugin()
Gets chart rendering scale factor.
PI_NavMode GetNavigationMode(int CanvasIndex)
Gets current navigation mode for a canvas.
int AddCanvasMenuItem(wxMenuItem *pitem, opencpn_plugin *pplugin, const char *name)
Adds item to canvas context menu.
int RemoveChartFromDBInPlace(wxString &full_path)
Removes a chart from database without full rebuild.
void PlugInNormalizeViewport(PlugIn_ViewPort *vp, float lat, float lon)
Normalizes viewport parameters.
PI_ColorScheme GetAppColorScheme()
Get the current application color scheme.
void ExitOCPN()
Exits OpenCPN application.
wxWindow * GetCanvasByIndex(int canvasIndex)
Gets chart canvas window by index.
void fromTM_Plugin(double x, double y, double lat0, double lon0, double *lat, double *lon)
Converts Transverse Mercator coordinates to geographic.
double OCPN_GetWinDIPScaleFactor()
Gets Windows-specific DPI scaling factor.
void PushNMEABuffer(wxString buf)
Pushes NMEA sentence to the system.
void SetEnableMainToolbar(bool enable)
Show or hide the main toolbar.
void SetFullScreen(bool set_full_screen_on)
Sets full screen mode.
bool GetEnableMenu()
Gets menu bar visibility state.
void SetCanvasMenuItemGrey(int item, bool grey, const char *name)
Sets menu item enabled/disabled state.
bool GetEnableBuoyLightLabelsDisplay(int CanvasIndex)
Gets buoy/light label visibility.
bool GetEnableCanvasFocusBar(int CanvasIndex)
Gets focus indicator visibility state.
wxXmlDocument GetChartDatabaseEntryXML(int dbIndex, bool b_getGeom)
Gets chart database entry as XML.
wxAuiManager * GetFrameAuiManager(void)
Gets main frame AUI manager.
void SendPluginMessage(wxString message_id, wxString message_body)
Sends message to other plugins.
bool AddPlugInRouteEx(PlugIn_Route_Ex *proute, bool b_permanent)
Adds a route with extended features.
void fromSM_ECC_Plugin(double x, double y, double lat0, double lon0, double *lat, double *lon)
Converts Elliptical Simple Mercator coordinates to geographic.
void EnableStatusBar(bool enable)
Shows/hides the status bar.
void RequestRefresh(wxWindow *win)
Requests window refresh.
void PluginZoomCanvas(int CanvasIndex, double factor)
Zoom a specific chart canvas by the given factor.
int GetLatLonFormat()
Gets currently selected latitude/longitude display format.
bool AddSingleWaypoint(PlugIn_Waypoint *pwaypoint, bool b_permanent)
Adds a single waypoint.
bool IsTouchInterface_PlugIn(void)
Checks if touch interface mode is enabled.
bool GetSingleWaypoint(wxString GUID, PlugIn_Waypoint *pwaypoint)
Gets waypoint data by GUID.
void SetToolbarToolViz(int item, bool viz)
Temporarily changes toolbar tool visibility.
double fromUsrTemp_Plugin(double usr_temp, int unit)
Converts from user's preferred temperature unit to Celsius.
void SetCanvasTilt(double tilt)
Gets current canvas tilt angle.
std::unique_ptr< PlugIn_Route > GetRoute_Plugin(const wxString &GUID)
Gets route details by GUID.
bool GetEnableMUIBar(int CanvasIndex)
Gets MUI bar visibility state.
bool AddLocaleCatalog(wxString catalog)
Adds a locale catalog for translations.
bool GetFullScreen()
Gets full screen state.
void SetTrackingMode(bool enable)
Enable or disable tracking mode.
void PluginSetFollowMode(int CanvasIndex, bool enable_follow)
Set follow mode for a specific canvas.
void ShowGlobalSettingsDialog()
Display the global settings dialog.
void toSM_ECC_Plugin(double lat, double lon, double lat0, double lon0, double *x, double *y)
Converts geographic coordinates to Elliptical Simple Mercator projection.
bool UpdatePlugInTrack(PlugIn_Track *ptrack)
Updates an existing track.
double fromUsrDistance_Plugin(double usr_distance, int unit)
Converts from user's preferred distance unit to nautical miles.
wxString GetSelectedTrackGUID_Plugin()
Gets GUID of currently selected track.
wxFileConfig * GetOCPNConfigObject(void)
Gets OpenCPN's configuration object.
void DistanceBearingMercator_Plugin(double lat0, double lon0, double lat1, double lon1, double *brg, double *dist)
Calculates bearing and distance between two points.
void SetGlobalColor(std::string table, std::string name, wxColor color)
Sets a color in the global color scheme.
void ZeroXTE()
Resets cross track error to zero.
void PlugInPlaySound(wxString &sound_file)
Plays a sound file asynchronously.
void GetCanvasLLPix(PlugIn_ViewPort *vp, wxPoint p, double *plat, double *plon)
Converts canvas physical pixel coordinates to lat/lon.
void EnableCanvasFocusBar(bool enable, int CanvasIndex)
Controls visibility of canvas focus indicator.
wxString GetSelectedRouteGUID_Plugin()
Gets GUID of currently selected route.
void ForceChartDBUpdate()
Forces an update of the chart database.
bool GetSingleWaypointEx(wxString GUID, PlugIn_Waypoint_Ex *pwaypoint)
Gets extended waypoint data by GUID.
bool ShuttingDown(void)
Checks if OpenCPN is in shutdown process.
void ForceChartDBRebuild()
Forces complete rebuild of chart database.
std::string GetPluginMsgPayload(PluginMsgId id, ObservedEvt ev)
Retrieve the string in a plugin message, internal or received on the REST insterface.
std::string GetN0183Payload(NMEA0183Id id, ObservedEvt ev)
Return payload in a received n0183 message of type id in ev.
PluginNavdata GetEventNavdata(ObservedEvt ev)
Return BasicNavDataMsg decoded data available in ev.
CommDriverResult WriteCommDriverN2K(DriverHandle handle, int PGN, int destinationCANAddress, int priority, const std::shared_ptr< std::vector< uint8_t > > &payload)
Send a PGN message to an NMEA2000 address.
shared_ptr< ObservableListener > GetListener(NMEA2000Id id, wxEventType et, wxEvtHandler *eh)
Gets listener for NMEA 2000 messages.
std::vector< DriverHandle > GetActiveDrivers()
Comm port plugin TX support methods
const std::unordered_map< std::string, std::string > GetAttributes(DriverHandle handle)
Query a specific driver for attributes.
std::string GetN2000Source(NMEA2000Id id, ObservedEvt ev)
Return source identifier (iface) of a received n2000 message of type id in ev.
vector< uint8_t > GetN2000Payload(NMEA2000Id id, ObservedEvt ev)
Return N2K payload for a received n2000 message of type id in ev.
std::shared_ptr< void > GetSignalkPayload(ObservedEvt ev)
Get SignalK status payload after receiving a message.
wxString * GetpPrivateApplicationDataLocation(void)
Gets private application data directory.
CommDriverResult WriteCommDriver(DriverHandle handle, const std::shared_ptr< std::vector< uint8_t > > &payload)
Send a non-NMEA2000 message.
CommDriverResult RegisterTXPGNs(DriverHandle handle, std::vector< int > &pgn_list)
Register PGNs that this application intends to transmit for some NMEA 2000 adapters like Actisense NG...
Configuration options for date and time formatting.
wxString format_string
The format string for date/time.
DateTimeFormatOptions & SetFormatString(const wxString &fmt)
Sets the date/time format pattern string.
DateTimeFormatOptions & SetTimezone(const wxString &tz)
Sets the timezone mode for date/time display.
wxString time_zone
The timezone to use when formatting the date/time.
DateTimeFormatOptions & SetLongitude(double lon)
Sets the reference longitude for Local Mean Time (LMT) calculations.
double longitude
The longitude to use when formatting the date/time in Local Mean Time (LMT).
Identifier for NMEA 0183 sentence types.
const std::string id
Sentence identifier.
Identifier for NMEA 2000 message types.
const uint64_t id
The PGN value.
Navigation data message identifier.
const int type
Message type identifier (currently only 0 supported)
NavDataId()
Default constructor.
Facade for NavAddrPluginMsg.
Basic navigation data structure.
double var
Magnetic variation in degrees.
double cog
Course over ground in degrees.
double lon
Longitude in decimal degrees.
double lat
Latitude in decimal degrees.
double sog
Speed over ground in knots.
double hdt
True heading in degrees.
time_t time
UTC timestamp of data.
Identifier for Signal K paths.
const std::string id
Signal K path.
Geographic extent structure defining a bounding box.
double NLAT
Northern latitude boundary in decimal degrees.
double WLON
Western longitude boundary in decimal degrees.
double SLAT
Southern latitude boundary in decimal degrees.
double ELON
Eastern longitude boundary in decimal degrees.