The PixInsight core application calls mask notification functions to keep interfaces informed about changes and events involving masks of image windows.
For a process interface to receive mask notifications, the corresponding ProcessInterface subclass must reimplement ProcessInterface::WantsMaskNotifications() to return true.
◆ MaskDisabled()
virtual void pcl::ProcessInterface::MaskDisabled |
( |
const View & |
view | ) |
|
|
inlinevirtual |
Notification sent when masking has been disabled for an image window.
- Parameters
-
view | Reference to the main view of an image window for which masking has been disabled. |
- See also
- Mask Notification Functions
Definition at line 1952 of file ProcessInterface.h.
◆ MaskEnabled()
virtual void pcl::ProcessInterface::MaskEnabled |
( |
const View & |
view | ) |
|
|
inlinevirtual |
Notification sent when masking has been enabled for an image window.
- Parameters
-
view | Reference to the main view of an image window for which masking has been enabled. |
- See also
- Mask Notification Functions
Definition at line 1939 of file ProcessInterface.h.
◆ MaskHidden()
virtual void pcl::ProcessInterface::MaskHidden |
( |
const View & |
view | ) |
|
|
inlinevirtual |
Notification sent when mask visibility has been disabled for an image window.
- Parameters
-
view | Reference to the main view of an image window whose mask is now hidden. |
- See also
- Mask Notification Functions
Definition at line 1980 of file ProcessInterface.h.
◆ MaskShown()
virtual void pcl::ProcessInterface::MaskShown |
( |
const View & |
view | ) |
|
|
inlinevirtual |
Notification sent when mask visibility has been enabled for an image window.
- Parameters
-
view | Reference to the main view of an image window whose mask is now visible. |
- See also
- Mask Notification Functions
Definition at line 1966 of file ProcessInterface.h.
◆ MaskUpdated()
virtual void pcl::ProcessInterface::MaskUpdated |
( |
const View & |
view | ) |
|
|
inlinevirtual |
Notification sent when a mask has been selected for (or removed from) an image window.
- Parameters
-
view | Reference to the main view of an image window for which either a new mask has been selected, or an existing mask has been removed. |
- See also
- Mask Notification Functions
Definition at line 1926 of file ProcessInterface.h.