QChildEvent

PyQt5.QtCore.QChildEvent

Inherits from QEvent.

Description

The QChildEvent class contains event parameters for child object events.

Child events are sent immediately to objects when children are added or removed.

In both cases you can only rely on the child being a QObject (or, if isWidgetType() returns true, a QWidget). This is because in the ChildAdded case the child is not yet fully constructed; in the ChildRemoved case it might have already been destructed.

The handler for these events is childEvent().

Methods

__init__(QChildEvent)

TODO


__init__(Type, QObject)

TODO


added() → bool

TODO


child() → QObject

TODO


polished() → bool

TODO


removed() → bool

TODO