Make QWinEventNotifier part of the public API

QWinEventNotifier is an essential class if you're using native Windows
Overlapped IO and need to convert it to Qt signals. However the header
is marked private.

Task-number: QTBUG-68

Change-Id: I22e9a84da97f969ddb82e9ba15e604a01abd80d0
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
This commit is contained in:
Debao Zhang 2011-11-28 01:00:38 +08:00 committed by Qt by Nokia
parent 53a420a4d1
commit 7f64c3ddc8
9 changed files with 109 additions and 22 deletions

View File

@ -94,7 +94,7 @@ QT_END_NAMESPACE
#include <qtimer.h> #include <qtimer.h>
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
#include <private/qwineventnotifier_p.h> #include <qwineventnotifier.h>
#endif #endif
#ifdef Q_OS_SYMBIAN #ifdef Q_OS_SYMBIAN

View File

@ -51,7 +51,7 @@
#include <qthread.h> #include <qthread.h>
#include <qmutex.h> #include <qmutex.h>
#include <qwaitcondition.h> #include <qwaitcondition.h>
#include <private/qwineventnotifier_p.h> #include <qwineventnotifier.h>
#include <private/qthread_p.h> #include <private/qthread_p.h>
#include <qdebug.h> #include <qdebug.h>

View File

@ -69,12 +69,12 @@ win32 {
SOURCES += \ SOURCES += \
kernel/qeventdispatcher_win.cpp \ kernel/qeventdispatcher_win.cpp \
kernel/qcoreapplication_win.cpp \ kernel/qcoreapplication_win.cpp \
kernel/qwineventnotifier_p.cpp \ kernel/qwineventnotifier.cpp \
kernel/qsharedmemory_win.cpp \ kernel/qsharedmemory_win.cpp \
kernel/qsystemsemaphore_win.cpp kernel/qsystemsemaphore_win.cpp
HEADERS += \ HEADERS += \
kernel/qeventdispatcher_win_p.h \ kernel/qeventdispatcher_win_p.h \
kernel/qwineventnotifier_p.h kernel/qwineventnotifier.h
} }

View File

@ -48,7 +48,7 @@
#include "qset.h" #include "qset.h"
#include "qsocketnotifier.h" #include "qsocketnotifier.h"
#include "qvarlengtharray.h" #include "qvarlengtharray.h"
#include "qwineventnotifier_p.h" #include "qwineventnotifier.h"
#include "qcoreapplication_p.h" #include "qcoreapplication_p.h"
#include <private/qthread_p.h> #include <private/qthread_p.h>

View File

