The PixInsight core application calls view property notification functions to keep interfaces informed about changes and events involving view properties.
For a process interface to receive view property notifications, the corresponding ProcessInterface subclass must reimplement ProcessInterface::WantsViewPropertyNotifications() to return true.
◆ ViewPropertyDeleted()
virtual void pcl::ProcessInterface::ViewPropertyDeleted |
( |
const View & |
view, |
|
|
const IsoString & |
property |
|
) |
| |
|
inlinevirtual |
◆ ViewPropertyUpdated()
virtual void pcl::ProcessInterface::ViewPropertyUpdated |
( |
const View & |
view, |
|
|
const IsoString & |
property |
|
) |
| |
|
inlinevirtual |
Notification sent when a view property has been created or modified.
- Parameters
-
view | Reference to a view where a new property has been created, or an existing property has been modified. |
property | Identifier of the view property that has been created or modified. |
- See also
- View Property Notification Functions
Definition at line 2079 of file ProcessInterface.h.