OpenCPN Partial API docs
|
Public Member Functions | |
dashboard_pi (void *ppimgr) | |
int | Init (void) |
Initialize the plugin and declare its capabilities. | |
bool | DeInit (void) |
Clean up plugin resources. | |
void | Notify () |
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 | SetNMEASentence (wxString &sentence) |
Receive all NMEA 0183 sentences from OpenCPN. | |
void | SetPositionFixEx (PlugIn_Position_Fix_Ex &pfix) |
Updates plugin with extended position fix data. | |
void | SetCursorLatLon (double lat, double lon) |
Receives cursor lat/lon position updates. | |
int | GetToolbarToolCount (void) |
Returns the number of toolbar tools this plugin provides. | |
void | OnToolbarToolCallback (int id) |
Handles toolbar tool clicks. | |
void | ShowPreferencesDialog (wxWindow *parent) |
Shows the plugin preferences dialog. | |
void | SetColorScheme (PI_ColorScheme cs) |
Updates plugin color scheme. | |
void | OnPaneClose (wxAuiManagerEvent &event) |
void | UpdateAuiStatus (void) |
Updates AUI manager status. | |
bool | SaveConfig (void) |
void | PopulateContextMenu (wxMenu *menu) |
void | ShowDashboard (size_t id, bool visible) |
int | GetToolbarItemId () |
int | GetDashboardWindowShownCount () |
void | SetPluginMessage (wxString &message_id, wxString &message_body) |
Definition at line 209 of file dashboard_pi.h.
dashboard_pi::dashboard_pi | ( | void * | ppimgr | ) |
Definition at line 488 of file dashboard_pi.cpp.
dashboard_pi::~dashboard_pi | ( | void | ) |
Definition at line 495 of file dashboard_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 698 of file dashboard_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 940 of file dashboard_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 942 of file dashboard_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 950 of file dashboard_pi.cpp.
int dashboard_pi::GetDashboardWindowShownCount | ( | ) |
Definition at line 3325 of file dashboard_pi.cpp.
|
virtual |
Get detailed plugin information.
This required method should return a longer description including:
Reimplemented from opencpn_plugin.
Definition at line 956 of file dashboard_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 948 of file dashboard_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 944 of file dashboard_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 946 of file dashboard_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 952 of file dashboard_pi.cpp.
|
inline |
Definition at line 242 of file dashboard_pi.h.
|
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 3243 of file dashboard_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 504 of file dashboard_pi.cpp.
void dashboard_pi::Notify | ( | ) |
Definition at line 740 of file dashboard_pi.cpp.
void dashboard_pi::OnPaneClose | ( | wxAuiManagerEvent & | event | ) |
Definition at line 3339 of file dashboard_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 3361 of file dashboard_pi.cpp.
void dashboard_pi::PopulateContextMenu | ( | wxMenu * | menu | ) |
Definition at line 4068 of file dashboard_pi.cpp.
bool dashboard_pi::SaveConfig | ( | void | ) |
Definition at line 3797 of file dashboard_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 3316 of file dashboard_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 3206 of file dashboard_pi.cpp.
|
virtual |
Receive all NMEA 0183 sentences from OpenCPN.
Plugins can implement this method to receive all NMEA 0183 sentences. They must set the WANTS_NMEA_SENTENCES capability flag to receive updates.
sentence | The NMEA 0183 sentence |
Reimplemented from opencpn_plugin.
Definition at line 1000 of file dashboard_pi.cpp.
|
virtual |
Reimplemented from opencpn_plugin_18.
Definition at line 3211 of file dashboard_pi.cpp.
|
virtual |
Updates plugin with extended position fix data.
Called by OpenCPN when a new position fix with heading data is received. Extends SetPositionFix() by adding true heading information.
pfix | Extended position fix data containing:
|
Reimplemented from opencpn_plugin_18.
Definition at line 3131 of file dashboard_pi.cpp.
void dashboard_pi::ShowDashboard | ( | size_t | id, |
bool | visible | ||
) |
Definition at line 4083 of file dashboard_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 3245 of file dashboard_pi.cpp.
|
virtual |
Updates AUI manager status.
Called to notify plugins using wxAUI interface that they should update their AUI managed windows and panes. Must be implemented if plugin declares USES_AUI_MANAGER capability.
Reimplemented from opencpn_plugin.
Definition at line 3449 of file dashboard_pi.cpp.