diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-11 13:39:33 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-13 10:41:50 +0900 |
| commit | d7d6cb215181eaa02e5aea89149fc2c6d702ddc5 (patch) | |
| tree | 14841da7f4dd22cf5ea437b2d7b03beefd2567ff /doc/html | |
| parent | 5e1b31056073d2f8f72161970b5df5f81dac619a (diff) | |
| download | tqt-d7d6cb215181eaa02e5aea89149fc2c6d702ddc5.tar.gz tqt-d7d6cb215181eaa02e5aea89149fc2c6d702ddc5.zip | |
Explicitly add 'ExcludeTimers' to 'ProcessEvent' enum
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5e8114b6f0ce10965a69cab4a61ce369cbb21d21)
Diffstat (limited to 'doc/html')
| -rw-r--r-- | doc/html/ntqeventloop.html | 3 | ||||
| -rw-r--r-- | doc/html/qeventloop-h.html | 9 |
2 files changed, 7 insertions, 5 deletions
diff --git a/doc/html/ntqeventloop.html b/doc/html/ntqeventloop.html index 2fe9c05ac..8b139b8a5 100644 --- a/doc/html/ntqeventloop.html +++ b/doc/html/ntqeventloop.html @@ -41,7 +41,7 @@ body { background: #ffffff; color: black; } <ul> <li class=fn><a href="#TQEventLoop"><b>TQEventLoop</b></a> ( TQObject * parent = 0, const char * name = 0 )</li> <li class=fn><a href="#~TQEventLoop"><b>~TQEventLoop</b></a> ()</li> -<li class=fn>enum <a href="#ProcessEvents-enum"><b>ProcessEvents</b></a> { AllEvents = 0x00, ExcludeUserInput = 0x01, ExcludeSocketNotifiers = 0x02, WaitForMore = 0x04 }</li> +<li class=fn>enum <a href="#ProcessEvents-enum"><b>ProcessEvents</b></a> { AllEvents = 0x00, ExcludeUserInput = 0x01, ExcludeSocketNotifiers = 0x02, WaitForMore = 0x04, ExcludeTimers = 0x08 }</li> <li class=fn>typedef uint <a href="#ProcessEventsFlags"><b>ProcessEventsFlags</b></a></li> <li class=fn>void <a href="#processEvents"><b>processEvents</b></a> ( ProcessEventsFlags flags, int maxTime )</li> <li class=fn>virtual bool <a href="#processEvents-2"><b>processEvents</b></a> ( ProcessEventsFlags flags )</li> @@ -97,6 +97,7 @@ it before you create the TQApplication object. events. <li><tt>TQEventLoop::WaitForMore</tt> - Wait for events if no pending events are available. +<li><tt>TQEventLoop::ExcludeTimers</tt> - Do not process timer events. </ul><p> <p>See also <a href="#processEvents">processEvents</a>(). <h3 class=fn><a name="ProcessEventsFlags"></a>TQEventLoop::ProcessEventsFlags</h3> diff --git a/doc/html/qeventloop-h.html b/doc/html/qeventloop-h.html index 7ddf52e36..a74e35b58 100644 --- a/doc/html/qeventloop-h.html +++ b/doc/html/qeventloop-h.html @@ -102,10 +102,11 @@ public: ~TQEventLoop(); enum ProcessEvents { - AllEvents = 0x00, - ExcludeUserInput = 0x01, - ExcludeSocketNotifiers = 0x02, - WaitForMore = 0x04 + AllEvents = 0x00, + ExcludeUserInput = 0x01, + ExcludeSocketNotifiers = 0x02, + WaitForMore = 0x04, + ExcludeTimers = 0x08 }; typedef uint ProcessEventsFlags; |
