Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QAbstractEventDispatcher Class Referenceabstract

\inmodule QtCore More...

#include <qabstracteventdispatcher.h>

+ Inheritance diagram for QAbstractEventDispatcher:
+ Collaboration diagram for QAbstractEventDispatcher:

Classes

class  TimerInfo
 
class  TimerInfoV2
 \variable QAbstractEventDispatcher::TimerInfo::timerId More...
 

Public Types

using Duration = std::chrono::nanoseconds
 A {std::chrono::duration} type that is used in various API in this class.
 

Signals

void aboutToBlock ()
 This signal is emitted before the event loop calls a function that could block.
 
void awake ()
 This signal is emitted after the event loop returns from a function that could block.
 
- Signals inherited from QObject
void destroyed (QObject *=nullptr)
 This signal is emitted immediately before the object obj is destroyed, after any instances of QPointer have been notified, and cannot be blocked.
 
void objectNameChanged (const QString &objectName, QPrivateSignal)
 This signal is emitted after the object's name has been changed.
 

Public Member Functions

 QAbstractEventDispatcher (QObject *parent=nullptr)
 Constructs a new event dispatcher with the given parent.
 
 ~QAbstractEventDispatcher ()
 Destroys the event dispatcher.
 
virtual bool processEvents (QEventLoop::ProcessEventsFlags flags)=0
 Processes pending events that match flags until there are no more events to process.
 
virtual void registerSocketNotifier (QSocketNotifier *notifier)=0
 Registers notifier with the event loop.
 
virtual void unregisterSocketNotifier (QSocketNotifier *notifier)=0
 Unregisters notifier from the event dispatcher.
 
Qt::TimerId registerTimer (Duration interval, Qt::TimerType timerType, QObject *object)
 
virtual void registerTimer (Qt::TimerId timerId, Duration interval, Qt::TimerType timerType, QObject *object)=0
 
virtual bool unregisterTimer (Qt::TimerId timerId)=0
 
virtual QList< TimerInfoV2timersForObject (QObject *object) const =0
 
virtual Duration remainingTime (Qt::TimerId timerId) const =0
 Returns the remaining time of the timer with the given timerId.
 
virtual bool unregisterTimers (QObject *object)=0
 Unregisters all the timers associated with the given object.
 
virtual void wakeUp ()=0
 \threadsafe
 
virtual void interrupt ()=0
 Interrupts event dispatching.
 
virtual void startingUp ()
 
virtual void closingDown ()
 
void installNativeEventFilter (QAbstractNativeEventFilter *filterObj)
 \variable QAbstractEventDispatcher::TimerInfoV2::timerId
 
void removeNativeEventFilter (QAbstractNativeEventFilter *filterObj)
 Removes the event filter filter from this object.
 
bool filterNativeEvent (const QByteArray &eventType, void *message, qintptr *result)
 Sends message through the event filters that were set by installNativeEventFilter().
 
- Public Member Functions inherited from QObject
Q_INVOKABLE QObject (QObject *parent=nullptr)
 Constructs an object with parent object parent.
 
virtual ~QObject ()
 Destroys the object, deleting all its child objects.
 
virtual bool event (QEvent *event)
 This virtual function receives events to an object and should return true if the event e was recognized and processed.
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 Filters events if this object has been installed as an event filter for the watched object.
 
QString objectName () const
 
Q_WEAK_OVERLOAD void setObjectName (const QString &name)
 Sets the object's name to name.
 
void setObjectName (QAnyStringView name)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
QBindable< QStringbindableObjectName ()
 
bool isWidgetType () const
 Returns true if the object is a widget; otherwise returns false.
 
bool isWindowType () const
 Returns true if the object is a window; otherwise returns false.
 
bool isQuickItemType () const
 Returns true if the object is a QQuickItem; otherwise returns false.
 
bool signalsBlocked () const noexcept
 Returns true if signals are blocked; otherwise returns false.
 
bool blockSignals (bool b) noexcept
 If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it).
 
QThreadthread () const
 Returns the thread in which the object lives.
 
bool moveToThread (QThread *thread QT6_DECL_NEW_OVERLOAD_TAIL)
 Changes the thread affinity for this object and its children and returns true on success.
 
int startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer)
 This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds.
 
int startTimer (std::chrono::nanoseconds time, Qt::TimerType timerType=Qt::CoarseTimer)
 
void killTimer (int id)
 Kills the timer with timer identifier, id.
 
