PCL
View Property Notification Functions

The PixInsight core application calls view property notification functions to keep interfaces informed about changes and events involving view properties. More...

Functions

virtual void pcl::ProcessInterface::ViewPropertyDeleted (const View &view, const IsoString &property)
 
virtual void pcl::ProcessInterface::ViewPropertyUpdated (const View &view, const IsoString &property)
 

Detailed Description

For a process interface to receive view property notifications, the corresponding ProcessInterface subclass must reimplement ProcessInterface::WantsViewPropertyNotifications() to return true.

Function Documentation

◆ ViewPropertyDeleted()

virtual void pcl::ProcessInterface::ViewPropertyDeleted ( const View view,
const IsoString property 
)
inlinevirtual

Notification sent when a view property has been deleted.

Parameters
viewReference to a view where a property has been deleted.
propertyIdentifier of the view property that has been deleted.
See also
View Property Notification Functions

Definition at line 2093 of file ProcessInterface.h.

◆ 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
viewReference to a view where a new property has been created, or an existing property has been modified.
propertyIdentifier of the view property that has been created or modified.
See also
View Property Notification Functions

Definition at line 2079 of file ProcessInterface.h.