summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqwidget.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-08 15:05:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-12 19:18:55 +0900
commit7bc57326e69b9c3f0eaeda63e4a49b67ba611426 (patch)
tree015fd18fdc62bce380935d546b677aa965b090c6 /doc/man/man3/tqwidget.3qt
parentccbc1c3572fd0e26480c1432fff55d2909545538 (diff)
downloadtqt3-7bc57326e69b9c3f0eaeda63e4a49b67ba611426.tar.gz
tqt3-7bc57326e69b9c3f0eaeda63e4a49b67ba611426.zip
Rename style nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqwidget.3qt')
-rw-r--r--doc/man/man3/tqwidget.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index 00242f28..f9cc34d4 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -27,13 +27,13 @@ Inherited by QAxWidget, QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDa
.BI "WId \fBwinId\fR () const"
.br
.ti -1c
-.BI "QStyle & \fBstyle\fR () const"
+.BI "TQStyle & \fBstyle\fR () const"
.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 "bool \fBisTopLevel\fR () const"
@@ -948,7 +948,7 @@ Inherited by QAxWidget, QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDa
.BI "virtual void \fBupdateMask\fR ()"
.br
.ti -1c
-.BI "virtual void \fBstyleChange\fR ( QStyle & oldStyle )"
+.BI "virtual void \fBstyleChange\fR ( TQStyle & oldStyle )"
.br
.ti -1c
.BI "virtual void \fBenabledChange\fR ( bool oldEnabled )"
@@ -2205,7 +2205,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
Sets the size policy of the widget to \fIhor\fR, \fIver\fR and \fIhfw\fR (height for width).
.PP
See also QSizePolicy::QSizePolicy().
-.SH "void TQWidget::setStyle ( QStyle * style )"
+.SH "void TQWidget::setStyle ( TQStyle * style )"
Sets the widget's GUI style to \fIstyle\fR. Ownership of the style object is not transferred.
.PP
If no style is set, the widget uses the application's style, QApplication::style() instead.
@@ -2214,14 +2214,14 @@ Setting a widget's style has no effect on existing or future child widgets.
.PP
\fBWarning:\fR This function is particularly useful for demonstration purposes, where you want to show Qt's styling capabilities. Real applications should avoid it and use one consistent GUI style instead.
.PP
-See also style(), QStyle, QApplication::style(), and QApplication::setStyle().
+See also style(), TQStyle, QApplication::style(), and QApplication::setStyle().
.PP
Examples:
.)l grapher/grapher.cpp and progressbar/progressbar.cpp.
-.SH "QStyle * TQWidget::setStyle ( const TQString & style )"
+.SH "TQStyle * TQWidget::setStyle ( const TQString & style )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Sets the widget's GUI style to \fIstyle\fR using the QStyleFactory.
+Sets the widget's GUI style to \fIstyle\fR using the TQStyleFactory.
.SH "void TQWidget::setTabOrder ( TQWidget * first, TQWidget * second )\fC [static]\fR"
Moves the \fIsecond\fR widget around the ring of focus widgets so that keyboard focus moves from the \fIfirst\fR widget to the \fIsecond\fR widget when the Tab key is pressed.
.PP
@@ -2362,11 +2362,11 @@ Places the widget under \fIw\fR in the parent widget's stack.
To make this work, the widget itself and \fIw\fR must be siblings.
.PP
See also raise() and lower().
-.SH "QStyle & TQWidget::style () const"
+.SH "TQStyle & TQWidget::style () const"
Returns the GUI style for this widget
.PP
See also TQWidget::setStyle(), QApplication::setStyle(), and QApplication::style().
-.SH "void TQWidget::styleChange ( QStyle & oldStyle )\fC [virtual protected]\fR"
+.SH "void TQWidget::styleChange ( TQStyle & oldStyle )\fC [virtual protected]\fR"
This virtual function is called when the style of the widgets changes. \fIoldStyle\fR is the previous GUI style; you can get the new style from style().
.PP
Reimplement this function if your widget needs to know when its GUI style changes. You will almost certainly need to update the widget using update().