diff options
author | Michele Calgaro <[email protected]> | 2024-06-08 15:05:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-12 19:18:55 +0900 |
commit | 7bc57326e69b9c3f0eaeda63e4a49b67ba611426 (patch) | |
tree | 015fd18fdc62bce380935d546b677aa965b090c6 /doc/man/man3/tqapplication.3qt | |
parent | ccbc1c3572fd0e26480c1432fff55d2909545538 (diff) | |
download | tqt3-7bc57326e69b9c3f0eaeda63e4a49b67ba611426.tar.gz tqt3-7bc57326e69b9c3f0eaeda63e4a49b67ba611426.zip |
Rename style nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r-- | doc/man/man3/tqapplication.3qt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt index 37c4ea97d..41f5c36f1 100644 --- a/doc/man/man3/tqapplication.3qt +++ b/doc/man/man3/tqapplication.3qt @@ -193,13 +193,13 @@ Inherits TQObject. .SS "Static Public Members" .in +1c .ti -1c -.BI "QStyle & \fBstyle\fR ()" +.BI "TQStyle & \fBstyle\fR ()" .br .ti -1c -.BI "void \fBsetStyle\fR ( QStyle * style )" +.BI "void \fBsetStyle\fR ( TQStyle * style )" .br .ti -1c -.BI "QStyle * \fBsetStyle\fR ( const TQString & style )" +.BI "TQStyle * \fBsetStyle\fR ( const TQString & style )" .br .ti -1c .BI "int \fBcolorSpec\fR ()" @@ -434,7 +434,7 @@ It performs event handling, meaning that it receives events from the underlying It parses common command line arguments and sets its internal state accordingly. See the constructor documentation below for more details about this. .IP .TP -It defines the application's look and feel, which is encapsulated in a QStyle object. This can be changed at runtime with setStyle(). +It defines the application's look and feel, which is encapsulated in a TQStyle object. This can be changed at runtime with setStyle(). .IP .TP It specifies how the application is to allocate colors. See setColorSpec() for details. @@ -1084,7 +1084,7 @@ Usually widgets call this automatically when they are polished. It may be used t .PP Note that you are not limited to the public functions of TQWidget. Instead, based on meta information like TQObject::className() you are able to customize any kind of widget. .PP -See also QStyle::polish(), TQWidget::polish(), setPalette(), and setFont(). +See also TQStyle::polish(), TQWidget::polish(), setPalette(), and setFont(). .SH "void QApplication::postEvent ( TQObject * receiver, QEvent * event )\fC [static]\fR" \fBNote:\fR This function is thread-safe when TQt is built withthread support.</p> Adds the event \fIevent\fR with the object \fIreceiver\fR as the receiver of the event, to an event queue and returns immediately. .PP @@ -1444,9 +1444,9 @@ Changes the default application palette to \fIpalette\fR. If \fIinformWidgets\fR .PP If \fIclassName\fR is passed, the change applies only to widgets that inherit \fIclassName\fR (as reported by TQObject::inherits()). If \fIclassName\fR is left 0, the change affects all widgets, thus overriding any previously set class specific palettes. .PP -The palette may be changed according to the current GUI style in QStyle::polish(). +The palette may be changed according to the current GUI style in TQStyle::polish(). .PP -See also TQWidget::palette, palette(), and QStyle::polish(). +See also TQWidget::palette, palette(), and TQStyle::polish(). .PP Examples: .)l i18n/main.cpp, themes/metal.cpp, themes/themes.cpp, and themes/wood.cpp. @@ -1464,7 +1464,7 @@ See also startDragDistance(). Sets the time after which a drag should start to \fIms\fR ms. .PP See also startDragTime(). -.SH "void QApplication::setStyle ( QStyle * style )\fC [static]\fR" +.SH "void QApplication::setStyle ( TQStyle * style )\fC [static]\fR" Sets the application's GUI style to \fIstyle\fR. Ownership of the style object is transferred to QApplication, so QApplication will delete the style object on application exit or when a new style is set. .PP Example usage: @@ -1477,19 +1477,19 @@ Example usage: .PP When switching application styles, the color palette is set back to the initial colors or the system defaults. This is necessary since certain styles have to adapt the color palette to be fully style-guide compliant. .PP -See also style(), QStyle, setPalette(), and desktopSettingsAware(). +See also style(), TQStyle, setPalette(), and desktopSettingsAware(). .PP Example: themes/themes.cpp. -.SH "QStyle * QApplication::setStyle ( const TQString & style )\fC [static]\fR" +.SH "TQStyle * QApplication::setStyle ( const TQString & style )\fC [static]\fR" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP -Requests a QStyle object for \fIstyle\fR from the QStyleFactory. +Requests a TQStyle object for \fIstyle\fR from the TQStyleFactory. .PP -The string must be one of the QStyleFactory::keys(), typically one of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and" compact". Depending on the platform, "windowsxp", "aqua" or" macintosh" may be available. +The string must be one of the TQStyleFactory::keys(), typically one of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and" compact". Depending on the platform, "windowsxp", "aqua" or" macintosh" may be available. .PP A later call to the QApplication constructor will override the requested style when a "-style" option is passed in as a commandline parameter. .PP -Returns 0 if an unknown \fIstyle\fR is passed, otherwise the QStyle object returned is set as the application's GUI style. +Returns 0 if an unknown \fIstyle\fR is passed, otherwise the TQStyle object returned is set as the application's GUI style. .SH "void QApplication::setWheelScrollLines ( int n )\fC [static]\fR" Sets the number of lines to scroll when the mouse wheel is rotated to \fIn\fR. .PP @@ -1536,10 +1536,10 @@ See also setStartDragTime() and startDragDistance(). Returns TRUE if an application object has not been created yet; otherwise returns FALSE. .PP See also closingDown(). -.SH "QStyle & QApplication::style ()\fC [static]\fR" +.SH "TQStyle & QApplication::style ()\fC [static]\fR" Returns the application's style object. .PP -See also setStyle() and QStyle. +See also setStyle() and TQStyle. .SH "void QApplication::syncX ()\fC [static]\fR" Synchronizes with the X server in the X11 implementation. This normally takes some time. Does nothing on other platforms. .PP |