void killTimer (Qt::TimerId id)
 
template<typename T >
findChild (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object.
 
template<typename T >
QList< T > findChildren (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects.
 
template<typename T >
findChild (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
template<typename T >
QList< T > findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
const QObjectListchildren () const
 Returns a list of child objects.
 
void setParent (QObject *parent)
 Makes the object a child of parent.
 
void installEventFilter (QObject *filterObj)
 Installs an event filter filterObj on this object.
 
void removeEventFilter (QObject *obj)
 Removes an event filter object obj from this object.
 
QMetaObject::Connection connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const
 
bool disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const
 
bool disconnect (const QObject *receiver, const char *member=nullptr) const
 
void dumpObjectTree () const
 Dumps a tree of children to the debug output.
 
void dumpObjectInfo () const
 Dumps information about signal connections, etc.
 
bool setProperty (const char *name, const QVariant &value)
 Sets the value of the object's name property to value.
 
bool setProperty (const char *name, QVariant &&value)
 
QVariant property (const char *name) const
 Returns the value of the object's name property.
 
QList< QByteArraydynamicPropertyNames () const
 
QBindingStoragebindingStorage ()
 
const QBindingStoragebindingStorage () const
 
QObjectparent () const
 Returns a pointer to the parent object.
 
bool inherits (const char *classname) const
 Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false.
 

Static Public Member Functions

static QAbstractEventDispatcherinstance (QThread *thread=nullptr)
 Returns a pointer to the event dispatcher object for the specified thread.
 
- Static Public Member Functions inherited from QObject
static QMetaObject::Connection connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection)
 \threadsafe
 
static QMetaObject::Connection connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection)
 
template<typename Func1 , typename Func2 >
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection)
 
template<typename Func1 , typename Func2 >
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot)
 
static bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member)
 \threadsafe
 
static bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member)
 
static bool disconnect (const QMetaObject::Connection &)
 Disconnect a connection.
 
template<typename Func1 , typename Func2 >
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot)
 
template<typename Func1 >
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero)
 

Protected Member Functions

 QAbstractEventDispatcher (QAbstractEventDispatcherPrivate &, QObject *parent)
 
- Protected Member Functions inherited from QObject
QObjectsender () const
 Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr.
 
int senderSignalIndex () const
 
int receivers (const char *signal) const
 Returns the number of receivers connected to the signal.
 
bool isSignalConnected (const QMetaMethod &signal) const
 
virtual void timerEvent (QTimerEvent *event)
 This event handler can be reimplemented in a subclass to receive timer events for the object.
 
virtual void childEvent (QChildEvent *event)
 This event handler can be reimplemented in a subclass to receive child events.
 
virtual void customEvent (QEvent *event)
 This event handler can be reimplemented in a subclass to receive custom events.
 
virtual void connectNotify (const QMetaMethod &signal)
 
virtual void disconnectNotify (const QMetaMethod &signal)
 
 QObject (QObjectPrivate &dd, QObject *parent=nullptr)
 

Additional Inherited Members

- Public Slots inherited from QObject
void deleteLater ()
 \threadsafe
 
- Protected Attributes inherited from QObject
QScopedPointer< QObjectDatad_ptr
 
- Properties inherited from QObject
QString objectName
 the name of this object
 

Detailed Description

\inmodule QtCore

The QAbstractEventDispatcher class provides an interface to manage Qt's event queue.

An event dispatcher receives events from the window system and other sources. It then sends them to the QCoreApplication or QApplication instance for processing and delivery. QAbstractEventDispatcher provides fine-grained control over event delivery.

For simple control of event processing use QCoreApplication::processEvents().

For finer control of the application's event loop, call instance() and call functions on the QAbstractEventDispatcher object that is returned. If you want to use your own instance of QAbstractEventDispatcher or of a QAbstractEventDispatcher subclass, you must install it with QCoreApplication::setEventDispatcher() or QThread::setEventDispatcher() before a default event dispatcher has been installed.

The main event loop is started by calling QCoreApplication::exec(), and stopped by calling QCoreApplication::exit(). Local event loops can be created using QEventLoop.

Programs that perform long operations can call processEvents() with a bitwise OR combination of various QEventLoop::ProcessEventsFlag values to control which events should be delivered.

QAbstractEventDispatcher also allows the integration of an external event loop with the Qt event loop.

See also
QEventLoop, QCoreApplication, QThread

Definition at line 16 of file qabstracteventdispatcher.h.

