QAbstractEventDispatcher¶

PyQt5.QtCore.QAbstractEventDispatcher

Inherits from QObject.

Description¶

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 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 exec(), and stopped by calling exit(). Local event loops can be created using QEventLoop.

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

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

Classes¶

TimerInfo

Methods¶

__init__(parent: QObject = None)

Constructs a new event dispatcher with the given parent.


closingDown()

TODO


filterNativeEvent(Union[QByteArray, bytes, bytearray], sip.voidptr) → (bool, int)

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.


flush()

TODO


hasPendingEvents() → bool

TODO


installNativeEventFilter(QAbstractNativeEventFilter)

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

The event filter filterObj receives events via its nativeEventFilter() function, which is called for all events received by all threads.

The 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 QEvent filtering, e.g. 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 installEventFilter() whenever possible.


@staticmethod
instance(thread: QThread = None) → QAbstractEventDispatcher

Returns a pointer to the event dispatcher object for the specified thread. If thread is zero, the current thread is used. If no event dispatcher exists for the specified thread, this function returns 0.

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


interrupt()

TODO


processEvents(Union[ProcessEventsFlags, ProcessEventsFlag]) → bool

TODO


registeredTimers(QObject) → List[TimerInfo]

TODO


registerEventNotifier(QWinEventNotifier) → bool

TODO


registerSocketNotifier(QSocketNotifier)

TODO


registerTimer(int, TimerType, QObject) → int

TODO


registerTimer(int, int, TimerType, QObject)

TODO


remainingTime(int) → int

TODO


removeNativeEventFilter(QAbstractNativeEventFilter)

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


startingUp()

TODO


unregisterEventNotifier(QWinEventNotifier)

TODO


unregisterSocketNotifier(QSocketNotifier)

TODO


unregisterTimer(int) → bool

TODO


unregisterTimers(QObject) → bool

TODO


wakeUp()

TODO

Signals¶

aboutToBlock()

TODO


awake()

TODO