summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqmainwindow.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/man/man3/tqmainwindow.3qt
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt-252a2ec8.tar.gz
tqt-252a2ec8.zip
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqmainwindow.3qt')
-rw-r--r--doc/man/man3/tqmainwindow.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqmainwindow.3qt b/doc/man/man3/tqmainwindow.3qt
index 1e19375e5..5ccd2c217 100644
--- a/doc/man/man3/tqmainwindow.3qt
+++ b/doc/man/man3/tqmainwindow.3qt
@@ -418,7 +418,7 @@ To save the layout and positions of all the dock windows do this:
.PP
.nf
.br
- QFile file( filename );
+ TQFile file( filename );
.br
if ( file.open( IO_WriteOnly ) ) {
.br
@@ -436,7 +436,7 @@ To restore the dock window positions and sizes (normally when the application is
.PP
.nf
.br
- QFile file( filename );
+ TQFile file( filename );
.br
if ( file.open( IO_ReadOnly ) ) {
.br
@@ -450,7 +450,7 @@ To restore the dock window positions and sizes (normally when the application is
.br
.fi
.PP
-The QSettings class can be used in conjunction with the streaming operators to store the application's settings.
+The TQSettings class can be used in conjunction with the streaming operators to store the application's settings.
.PP
TQMainWindow's management of dock windows and toolbars is done transparently behind-the-scenes by QDockArea.
.PP
@@ -809,13 +809,13 @@ Set this property's value with setUsesTextLabel() and get this property's value
.SH "TQTextStream & operator<< ( TQTextStream & ts, const TQMainWindow & mainWindow )"
Writes the layout (sizes and positions) of the dock windows in the dock areas of the TQMainWindow \fImainWindow\fR, including Minimized and TornOff dock windows, to the text stream \fIts\fR.
.PP
-This can be used, for example, in conjunction with QSettings to save the user's layout when the \\mainWindow receives a closeEvent.
+This can be used, for example, in conjunction with TQSettings to save the user's layout when the \\mainWindow receives a closeEvent.
.PP
See also operator>>() and closeEvent().
.SH "TQTextStream & operator>> ( TQTextStream & ts, TQMainWindow & mainWindow )"
Reads the layout (sizes and positions) of the dock windows in the dock areas of the TQMainWindow \fImainWindow\fR from the text stream, \fIts\fR, including Minimized and TornOff dock windows. Restores the dock windows and dock areas to these sizes and positions. The layout information must be in the format produced by operator<<().
.PP
-This can be used, for example, in conjunction with QSettings to restore the user's layout.
+This can be used, for example, in conjunction with TQSettings to restore the user's layout.
.PP
See also operator<<().