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
- added() → bool
TODO
- child() → QObject
TODO
- polished() → bool
TODO
- removed() → bool
TODO