@ -39,7 +39,7 @@
** **
****************************************************************************/ ****************************************************************************/
#include "qwineventnotifier_p.h" #include "qwineventnotifier.h"
#include "qeventdispatcher_win_p.h" #include "qeventdispatcher_win_p.h"
#include "qcoreapplication.h" #include "qcoreapplication.h"
@ -58,13 +58,64 @@ QT_BEGIN_NAMESPACE
that event becomes signalled. The state of the event is not modified that event becomes signalled. The state of the event is not modified
in the process so if it is a manual reset event you will need to in the process so if it is a manual reset event you will need to
reset it after the notification. reset it after the notification.
Once you have created a event object using Windows API such as
CreateEvent() or OpenEvent(), you can create an event notifier to
monitor the event handle. If the event notifier is enabled, it will
emit the activated() signal whenever the corresponding event object
is signalled.
The setEnabled() function allows you to disable as well as enable the
event notifier. It is generally advisable to explicitly enable or
disable the event notifier. A disabled notifier does nothing when the
event object is signalled(the same effect as not creating the
event notifier). Use the isEnabled() function to determine the
notifier's current status.
Finally, you can use the setHandle() function to register a new event
object, and the handle() function to retrieve the event handle.
\bold{Further information:}
Although the class is called QWinEventNotifier, it can be used for
certain other objects which are so-called synchronization
objects, such as Processes, Threads, Waitable timers.
\warning This Class is only available on Windows.
*/ */
/*!
\fn void QWinEventNotifier::activated(HANDLE hEvent)
This signal is emitted whenever the event notifier is enabled and
the corresponding HANDLE is signalled.
The state of the event is not modified in the process, so if it is a
manual reset event, you will need to reset it after the notification.
The object is passed in the \a hEvent parameter.
\sa handle()
*/
/*!
Constructs an event notifier with the given \a parent.
*/
QWinEventNotifier::QWinEventNotifier(QObject *parent) QWinEventNotifier::QWinEventNotifier(QObject *parent)
: QObject(parent), handleToEvent(0), enabled(false) : QObject(parent), handleToEvent(0), enabled(false)
{} {}
/*!
Constructs an event notifier with the given \a parent. It enables
the \a notifier, and watches for the event \a hEvent.
The notifier is enabled by default, i.e. it emits the activated() signal
whenever the corresponding event is signalled. However, it is generally
advisable to explicitly enable or disable the event notifier.
\sa setEnabled(), isEnabled()
*/
QWinEventNotifier::QWinEventNotifier(HANDLE hEvent, QObject *parent) QWinEventNotifier::QWinEventNotifier(HANDLE hEvent, QObject *parent)
: QObject(parent), handleToEvent(hEvent), enabled(false) : QObject(parent), handleToEvent(hEvent), enabled(false)
{ {
@ -76,27 +127,60 @@ QWinEventNotifier::QWinEventNotifier(HANDLE hEvent, QObject *parent)
enabled = true; enabled = true;
} }
/*!
Destroys this notifier.
*/
QWinEventNotifier::~QWinEventNotifier() QWinEventNotifier::~QWinEventNotifier()
{ {
setEnabled(false); setEnabled(false);
} }
/*!
Register the HANDLE \a hEvent. The old HANDLE will be automatically
unregistered.
\bold Note: The notifier will be disabled as a side effect and needs
to be re-enabled.
\sa handle(), setEnabled()
*/
void QWinEventNotifier::setHandle(HANDLE hEvent) void QWinEventNotifier::setHandle(HANDLE hEvent)
{ {
setEnabled(false); setEnabled(false);
handleToEvent = hEvent; handleToEvent = hEvent;
} }
/*!
Returns the HANDLE that has been registered in the notifier.
\sa setHandle()
*/
HANDLE QWinEventNotifier::handle() const HANDLE QWinEventNotifier::handle() const
{ {
return handleToEvent; return handleToEvent;
} }
/*!
Returns true if the notifier is enabled; otherwise returns false.
\sa setEnabled()
*/
bool QWinEventNotifier::isEnabled() const bool QWinEventNotifier::isEnabled() const
{ {
return enabled; return enabled;
} }
/*!
If \a enable is true, the notifier is enabled; otherwise the notifier
is disabled.
\sa isEnabled(), activated()
*/
void QWinEventNotifier::setEnabled(bool enable) void QWinEventNotifier::setEnabled(bool enable)
{ {
if (enabled == enable) // no change if (enabled == enable) // no change
@ -114,6 +198,9 @@ void QWinEventNotifier::setEnabled(bool enable)
eventDispatcher->unregisterEventNotifier(this); eventDispatcher->unregisterEventNotifier(this);
} }
/*!\reimp
*/
bool QWinEventNotifier::event(QEvent * e) bool QWinEventNotifier::event(QEvent * e)
{ {
if (e->type() == QEvent::ThreadChange) { if (e->type() == QEvent::ThreadChange) {

View File

@ -39,25 +39,23 @@
** **
****************************************************************************/ ****************************************************************************/
#ifndef QWINEVENTNOTIFIER_P_H #ifndef QWINEVENTNOTIFIER_H
#define QWINEVENTNOTIFIER_P_H #define QWINEVENTNOTIFIER_H
// #if 0
// W A R N I N G // inform syncqt
// ------------- #pragma qt_no_master_include
// #endif
// This file is not part of the Qt API. It exists for the convenience
// of other Qt classes. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include "QtCore/qobject.h" #include "QtCore/qobject.h"
#include "QtCore/qt_windows.h" #include "QtCore/qt_windows.h"
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
QT_MODULE(Core)
class Q_CORE_EXPORT QWinEventNotifier : public QObject class Q_CORE_EXPORT QWinEventNotifier : public QObject
{ {
Q_OBJECT Q_OBJECT
@ -91,4 +89,6 @@ private:
QT_END_NAMESPACE QT_END_NAMESPACE
#endif // QWINEVENTNOTIFIER_P_H QT_END_HEADER
#endif // QWINEVENTNOTIFIER_H

View File

@ -63,7 +63,7 @@
# include <qtcpserver.h> # include <qtcpserver.h>
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
# include <qt_windows.h> # include <qt_windows.h>
# include <private/qwineventnotifier_p.h> # include <qwineventnotifier.h>
#else #else
# include <private/qabstractsocketengine_p.h> # include <private/qabstractsocketengine_p.h>
# include <qsocketnotifier.h> # include <qsocketnotifier.h>

View File

@ -65,7 +65,7 @@
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
# include "private/qwindowspipewriter_p.h" # include "private/qwindowspipewriter_p.h"
# include "private/qringbuffer_p.h" # include "private/qringbuffer_p.h"
# include <private/qwineventnotifier_p.h> # include <qwineventnotifier.h>
#else #else
# include "private/qabstractsocketengine_p.h" # include "private/qabstractsocketengine_p.h"
# include <qtcpsocket.h> # include <qtcpsocket.h>

View File

@ -40,7 +40,7 @@
****************************************************************************/ ****************************************************************************/
#include <QtTest/QtTest> #include <QtTest/QtTest>
#include <private/qwineventnotifier_p.h> #include <qwineventnotifier.h>
#include <qtimer.h> #include <qtimer.h>
//TESTED_CLASS= //TESTED_CLASS=