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

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

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

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The QAbstractEventDispatcher class manages Qt's event queue, excluding GUI-related events. More...

 #include <QAbstractEventDispatcher>

Inherits QObject.

[править] Открытые типы

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

  • 29 открытых функций унаследованных от QObject

[править] Сигналы

  • 1 сигнал унаследованный от QObject

[править] Статические открытые члены

  • QAbstractEventDispatcher * instance ( QThread * thread = 0 )
  • 5 статических открытых члена унаследованных от QObject

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

  • 1 свойство унаследованное от QObject
  • 1 открытый слот унаследованный от QObject
  • 7 защищенных функций унаследованных от QObject

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

The QAbstractEventDispatcher class manages Qt's event queue, excluding GUI-related events.

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 create your instance before you create the QApplication object.

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. For example, the Motif Extension included with Qt includes a reimplementation of QAbstractEventDispatcher that merges Qt and Motif events together.

See also QEventLoop and QCoreApplication.


[править] Описание типов членов

[править]
typedef QAbstractEventDispatcher::EventFilter

Typedef for a function with the signature

 bool myEventFilter(void *message);

See also setEventFilter() and filterEvent().

[править]
typedef QAbstractEventDispatcher::TimerInfo

Typedef for QPair<int, int>. The first component of the pair is the timer ID; the second component is the interval.

See also registeredTimers().


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

[править]
QAbstractEventDispatcher::QAbstractEventDispatcher ( QObject * parent = 0 )

Constructs a new event dispatcher with the given parent.

[править]
QAbstractEventDispatcher::~QAbstractEventDispatcher ()

Destroys the event dispatcher.

[править]
void QAbstractEventDispatcher::aboutToBlock () [signal]

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

See also awake().

[править]
void QAbstractEventDispatcher::awake () [signal]

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

See also wakeUp() and aboutToBlock().

[править]
bool QAbstractEventDispatcher::filterEvent ( void * message )

Sends message through the event filter that was set by setEventFilter(). If no event filter has been set, this function returns false; otherwise, this function returns the result of the event filter function.

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.

See also setEventFilter().

[править]
void QAbstractEventDispatcher::flush () [pure virtual]

Flushes the event queue. This normally returns almost immediately. Does nothing on platforms other than X11.

[править]
bool QAbstractEventDispatcher::hasPendingEvents () [pure virtual]

Returns true if there is an event waiting; otherwise returns false.

[править]
QAbstractEventDispatcher * QAbstractEventDispatcher::instance ( QThread * thread = 0 ) [static]

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.

[править]
void QAbstractEventDispatcher::interrupt () [pure virtual]

Interrupts event dispatching; i.e. the event dispatcher will return from processEvents() as soon as possible.

[править]
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; i.e. by using the QEventLoop::ExcludeUserInputEvents flag.

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

  • 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.

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.

See also hasPendingEvents().

[править]
void QAbstractEventDispatcher::registerSocketNotifier ( QSocketNotifier * notifier ) [pure virtual]

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

[править]
int QAbstractEventDispatcher::registerTimer ( int interval, QObject * object )

Registers a timer with the specified interval for the given object.

[править]
void QAbstractEventDispatcher::registerTimer ( int timerId, int interval, QObject * object ) [pure virtual]

This is an overloaded member function, provided for convenience.

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

[править]
QList< TimerInfo> QAbstractEventDispatcher::registeredTimers ( QObject * object ) const [pure virtual]

Returns a list of registered timers for object. The timer ID is the first member in each pair; the interval is the second.

[править]
EventFilter QAbstractEventDispatcher::setEventFilter ( EventFilter filter )

Sets the event filter filter. Returns a pointer to the filter function previously defined.

The event filter is a function that receives all messages taken from the system event loop before the event is dispatched to the respective target. This includes messages that are not sent to Qt objects.

The function can return true to stop the event to be processed by Qt, or false to continue with the standard event processing.

Only one filter can be defined, but the filter can use the return value to call the previously set event filter. By default, no filter is set (i.e. the function returns 0).

[править]
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.

[править]
bool QAbstractEventDispatcher::unregisterTimer ( int timerId ) [pure virtual]

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

See also registerTimer() and unregisterTimers().

[править]
bool QAbstractEventDispatcher::unregisterTimers ( QObject * object ) [pure virtual]

Unregisters all the timers associated with the given object. Returns true if all timers were successful removed; otherwise returns false.

See also unregisterTimer() and registeredTimers().

[править]
void QAbstractEventDispatcher::wakeUp () [pure virtual]

Wakes up the event loop.

Note: This function is thread-safe.

See also awake().


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2