Struct qt_widgets::main_window::connection::SetWindowModified
source · pub struct SetWindowModified<'a>(_);
Expand description
Represents a built-in Qt slot QMainWindow::setWindowModified
.
An object of this type can be created from MainWindow
with object.slots().set_window_modified()
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 MainWindow
object.