[][src]Struct qt_core::QChildEvent

#[repr(C)]
pub struct QChildEvent { /* fields omitted */ }

The QChildEvent class contains event parameters for child object events.

C++ class: QChildEvent.

C++ documentation:

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 QObject::isWidgetType() returns true, a QWidget). This is because in the QEvent::ChildAdded case the child is not yet fully constructed; in the QEvent::ChildRemoved case it might have already been destructed.

The handler for these events is QObject::childEvent().

Methods

impl QChildEvent[src]

pub unsafe fn added(&self) -> bool[src]

Returns true if type() is QEvent::ChildAdded; otherwise returns false.

Calls C++ function: bool QChildEvent::added() const.

C++ documentation:

Returns true if type() is QEvent::ChildAdded; otherwise returns false.

pub unsafe fn child(&self) -> QMutPtr<QObject>[src]

Returns the child object that was added or removed.

Calls C++ function: QObject* QChildEvent::child() const.

C++ documentation:

Returns the child object that was added or removed.

pub unsafe fn copy_from(
    &mut self,
    other: impl CastInto<Ref<QChildEvent>>
) -> MutRef<QChildEvent>
[src]

The QChildEvent class contains event parameters for child object events.

Calls C++ function: QChildEvent& QChildEvent::operator=(const QChildEvent& other).

C++ documentation:

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 QObject::isWidgetType() returns true, a QWidget). This is because in the QEvent::ChildAdded case the child is not yet fully constructed; in the QEvent::ChildRemoved case it might have already been destructed.

The handler for these events is QObject::childEvent().

pub unsafe fn new(
    type_: Type,
    child: impl CastInto<MutPtr<QObject>>
) -> CppBox<QChildEvent>
[src]

Constructs a child event object of a particular type for the child.

Calls C++ function: [constructor] void QChildEvent::QChildEvent(QEvent::Type type, QObject* child).

C++ documentation:

Constructs a child event object of a particular type for the child.

type can be QEvent::ChildAdded, QEvent::ChildRemoved, or QEvent::ChildPolished.

See also child().

pub unsafe fn new_copy(
    other: impl CastInto<Ref<QChildEvent>>
) -> CppBox<QChildEvent>
[src]

The QChildEvent class contains event parameters for child object events.

Calls C++ function: [constructor] void QChildEvent::QChildEvent(const QChildEvent& other).

C++ documentation:

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 QObject::isWidgetType() returns true, a QWidget). This is because in the QEvent::ChildAdded case the child is not yet fully constructed; in the QEvent::ChildRemoved case it might have already been destructed.

The handler for these events is QObject::childEvent().

pub unsafe fn polished(&self) -> bool[src]

Returns true if type() is QEvent::ChildPolished; otherwise returns false.

Calls C++ function: bool QChildEvent::polished() const.

C++ documentation:

Returns true if type() is QEvent::ChildPolished; otherwise returns false.

pub unsafe fn removed(&self) -> bool[src]

Returns true if type() is QEvent::ChildRemoved; otherwise returns false.

Calls C++ function: bool QChildEvent::removed() const.

C++ documentation:

Returns true if type() is QEvent::ChildRemoved; otherwise returns false.

Methods from Deref<Target = QEvent>

pub unsafe fn accept(&mut self)[src]

Sets the accept flag of the event object, the equivalent of calling setAccepted(true).

Calls C++ function: void QEvent::accept().

C++ documentation:

Sets the accept flag of the event object, the equivalent of calling setAccepted(true).

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget.

See also ignore().

pub unsafe fn copy_from(
    &mut self,
    other: impl CastInto<Ref<QEvent>>
) -> MutRef<QEvent>
[src]

Calls C++ function: QEvent& QEvent::operator=(const QEvent& other).

pub unsafe fn ignore(&mut self)[src]

Clears the accept flag parameter of the event object, the equivalent of calling setAccepted(false).

Calls C++ function: void QEvent::ignore().

C++ documentation:

Clears the accept flag parameter of the event object, the equivalent of calling setAccepted(false).

Clearing the accept parameter indicates that the event receiver does not want the event. Unwanted events might be propagated to the parent widget.

See also accept().

pub unsafe fn is_accepted(&self) -> bool[src]

the accept flag of the event object

Calls C++ function: bool QEvent::isAccepted() const.

C++ documentation:

the accept flag of the event object

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget. By default, isAccepted() is set to true, but don't rely on this as subclasses may choose to clear it in their constructor.

For convenience, the accept flag can also be set with accept(), and cleared with ignore().

Access functions:

bool isAccepted() const
void setAccepted(bool accepted)

pub unsafe fn set_accepted(&mut self, accepted: bool)[src]

the accept flag of the event object

Calls C++ function: void QEvent::setAccepted(bool accepted).

C++ documentation:

the accept flag of the event object

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget. By default, isAccepted() is set to true, but don't rely on this as subclasses may choose to clear it in their constructor.

For convenience, the accept flag can also be set with accept(), and cleared with ignore().

Access functions:

bool isAccepted() const
void setAccepted(bool accepted)

pub unsafe fn spontaneous(&self) -> bool[src]

Returns true if the event originated outside the application (a system event); otherwise returns false.

Calls C++ function: bool QEvent::spontaneous() const.

C++ documentation:

Returns true if the event originated outside the application (a system event); otherwise returns false.

The return value of this function is not defined for paint events.

pub unsafe fn type_(&self) -> Type[src]

Returns the event type.

Calls C++ function: QEvent::Type QEvent::type() const.

C++ documentation:

Returns the event type.

Trait Implementations

impl CppDeletable for QChildEvent[src]

unsafe fn delete(&mut self)[src]

Calls C++ function: virtual [destructor] void QChildEvent::~QChildEvent().

impl Deref for QChildEvent[src]

type Target = QEvent

The resulting type after dereferencing.

fn deref(&self) -> &QEvent[src]

Calls C++ function: QEvent* static_cast<QEvent*>(QChildEvent* ptr).

impl DerefMut for QChildEvent[src]

fn deref_mut(&mut self) -> &mut QEvent[src]

Calls C++ function: QEvent* static_cast<QEvent*>(QChildEvent* ptr).

impl DynamicCast<QChildEvent> for QEvent[src]

unsafe fn dynamic_cast(ptr: Ptr<QEvent>) -> Ptr<QChildEvent>[src]

Calls C++ function: QChildEvent* dynamic_cast<QChildEvent*>(QEvent* ptr).

unsafe fn dynamic_cast_mut(ptr: MutPtr<QEvent>) -> MutPtr<QChildEvent>[src]

Calls C++ function: QChildEvent* dynamic_cast<QChildEvent*>(QEvent* ptr).

impl StaticDowncast<QChildEvent> for QEvent[src]

unsafe fn static_downcast(ptr: Ptr<QEvent>) -> Ptr<QChildEvent>[src]

Calls C++ function: QChildEvent* static_cast<QChildEvent*>(QEvent* ptr).

unsafe fn static_downcast_mut(ptr: MutPtr<QEvent>) -> MutPtr<QChildEvent>[src]

Calls C++ function: QChildEvent* static_cast<QChildEvent*>(QEvent* ptr).

impl StaticUpcast<QEvent> for QChildEvent[src]

unsafe fn static_upcast(ptr: Ptr<QChildEvent>) -> Ptr<QEvent>[src]

Calls C++ function: QEvent* static_cast<QEvent*>(QChildEvent* ptr).

unsafe fn static_upcast_mut(ptr: MutPtr<QChildEvent>) -> MutPtr<QEvent>[src]

Calls C++ function: QEvent* static_cast<QEvent*>(QChildEvent* ptr).

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.