Struct qt_widgets::undo_group::connection::CleanChanged
source · pub struct CleanChanged<'a>(_);Expand description
Represents a built-in Qt signal QUndoGroup::cleanChanged.
An object of this type can be created from UndoGroup with object.signals().clean_changed() and used for creating Qt connections using qt_core::connection API. After the connection is made, the object can (should) be dropped. The connection will remain active until sender or receiver are destroyed or until a manual disconnection is made.
An object of this type contains a reference to the original UndoGroup object.
Trait Implementations§
source§impl<'a> Receiver for CleanChanged<'a>
impl<'a> Receiver for CleanChanged<'a>
source§impl<'a> Signal for CleanChanged<'a>
impl<'a> Signal for CleanChanged<'a>
source§fn connect<A, R>(&self, receiver: &R) -> Connectionwhere
R: Receiver<Arguments = A>,
Self::Arguments: ArgumentsCompatible<A>,
fn connect<A, R>(&self, receiver: &R) -> Connectionwhere
R: Receiver<Arguments = A>,
Self::Arguments: ArgumentsCompatible<A>,
Connects this signal to another signal or slot with compatible arguments.