Member Typedef Documentation

◆ Duration

QAbstractEventDispatcher::Duration = std::chrono::nanoseconds

A {std::chrono::duration} type that is used in various API in this class.

This type exists to facilitate a possible transition to a higher or lower granularity.

In all current platforms, it is nanoseconds.

Definition at line 22 of file qabstracteventdispatcher.h.

Constructor & Destructor Documentation

◆ QAbstractEventDispatcher() [1/2]

QAbstractEventDispatcher::QAbstractEventDispatcher ( QObject * parent = nullptr)
explicit

Constructs a new event dispatcher with the given parent.

Definition at line 163 of file qabstracteventdispatcher.cpp.

◆ ~QAbstractEventDispatcher()

QAbstractEventDispatcher::~QAbstractEventDispatcher ( )

Destroys the event dispatcher.

Definition at line 176 of file qabstracteventdispatcher.cpp.

◆ QAbstractEventDispatcher() [2/2]

QAbstractEventDispatcher::QAbstractEventDispatcher ( QAbstractEventDispatcherPrivate & dd,
QObject * parent )
protected

Definition at line 169 of file qabstracteventdispatcher.cpp.

Member Function Documentation

◆ aboutToBlock

void QAbstractEventDispatcher::aboutToBlock ( )
signal

This signal is emitted before the event loop calls a function that could block.

See also
awake()

Referenced by QEventDispatcherGlib::processEvents(), QEventDispatcherUNIX::processEvents(), and QEventDispatcherWin32::processEvents().

+ Here is the caller graph for this function:

◆ awake

void QAbstractEventDispatcher::awake ( )
signal

This signal is emitted after the event loop returns from a function that could block.

See also
wakeUp(), aboutToBlock()

Referenced by QCocoaEventDispatcher::processEvents(), QEventDispatcherGlib::processEvents(), QEventDispatcherUNIX::processEvents(), QEventDispatcherWasm::processEvents(), and QEventDispatcherWin32::processEvents().

+ Here is the caller graph for this function:

◆ closingDown()

void QAbstractEventDispatcher::closingDown ( )
virtual

Reimplemented in QEventDispatcherWin32.

Definition at line 406 of file qabstracteventdispatcher.cpp.

◆ filterNativeEvent()

bool QAbstractEventDispatcher::filterNativeEvent ( const QByteArray & eventType,
void * message,
qintptr * result )

Sends message through the event filters that were set by installNativeEventFilter().

This function returns true as soon as an event filter returns true, and false otherwise to indicate that the processing of the event should continue.

Subclasses of QAbstractEventDispatcher must call this function for all messages received from the system to ensure compatibility with any extensions that may be used in the application. The type of event eventType is specific to the platform plugin chosen at run-time, and can be used to cast message to the right type. The result pointer is only used on Windows, and corresponds to the LRESULT pointer.

Note that the type of message is platform dependent. See QAbstractNativeEventFilter for details.

See also
installNativeEventFilter(), QAbstractNativeEventFilter::nativeEventFilter()
Since
5.0

Definition at line 553 of file qabstracteventdispatcher.cpp.

References d, and i.

Referenced by QXcbConnection::handleXcbError(), QXcbGlxIntegration::handleXcbEvent(), QCocoaEventDispatcher::processEvents(), and QEventDispatcherWin32::processEvents().

+ Here is the caller graph for this function:

◆ installNativeEventFilter()

void QAbstractEventDispatcher::installNativeEventFilter ( QAbstractNativeEventFilter * filterObj)

\variable QAbstractEventDispatcher::TimerInfoV2::timerId

The timer's unique id. This is created by registerTimer() upon creation and uniquely identifies a timer while it is active. It is also used by QTimer::id() and returned by QObject::startTimer().

\variable QAbstractEventDispatcher::TimerInfoV2::interval

The timer's interval.

\variable QAbstractEventDispatcher::TimerInfoV2::timerType

The timer's type

See also
Qt::TimerType

Installs an event filter filterObj for all native events received by the application.

The event filter filterObj receives events via its \l {QAbstractNativeEventFilter::}{nativeEventFilter()} function, which is called for all events received by all threads.

The \l {QAbstractNativeEventFilter::}{nativeEventFilter()} function should return true if the event should be filtered, (in this case, stopped). It should return false to allow normal Qt processing to continue: the native event can then be translated into a QEvent and handled by the standard Qt \l{QEvent} {event} filtering, e.g. QObject::installEventFilter().

