diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-04 01:44:13 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-04 01:44:13 +0000 |
commit | c9dc3907763cbf0b0e6164d793291bd2659f1534 (patch) | |
tree | 3359387715ee5e306451f1bcb74b900b608c9946 /qtinterface/tqeventloop.h | |
parent | 4c3c7eaa2d225ecc0c16644f1a23e848bf539164 (diff) | |
download | tqtinterface-c9dc3907763cbf0b0e6164d793291bd2659f1534.tar.gz tqtinterface-c9dc3907763cbf0b0e6164d793291bd2659f1534.zip |
Now compiles kdelibs/dcop folder properly...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1158880 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/tqeventloop.h')
-rw-r--r-- | qtinterface/tqeventloop.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/qtinterface/tqeventloop.h b/qtinterface/tqeventloop.h index 8ae2c8f..c84284f 100644 --- a/qtinterface/tqeventloop.h +++ b/qtinterface/tqeventloop.h @@ -41,10 +41,21 @@ Boston, MA 02110-1301, USA. #include <Qt/qeventloop.h> #include <Qt/qabstracteventdispatcher.h> -class TQEventLoop : public QAbstractEventDispatcher { +class TQEventLoop : public QAbstractEventDispatcher, QEventLoop { public: static TQEventLoop *eventLoop (); - //void WaitForMore (); + + enum ProcessEvents { + AllEvents = QEventLoop::AllEvents, + ExcludeUserInput = QEventLoop::ExcludeUserInputEvents, + ExcludeSocketNotifiers = QEventLoop::ExcludeSocketNotifiers, + WaitForMore = QEventLoop::WaitForMoreEvents + }; + + typedef uint ProcessEventsFlags; + + bool processEvents( ProcessEventsFlags flags ); + }; #endif // USE_QT4 |