OpenCPN Partial API docs
|
Public Member Functions | |
wmm_pi (void *ppimgr) | |
int | Init (void) |
Initialize the plugin and declare its capabilities. | |
bool | DeInit (void) |
Clean up plugin resources. | |
int | GetAPIVersionMajor () |
Returns the major version number of the plugin API that this plugin supports. | |
int | GetAPIVersionMinor () |
Returns the minor version number of the plugin API that this plugin supports. | |
int | GetPlugInVersionMajor () |
Returns the major version number of the plugin itself. | |
int | GetPlugInVersionMinor () |
Returns the minor version number of the plugin itself. | |
wxBitmap * | GetPlugInBitmap () |
Get the plugin's icon bitmap. | |
wxString | GetCommonName () |
Get the plugin's common (short) name. | |
wxString | GetShortDescription () |
Get a brief description of the plugin. | |
wxString | GetLongDescription () |
Get detailed plugin information. | |
void | SetCursorLatLon (double lat, double lon) |
Receives cursor lat/lon position updates. | |
void | SetPositionFix (PlugIn_Position_Fix &pfix) |
Updates plugin with current position fix data. | |
void | RenderOverlayBoth (pi_ocpnDC *dc, PlugIn_ViewPort *vp) |
bool | RenderOverlay (wxDC &dc, PlugIn_ViewPort *vp) |
bool | RenderGLOverlay (wxGLContext *pcontext, PlugIn_ViewPort *vp) |
Renders plugin overlay graphics in OpenGL mode. | |
void | RecomputePlot () |
int | GetToolbarToolCount (void) |
Returns the number of toolbar tools this plugin provides. | |
void | ShowPreferencesDialog (wxWindow *parent) |
Shows the plugin preferences dialog. | |
void | ShowPlotSettingsDialog (wxCommandEvent &event) |
void | OnToolbarToolCallback (int id) |
Handles toolbar tool clicks. | |
void | SetColorScheme (PI_ColorScheme cs) |
Updates plugin color scheme. | |
void | SetPluginMessage (wxString &message_id, wxString &message_body) |
void | SetShowPlot (bool showplot) |
void | SetWmmDialogX (int x) |
void | SetWmmDialogY (int x) |
void | OnWmmDialogClose () |
void | ShowPlotSettings () |
![]() | |
opencpn_plugin_18 (void *pmgr) | |
virtual void | SetPositionFixEx (PlugIn_Position_Fix_Ex &pfix) |
Updates plugin with extended position fix data. | |
virtual bool | RenderOverlay (wxMemoryDC *pmdc, PlugIn_ViewPort *vp) |
Render plugin overlay graphics using standard device context. | |
![]() | |
opencpn_plugin (void *pmgr) | |
virtual void | SetDefaults (void) |
Sets plugin default options. | |
virtual int | GetToolboxPanelCount (void) |
Returns the number of preference pages this plugin provides. | |
virtual void | SetupToolboxPanel (int page_sel, wxNotebook *pnotebook) |
Creates a plugin preferences page. | |
virtual void | OnCloseToolboxPanel (int page_sel, int ok_apply_cancel) |
Handles preference page closure. | |
virtual void | SetCurrentViewPort (PlugIn_ViewPort &vp) |
Notifies plugin of viewport changes. | |
virtual void | SetNMEASentence (wxString &sentence) |
Receive all NMEA 0183 sentences from OpenCPN. | |
virtual void | SetAISSentence (wxString &sentence) |
Receive all AIS sentences from OpenCPN. | |
virtual void | ProcessParentResize (int x, int y) |
Handles parent window resize events. | |
virtual void | OnContextMenuItemCallback (int id) |
Handles context menu item selection. | |
virtual void | UpdateAuiStatus (void) |
Updates AUI manager status. | |
virtual wxArrayString | GetDynamicChartClassNameArray (void) |
Returns array of dynamically loaded chart class names. | |
wmm_pi::wmm_pi | ( | void * | ppimgr | ) |
Definition at line 114 of file wmm_pi.cpp.
|
virtual |
Clean up plugin resources.
This required method is called by OpenCPN during plugin unloading or program shutdown. It should release any resources allocated by the plugin.
Reimplemented from opencpn_plugin.
Definition at line 235 of file wmm_pi.cpp.
|
virtual |
Returns the major version number of the plugin API that this plugin supports.
This method must be implemented by all plugins to declare compatibility with a specific major version of the OpenCPN plugin API.
Reimplemented from opencpn_plugin.
Definition at line 269 of file wmm_pi.cpp.
|
virtual |
Returns the minor version number of the plugin API that this plugin supports.
This method must be implemented by all plugins to declare compatibility with a specific minor version of the OpenCPN plugin API.
Reimplemented from opencpn_plugin.
Definition at line 271 of file wmm_pi.cpp.
|
virtual |
Get the plugin's common (short) name.
This required method should return a short name used to identify the plugin in lists and menus.
Reimplemented from opencpn_plugin.
Definition at line 279 of file wmm_pi.cpp.
|
virtual |
Get detailed plugin information.
This required method should return a longer description including:
Reimplemented from opencpn_plugin.
Definition at line 285 of file wmm_pi.cpp.
|
virtual |
Get the plugin's icon bitmap.
FIXME static wxBitmap* LoadSVG(const wxString filename, unsigned int width, unsigned int height) { if (!gFrame) return new wxBitmap(width, height); // We are headless.
This method should return a wxBitmap containing the plugin's icon for display in the plugin manager and other UI elements.
#ifdef ANDROID return loadAndroidSVG(filename, width, height); #elif defined(ocpnUSE_SVG) wxSVGDocument svgDoc; if (svgDoc.Load(filename)) return new wxBitmap(svgDoc.Render(width, height, NULL, true, true)); else return new wxBitmap(width, height); #else return new wxBitmap(width, height); #endif }
wxBitmap* opencpn_plugin::GetPlugInBitmap() { auto bitmap = PluginLoader::getInstance()->GetPluginDefaultIcon(); return const_cast<wxBitmap*>(bitmap); }
Reimplemented from opencpn_plugin.
Definition at line 277 of file wmm_pi.cpp.
|
virtual |
Returns the major version number of the plugin itself.
This method should return the plugin's own major version number, which is used by OpenCPN for plugin version management and display.
Reimplemented from opencpn_plugin.
Definition at line 273 of file wmm_pi.cpp.
|
virtual |
Returns the minor version number of the plugin itself.
This method should return the plugin's own minor version number, which is used by OpenCPN for plugin version management and display.
Reimplemented from opencpn_plugin.
Definition at line 275 of file wmm_pi.cpp.
|
virtual |
Get a brief description of the plugin.
This required method should return a short description (1-2 sentences) explaining the plugin's basic functionality.
Reimplemented from opencpn_plugin.
Definition at line 281 of file wmm_pi.cpp.
|
virtual |
Returns the number of toolbar tools this plugin provides.
This method should return how many toolbar buttons/tools the plugin will add. Must be implemented if plugin sets INSTALLS_TOOLBAR_TOOL capability flag.
Reimplemented from opencpn_plugin.
Definition at line 297 of file wmm_pi.cpp.
|
virtual |
Initialize the plugin and declare its capabilities.
This required method is called by OpenCPN during plugin loading. It should:
Reimplemented from opencpn_plugin.
Definition at line 130 of file wmm_pi.cpp.
|
virtual |
Handles toolbar tool clicks.
Called when the user clicks a plugin's toolbar button. Must be implemented if plugin declares WANTS_TOOLBAR_CALLBACK capability.
id | The tool ID assigned when tool was added via InsertPlugInTool() |
Reimplemented from opencpn_plugin.
Definition at line 362 of file wmm_pi.cpp.
void wmm_pi::RecomputePlot | ( | ) |
Definition at line 453 of file wmm_pi.cpp.
|
virtual |
Renders plugin overlay graphics in OpenGL mode.
Called by OpenCPN during chart redraw to allow plugins to render custom visualizations in OpenGL mode. Both RenderOverlay() and RenderGLOverlay() use the same piDC device context abstraction for drawing, but RenderGLOverlay() provides direct access to the OpenGL context.
Plugins render in their load order within plugin array
pcontext | OpenGL context for direct GL drawing commands |
vp | Current viewport settings (scale, position, rotation) |
Reimplemented from opencpn_plugin_18.
Definition at line 414 of file wmm_pi.cpp.
|
virtual |
Reimplemented from opencpn_plugin_18.
Definition at line 401 of file wmm_pi.cpp.
void wmm_pi::RenderOverlayBoth | ( | pi_ocpnDC * | dc, |
PlugIn_ViewPort * | vp | ||
) |
Definition at line 393 of file wmm_pi.cpp.
|
virtual |
Updates plugin color scheme.
Called when OpenCPN's color scheme changes between day, dusk and night modes. Plugins should update their UI colors to match the new scheme.
cs | New color scheme to use:
|
Reimplemented from opencpn_plugin.
Definition at line 299 of file wmm_pi.cpp.
|
virtual |
Receives cursor lat/lon position updates.
This method is called when the cursor moves over the chart. Must be implemented if plugin sets WANTS_CURSOR_LATLON flag.
lat | Cursor latitude in decimal degrees |
lon | Cursor longitude in decimal degrees |
Reimplemented from opencpn_plugin.
Definition at line 470 of file wmm_pi.cpp.
|
virtual |
Reimplemented from opencpn_plugin_18.
Definition at line 668 of file wmm_pi.cpp.
|
virtual |
Updates plugin with current position fix data.
Called by OpenCPN when a new position fix is received. Plugins can use this to track vessel position, course and speed.
pfix | Position fix data containing:
|
Reimplemented from opencpn_plugin.
Definition at line 527 of file wmm_pi.cpp.
void wmm_pi::ShowPlotSettings | ( | ) |
dialog->m_dpDate->SetValue(m_MapDate);
m_MapDate = dialog->m_dpDate->GetValue();
Definition at line 907 of file wmm_pi.cpp.
|
virtual |
Shows the plugin preferences dialog.
This method is called when the user requests the plugin preferences through the OpenCPN options dialog. Must be implemented if plugin sets WANTS_PREFERENCES flag.
parent | Parent window to use for dialog |
Reimplemented from opencpn_plugin.
Definition at line 877 of file wmm_pi.cpp.
MAGtype_CoordGeodetic wmm_pi::CoordGeodetic |
MAGtype_CoordSpherical wmm_pi::CoordSpherical |
MAGtype_Ellipsoid wmm_pi::Ellip |
MAGtype_Geoid wmm_pi::Geoid |
MAGtype_GeoMagneticElements wmm_pi::GeoMagneticElements |
WmmUIDialog* wmm_pi::m_pWmmDialog |
MAGtype_MagneticModel* wmm_pi::MagneticModel |
MAGtype_MagneticModel* wmm_pi::MagneticModels[1] |
MAGtype_MagneticModel * wmm_pi::TimedMagneticModel |
MAGtype_Date wmm_pi::UserDate |