Qt:Документация 4.3.2/qchildevent

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QChildEvent Class Reference
[модуль QtCore ]

The QChildEvent class contains event parameters for child object events. Далее...

 #include <QChildEvent>

Inherits QEvent.

[править] Открытые функции

  • 6 public functions inherited from QEvent

[править] Дополнительные унаследованные члены


[править] Подробное описание

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().


[править] Описание функций-членов

[править]
QChildEvent::QChildEvent ( Type type, QObject * child )

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

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

See also child().

[править]
bool QChildEvent::added () const

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

[править]
QObject * QChildEvent::child () const

Returns the child object that was added or removed.

[править]
bool QChildEvent::polished () const

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

[править]
bool QChildEvent::removed () const

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



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2