summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r--doc/man/man3/tqapplication.3qt42
1 files changed, 1 insertions, 41 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index 41f5c36f1..21bf88450 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -127,12 +127,6 @@ Inherits TQObject.
.BI "int \fBx11ProcessEvent\fR ( XEvent * event )"
.br
.ti -1c
-.BI "virtual bool \fBqwsEventFilter\fR ( QWSEvent * )"
-.br
-.ti -1c
-.BI "void \fBqwsSetCustomColors\fR ( TQRgb * colorTable, int start, int numColors )"
-.br
-.ti -1c
.BI "void \fBwinFocus\fR ( TQWidget * widget, bool gotFocus )"
.br
.ti -1c
@@ -375,12 +369,6 @@ Inherits TQObject.
.ti -1c
.BI "void \fBsetEffectEnabled\fR ( TQt::UIEffect effect, bool enable = TRUE )"
.br
-.ti -1c
-.BI "QWSDecoration & \fBqwsDecoration\fR ()"
-.br
-.ti -1c
-.BI "void \fBqwsSetDecoration\fR ( QWSDecoration * d )"
-.br
.in -1c
.SH RELATED FUNCTION DOCUMENTATION
.in +1c
@@ -466,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(), qwsEventFilter(), x11EventFilter(), x11ProcessEvent(), winEventFilter(). GUI Styles style(), setStyle(), polish(). Color usage colorSpec(), setColorSpec(), qwsSetCustomColors(). 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(), wakeUpGuiThread() 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(), wakeUpGuiThread() Miscellaneous
.TE
.fi
</center>
@@ -606,8 +594,6 @@ The following example shows how to create an application that uses a graphical i
.fi
.SH "QApplication::QApplication ( int & argc, char ** argv, Type type )"
Constructs an application object with \fIargc\fR command line arguments in \fIargv\fR.
-.PP
-For Qt/Embedded, passing QApplication::GuiServer for \fItype\fR makes this application the server (equivalent to running with the -qws option).
.SH "QApplication::QApplication ( Display * dpy, HANDLE visual = 0, HANDLE colormap = 0 )"
Create an application, given an already open display \fIdpy\fR. If \fIvisual\fR and \fIcolormap\fR are non-zero, the application will use those as the default Visual and Colormap contexts.
.PP
@@ -1139,32 +1125,6 @@ See also exit(), aboutToQuit(), lastWindowClosed(), and QAction.
.PP
Examples:
.)l addressbook/main.cpp, mdi/main.cpp, network/archivesearch/main.cpp, regexptester/main.cpp, t2/main.cpp, t4/main.cpp, and t6/main.cpp.
-.SH "QWSDecoration & QApplication::qwsDecoration ()\fC [static]\fR"
-Return the QWSDecoration used for decorating windows.
-.PP
-This method is non-portable. It is available \fIonly\fR in Qt/Embedded.
-.PP
-See also QWSDecoration.
-.SH "bool QApplication::qwsEventFilter ( QWSEvent * )\fC [virtual]\fR"
-This virtual function is only implemented under Qt/Embedded.
-.PP
-If you create an application that inherits QApplication and reimplement this function, you get direct access to all QWS (Q Window System) events that the are received from the QWS master process.
-.PP
-Return TRUE if you want to stop the event from being processed. Return FALSE for normal event dispatching.
-.SH "void QApplication::qwsSetCustomColors ( TQRgb * colorTable, int start, int numColors )"
-Set Qt/Embedded custom color table.
-.PP
-Qt/Embedded on 8-bpp displays allocates a standard 216 color cube. The remaining 40 colors may be used by setting a custom color table in the QWS master process before any clients connect.
-.PP
-\fIcolorTable\fR is an array of up to 40 custom colors. \fIstart\fR is the starting index (0-39) and \fInumColors\fR is the number of colors to be set (1-40).
-.PP
-This method is non-portable. It is available \fIonly\fR in Qt/Embedded.
-.SH "void QApplication::qwsSetDecoration ( QWSDecoration * d )\fC [static]\fR"
-Set the QWSDecoration derived class to use for decorating the Qt/Embedded windows to \fId\fR.
-.PP
-This method is non-portable. It is available \fIonly\fR in Qt/Embedded.
-.PP
-See also QWSDecoration.
.SH "void QApplication::removeLibraryPath ( const TQString & path )\fC [static]\fR"
Removes \fIpath\fR from the library path list. If \fIpath\fR is empty or not in the path list, the list is not changed.
.PP