If multiple event filters are installed, the filter that was installed last is activated first.

Note
The filter function set here receives native messages, that is, MSG or XEvent structs.

For maximum portability, you should always try to use QEvent objects and QObject::installEventFilter() whenever possible.

See also
QObject::installEventFilter()
Since
5.0

Definition at line 500 of file qabstracteventdispatcher.cpp.

References d.

◆ instance()

QAbstractEventDispatcher * QAbstractEventDispatcher::instance ( QThread * thread = nullptr)
static

Returns a pointer to the event dispatcher object for the specified thread.

If thread is \nullptr, the current thread is used. If no event dispatcher exists for the specified thread, this function returns \nullptr.

{Note:} If Qt is built without thread support, the thread argument is ignored.

Definition at line 188 of file qabstracteventdispatcher.cpp.

References QThreadData::current(), QThreadData::get2(), and QObject::thread().

Referenced by QWindowsFileSystemWatcherEngine::QWindowsFileSystemWatcherEngine(), QAbstractNativeEventFilter::~QAbstractNativeEventFilter(), QXcbConnection::handleXcbError(), QXcbConnection::handleXcbEvent(), QXcbGlxIntegration::handleXcbEvent(), QCoreApplication::installNativeEventFilter(), QChronoTimer::remainingTime(), QTimer::remainingTime(), QCoreApplication::removeNativeEventFilter(), QEventDispatcherWasm::socketSelect(), QBenchmarkEvent::start(), QBasicTimer::start(), QBasicTimer::stop(), and QBenchmarkEvent::stop().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ interrupt()

void QAbstractEventDispatcher::interrupt ( )
pure virtual

Interrupts event dispatching.

The event dispatcher will return from processEvents() as soon as possible.

Implemented in QCocoaEventDispatcher, QEventDispatcherGlib, QEventDispatcherUNIX, QEventDispatcherCoreFoundation, QEventDispatcherWasm, and QEventDispatcherWin32.

◆ processEvents()

bool QAbstractEventDispatcher::processEvents ( QEventLoop::ProcessEventsFlags flags)
pure virtual

Processes pending events that match flags until there are no more events to process.

Returns true if an event was processed; otherwise returns false.

This function is especially useful if you have a long running operation, and want to show its progress without allowing user input by using the QEventLoop::ExcludeUserInputEvents flag.

If the QEventLoop::WaitForMoreEvents flag is set in flags, the behavior of this function is as follows:

\list

  • If events are available, this function returns after processing them.
  • If no events are available, this function will wait until more are available and return after processing newly available events.

\endlist

If the QEventLoop::WaitForMoreEvents flag is not set in flags, and no events are available, this function will return immediately.

{Note:} This function does not process events continuously; it returns after all available events are processed.

Implemented in QCocoaEventDispatcher, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, QEventDispatcherWasm, QEventDispatcherWin32, QPAEventDispatcherGlib, QUnixEventDispatcherQPA, QWindowsGuiEventDispatcher, QAndroidEventDispatcher, QIOSJumpingEventDispatcher, and QXcbUnixEventDispatcher.

◆ registerSocketNotifier()

void QAbstractEventDispatcher::registerSocketNotifier ( QSocketNotifier * notifier)
pure virtual

Registers notifier with the event loop.

Note
processEvents() only processes events queued before the function is called. Events that are posted while the function runs will be queued until a later round of event processing. This only applies to posted Qt events. For timers and system level events, the situation is unknown.

Subclasses must implement this method to tie a socket notifier into another event loop.

Implemented in QCocoaEventDispatcher, QEventDispatcherUNIX, QEventDispatcherCoreFoundation, QEventDispatcherWasm, QEventDispatcherWin32, and QEventDispatcherGlib.

◆ registerTimer() [1/2]

Qt::TimerId QAbstractEventDispatcher::registerTimer ( Duration interval,
Qt::TimerType timerType,
QObject * object )
Since
6.8 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Registers a timer with the specified interval and timerType for the given object and returns the timer id.

Definition at line 269 of file qabstracteventdispatcher.cpp.

References QAbstractEventDispatcherPrivate::allocateTimerId(), qToUnderlying(), and registerTimer().

Referenced by QObject::event(), registerTimer(), and QBasicTimer::start().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ registerTimer() [2/2]

void QAbstractEventDispatcher::registerTimer ( Qt::TimerId timerId,
Duration interval,
Qt::TimerType timerType,
QObject * object )
pure virtual
Since
6.8

