summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqwizard.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/man/man3/tqwizard.3qt
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqwizard.3qt')
-rw-r--r--doc/man/man3/tqwizard.3qt28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/man/man3/tqwizard.3qt b/doc/man/man3/tqwizard.3qt
index 41db7b13..7fc09aa8 100644
--- a/doc/man/man3/tqwizard.3qt
+++ b/doc/man/man3/tqwizard.3qt
@@ -11,7 +11,7 @@ QWizard \- Framework for wizard dialogs
.SH SYNOPSIS
\fC#include <ntqwizard.h>\fR
.PP
-Inherits QDialog.
+Inherits TQDialog.
.PP
.SS "Public Members"
.in +1c
@@ -64,19 +64,19 @@ Inherits QDialog.
.BI "virtual void \fBsetAppropriate\fR ( TQWidget * page, bool appropriate )"
.br
.ti -1c
-.BI "QPushButton * \fBbackButton\fR () const"
+.BI "TQPushButton * \fBbackButton\fR () const"
.br
.ti -1c
-.BI "QPushButton * \fBnextButton\fR () const"
+.BI "TQPushButton * \fBnextButton\fR () const"
.br
.ti -1c
-.BI "QPushButton * \fBfinishButton\fR () const"
+.BI "TQPushButton * \fBfinishButton\fR () const"
.br
.ti -1c
-.BI "QPushButton * \fBcancelButton\fR () const"
+.BI "TQPushButton * \fBcancelButton\fR () const"
.br
.ti -1c
-.BI "QPushButton * \fBhelpButton\fR () const"
+.BI "TQPushButton * \fBhelpButton\fR () const"
.br
.in -1c
.SS "Public Slots"
@@ -161,7 +161,7 @@ Example code is available here: wizard/wizard.cpp wizard/wizard.h
See also Abstract Widget Classes, Dialog Classes, and Organizers.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QWizard::QWizard ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
-Constructs an empty wizard dialog. The \fIparent\fR, \fIname\fR, \fImodal\fR and \fIf\fR arguments are passed to the QDialog constructor.
+Constructs an empty wizard dialog. The \fIparent\fR, \fIname\fR, \fImodal\fR and \fIf\fR arguments are passed to the TQDialog constructor.
.SH "QWizard::~QWizard ()"
Destroys the object and frees any allocated resources, including all pages and controllers.
.SH "void QWizard::addPage ( TQWidget * page, const TQString & title )\fC [virtual]\fR"
@@ -174,23 +174,23 @@ Called when the Next button is clicked; this virtual function returns TRUE if \f
Called when the user clicks the Back button; this function shows the preceding relevant page in the sequence.
.PP
See also appropriate().
-.SH "QPushButton * QWizard::backButton () const"
+.SH "TQPushButton * QWizard::backButton () const"
Returns a pointer to the dialog's Back button
.PP
By default, this button is connected to the back() slot, which is virtual so you can reimplement it in a QWizard subclass. Use setBackEnabled() to enable/disable this button.
-.SH "QPushButton * QWizard::cancelButton () const"
+.SH "TQPushButton * QWizard::cancelButton () const"
Returns a pointer to the dialog's Cancel button
.PP
-By default, this button is connected to the QDialog::reject() slot, which is virtual so you can reimplement it in a QWizard subclass.
+By default, this button is connected to the TQDialog::reject() slot, which is virtual so you can reimplement it in a QWizard subclass.
.SH "TQWidget * QWizard::currentPage () const"
Returns a pointer to the current page in the sequence. Although the wizard does its best to make sure that this value is never 0, it can be if you try hard enough.
-.SH "QPushButton * QWizard::finishButton () const"
+.SH "TQPushButton * QWizard::finishButton () const"
Returns a pointer to the dialog's Finish button
.PP
-By default, this button is connected to the QDialog::accept() slot, which is virtual so you can reimplement it in a QWizard subclass. Use setFinishEnabled() to enable/disable this button.
+By default, this button is connected to the TQDialog::accept() slot, which is virtual so you can reimplement it in a QWizard subclass. Use setFinishEnabled() to enable/disable this button.
.SH "void QWizard::help ()\fC [virtual protected slot]\fR"
Called when the user clicks the Help button, this function emits the helpClicked() signal.
-.SH "QPushButton * QWizard::helpButton () const"
+.SH "TQPushButton * QWizard::helpButton () const"
Returns a pointer to the dialog's Help button
.PP
By default, this button is connected to the help() slot, which is virtual so you can reimplement it in a QWizard subclass. Use setHelpEnabled() to enable/disable this button.
@@ -212,7 +212,7 @@ This virtual function is responsible for laying out the title row.
Called when the user clicks the Next button, this function shows the next relevant page in the sequence.
.PP
See also appropriate().
-.SH "QPushButton * QWizard::nextButton () const"
+.SH "TQPushButton * QWizard::nextButton () const"
Returns a pointer to the dialog's Next button
.PP
By default, this button is connected to the next() slot, which is virtual so you can reimplement it in a QWizard subclass. Use setNextEnabled() to enable/disable this button.