OpenCPN Partial API docs
|
Custom event class for OpenCPN's notification system. More...
#include <ocpn_plugin.h>
Public Member Functions | |
ObservedEvt (wxEventType commandType=obsNOTIFY, int id=0) | |
Constructor. | |
ObservedEvt (const ObservedEvt &event) | |
wxEvent * | Clone () const |
Creates a cloned copy of this event. | |
std::shared_ptr< const void > | GetSharedPtr () const |
Gets the event's payload data. | |
void | SetSharedPtr (std::shared_ptr< const void > p) |
Sets the event's payload data. | |
ObservedEvt (wxEventType commandType=obsNOTIFY, int id=0) | |
ObservedEvt (const ObservedEvt &event) | |
wxEvent * | Clone () const |
std::shared_ptr< const void > | GetSharedPtr () const |
void | SetSharedPtr (std::shared_ptr< const void > p) |
Custom event class for OpenCPN's notification system.
Adds a std::shared<void> element to wxCommandEvent.
This class extends wxCommandEvent to add support for passing shared pointer payloads between event producers and consumers. It's used by the notification/listening system to deliver messages and data between plugins and the core application.
Key features:
Definition at line 5353 of file ocpn_plugin.h.
|
inline |
Constructor.
commandType | Event type ID, defaults to obsNOTIFY |
id | Window identifier, defaults to 0 |
Definition at line 5361 of file ocpn_plugin.h.
|
inline |
Definition at line 5363 of file ocpn_plugin.h.
|
inline |
Definition at line 39 of file observable_evt.h.
|
inline |
Definition at line 42 of file observable_evt.h.
|
inline |
Creates a cloned copy of this event.
Required by wxWidgets event system for event propagation.
Definition at line 5373 of file ocpn_plugin.h.
|
inline |
Definition at line 46 of file observable_evt.h.
|
inline |
Gets the event's payload data.
Definition at line 5379 of file ocpn_plugin.h.
|
inline |
Definition at line 48 of file observable_evt.h.
|
inline |
Sets the event's payload data.
p | Shared pointer to payload data |
Definition at line 5385 of file ocpn_plugin.h.
|
inline |
Definition at line 50 of file observable_evt.h.