Register a timer with the specified timerId, interval, and timerType for the given object.

See also
unregisterTimer(), timersForObject()

Implemented in QCocoaEventDispatcher, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, and QEventDispatcherWasm.

◆ remainingTime()

QAbstractEventDispatcher::remainingTime ( Qt::TimerId timerId) const
pure virtual

Returns the remaining time of the timer with the given timerId.

If the timer is inactive, the returned value will be negative. If the timer is overdue, the returned value will be 0.

See also
Qt::TimerType, registerTimer(), unregisterTimer()

Implemented in QCocoaEventDispatcher, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, and QEventDispatcherWasm.

◆ removeNativeEventFilter()

void QAbstractEventDispatcher::removeNativeEventFilter ( QAbstractNativeEventFilter * filter)

Removes the event filter filter from this object.

The request is ignored if such an event filter has not been installed.

All event filters for this object are automatically removed when this object is destroyed.

It is always safe to remove an event filter, even during event filter filter activation (that is, even from within the \l {QAbstractNativeEventFilter::}{nativeEventFilter()} function).

See also
installNativeEventFilter(), QAbstractNativeEventFilter
Since
5.0

Definition at line 523 of file qabstracteventdispatcher.cpp.

References d, and i.

Referenced by QAbstractNativeEventFilter::~QAbstractNativeEventFilter().

+ Here is the caller graph for this function:

◆ startingUp()

void QAbstractEventDispatcher::startingUp ( )
virtual

Reimplemented in QEventDispatcherCoreFoundation, and QEventDispatcherWin32.

Definition at line 400 of file qabstracteventdispatcher.cpp.

◆ timersForObject()

QList< TimerInfoV2 > QAbstractEventDispatcher::timersForObject ( QObject * object) const
pure virtual
Since
6.8

Returns a list of registered timers for object. The TimerInfoV2 struct has timerId, interval, and timerType members.

See also
Qt::TimerType, registerTimer(), unregisterTimer()

Implemented in QCocoaEventDispatcher, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, and QEventDispatcherWasm.

Referenced by QObject::event().

+ Here is the caller graph for this function:

◆ unregisterSocketNotifier()

void QAbstractEventDispatcher::unregisterSocketNotifier ( QSocketNotifier * notifier)
pure virtual

Unregisters notifier from the event dispatcher.

Subclasses must reimplement this method to tie a socket notifier into another event loop. Reimplementations must call the base implementation.

Implemented in QCocoaEventDispatcher, QEventDispatcherUNIX, QEventDispatcherCoreFoundation, QEventDispatcherWasm, QEventDispatcherWin32, and QEventDispatcherGlib.

◆ unregisterTimer()

bool QAbstractEventDispatcher::unregisterTimer ( Qt::TimerId timerId)
pure virtual
Since
6.8

Unregisters the timer with the given timerId. Returns true if successful; otherwise returns false.

See also
registerTimer(), unregisterTimers()

Implemented in QCocoaEventDispatcher, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, and QEventDispatcherWasm.

Referenced by QBasicTimer::stop().

+ Here is the caller graph for this function:

◆ unregisterTimers()

bool QAbstractEventDispatcher::unregisterTimers ( QObject * object)
pure virtual

Unregisters all the timers associated with the given object.

Returns true if all timers were successfully removed; otherwise returns false.

See also
unregisterTimer(), registeredTimers()

Implemented in QCocoaEventDispatcher, QEventDispatcherWin32, QEventDispatcherCoreFoundation, QEventDispatcherGlib, QEventDispatcherUNIX, and QEventDispatcherWasm.

Referenced by QObject::event().

+ Here is the caller graph for this function:

◆ wakeUp()

void QAbstractEventDispatcher::wakeUp ( )
pure virtual

\threadsafe

Wakes up the event loop.

\omit

FIXME - QTBUG-70229

On Unix and Glib event dispatchers, if the dispatcher is already awake when this function is called, it is ensured that the current iteration won't block waiting for more events, but will instead do another event loop iteration.

TODO - does other event dispatchers behave the same?

\endomit

See also
awake()

Implemented in QCocoaEventDispatcher, QEventDispatcherGlib, QEventDispatcherCoreFoundation, QEventDispatcherUNIX, QEventDispatcherWasm, and QEventDispatcherWin32.

Referenced by QCoreApplication::postEvent().

+ Here is the caller graph for this function:

The documentation for this class was generated from the following files: