@ -145,13 +145,13 @@ Inherits TQObject.
.BI "virtual void \fBsaveState\fR ( TQSessionManager & sm )"
.br
.ti -1c
.BI "void \fBwakeUpGui Thread\fR ()"
.BI "void \fBwakeUpCore Thread\fR ()"
.br
.ti -1c
.BI "void \fBlock\fR ()"
.br
.ti -1c
.BI "void \fBunlock\fR ( bool wakeUpGui = TRUE )"
.BI "void \fBunlock\fR ( bool wakeUpCore = TRUE )"
.br
.ti -1c
.BI "bool \fBlocked\fR ()"
@ -181,7 +181,7 @@ Inherits TQObject.
.BI "void \fBaboutToQuit\fR ()"
.br
.ti -1c
.BI "void \fBgui ThreadAwake\fR ()"
.BI "void \fBcore ThreadAwake\fR ()"
.br
.in -1c
.SS "Static Public Members"
@ -454,7 +454,7 @@ Since it also deals with common command line arguments, it is usually a good ide
.PP
<center>.nf
.TS
l - l. Groups of functions System settings desktopSettingsAware(), setDesktopSettingsAware(), cursorFlashTime(), setCursorFlashTime(), doubleClickInterval(), setDoubleClickInterval(), wheelScrollLines(), setWheelScrollLines(), palette(), setPalette(), font(), setFont(), fontMetrics(). Event handling exec(), processEvents(), enter_loop(), exit_loop(), exit(), quit(). sendEvent(), postEvent(), sendPostedEvents(), removePostedEvents(), hasPendingEvents(), notify(), macEventFilter(), x11EventFilter(), x11ProcessEvent(), winEventFilter(). GUI Styles style(), setStyle(), polish(). Color usage colorSpec(), setColorSpec(). Text handling installTranslator(), removeTranslator() translate(). Widgets mainWidget(), setMainWidget(), allWidgets(), topLevelWidgets(), desktop(), activePopupWidget(), activeModalWidget(), clipboard(), focusWidget(), winFocus(), activeWindow(), widgetAt(). Advanced cursor handling hasGlobalMouseTracking(), setGlobalMouseTracking(), overrideCursor(), setOverrideCursor(), restoreOverrideCursor(). X Window System synchronization flushX(), syncX(). Session management isSessionRestored(), sessionId(), commitData(), saveState(). Threading lock(), unlock(), locked(), tryLock(), wakeUpGui Thread() Miscellaneous
l - l. Groups of functions System settings desktopSettingsAware(), setDesktopSettingsAware(), cursorFlashTime(), setCursorFlashTime(), doubleClickInterval(), setDoubleClickInterval(), wheelScrollLines(), setWheelScrollLines(), palette(), setPalette(), font(), setFont(), fontMetrics(). Event handling exec(), processEvents(), enter_loop(), exit_loop(), exit(), quit(). sendEvent(), postEvent(), sendPostedEvents(), removePostedEvents(), hasPendingEvents(), notify(), macEventFilter(), x11EventFilter(), x11ProcessEvent(), winEventFilter(). GUI Styles style(), setStyle(), polish(). Color usage colorSpec(), setColorSpec(). Text handling installTranslator(), removeTranslator() translate(). Widgets mainWidget(), setMainWidget(), allWidgets(), topLevelWidgets(), desktop(), activePopupWidget(), activeModalWidget(), clipboard(), focusWidget(), winFocus(), activeWindow(), widgetAt(). Advanced cursor handling hasGlobalMouseTracking(), setGlobalMouseTracking(), overrideCursor(), setOverrideCursor(), restoreOverrideCursor(). X Window System synchronization flushX(), syncX(). Session management isSessionRestored(), sessionId(), commitData(), saveState(). Threading lock(), unlock(), locked(), tryLock(), wakeUpCore Thread() Miscellaneous
.TE
.fi
</center>
@ -933,10 +933,10 @@ Returns the application's global strut.
The strut is a size object whose dimensions are the minimum that any GUI element that the user can interact with should have. For example no button should be resized to be smaller than the global strut size.
.PP
See also setGlobalStrut().
.SH "void TQApplication::gui ThreadAwake ()\fC [signal]\fR"
.SH "void TQApplication::core ThreadAwake ()\fC [signal]\fR"
This signal is emitted after the event loop returns from a function that could block.
.PP
See also wakeUpGui Thread().
See also wakeUpCore Thread().
.SH "bool TQApplication::hasGlobalMouseTracking ()\fC [static]\fR"
Returns TRUE if global mouse tracking is enabled; otherwise returns FALSE.
.PP
@ -1568,14 +1568,14 @@ The mutex must be unlocked with unlock() before another thread can successfully
See also lock(), unlock(), and Thread Support in Qt.
.SH "Type TQApplication::type () const"
Returns the type of application, Tty, GuiClient or GuiServer.
.SH "void TQApplication::unlock ( bool wakeUpGui = TRUE )"
Unlock the TQt Library Mutex. If \fIwakeUpGui\fR is TRUE (the default), then the GUI thread will be woken with TQApplication::wakeUpGui Thread().
.SH "void TQApplication::unlock ( bool wakeUpCore = TRUE )"
Unlock the TQt Library Mutex. If \fIwakeUpCore\fR is TRUE (the default), then the core application thread will be woken with TQApplication::wakeUpCore Thread().
.PP
See also lock(), locked(), and Thread Support in Qt.
.SH "void TQApplication::wakeUpGui Thread ()"
Wakes up the GUI thread.
.SH "void TQApplication::wakeUpCore Thread ()"
Wakes up the current thread.
.PP
See also gui ThreadAwake() and Thread Support in Qt.
See also core ThreadAwake() and Thread Support in Qt.
.SH "int TQApplication::wheelScrollLines ()\fC [static]\fR"
Returns the number of lines to scroll when the mouse wheel is rotated.
.PP