summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqprogressdialog.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqprogressdialog.3qt')
-rw-r--r--doc/man/man3/tqprogressdialog.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqprogressdialog.3qt b/doc/man/man3/tqprogressdialog.3qt
index fb458da73..5d261d81b 100644
--- a/doc/man/man3/tqprogressdialog.3qt
+++ b/doc/man/man3/tqprogressdialog.3qt
@@ -11,7 +11,7 @@ QProgressDialog \- Feedback on the progress of a slow operation
.SH SYNOPSIS
\fC#include <ntqprogressdialog.h>\fR
.PP
-Inherits QDialog.
+Inherits TQDialog.
.PP
.SS "Public Members"
.in +1c
@@ -28,7 +28,7 @@ Inherits QDialog.
.BI "void \fBsetLabel\fR ( TQLabel * label )"
.br
.ti -1c
-.BI "void \fBsetCancelButton\fR ( QPushButton * cancelButton )"
+.BI "void \fBsetCancelButton\fR ( TQPushButton * cancelButton )"
.br
.ti -1c
.BI "void \fBsetBar\fR ( QProgressBar * bar )"
@@ -237,7 +237,7 @@ In both modes the progress dialog may be customized by replacing the child widge
.ce 1
.B "[Image Omitted]"
.PP
-See also QDialog, QProgressBar, GUI Design Handbook: Progress Indicator, and Dialog Classes.
+See also TQDialog, QProgressBar, GUI Design Handbook: Progress Indicator, and Dialog Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QProgressDialog::QProgressDialog ( TQWidget * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
Constructs a progress dialog.
@@ -250,7 +250,7 @@ The cancel button text is (translated) "Cancel".
.TP
The total number of steps is 100.
.PP
-The \fIcreator\fR argument is the widget to use as the dialog's parent. The \fIname\fR, \fImodal\fR, and the widget flags, \fIf\fR, are passed to the QDialog::QDialog() constructor. If \fImodal\fR is FALSE (the default), you must have an event loop proceeding for any redrawing of the dialog to occur. If \fImodal\fR is TRUE, the dialog ensures that events are processed when needed.
+The \fIcreator\fR argument is the widget to use as the dialog's parent. The \fIname\fR, \fImodal\fR, and the widget flags, \fIf\fR, are passed to the TQDialog::TQDialog() constructor. If \fImodal\fR is FALSE (the default), you must have an event loop proceeding for any redrawing of the dialog to occur. If \fImodal\fR is TRUE, the dialog ensures that events are processed when needed.
.PP
See also labelText, setLabel(), setCancelButtonText(), setCancelButton(), and totalSteps.
.SH "QProgressDialog::QProgressDialog ( const TQString & labelText, const TQString & cancelButtonText, int totalSteps, TQWidget * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )"
@@ -262,7 +262,7 @@ The \fIcancelButtonText\fR is the text to display on the cancel button, or 0 if
.PP
The \fItotalSteps\fR is the total number of steps in the operation for which this progress dialog shows progress. For example, if the operation is to examine 50 files, this value would be 50. Before examining the first file, call setProgress(0). As each file is processed call setProgress(1), setProgress(2), etc., finally calling setProgress(50) after examining the last file.
.PP
-The \fIcreator\fR argument is the widget to use as the dialog's parent. The \fIname\fR, \fImodal\fR, and widget flags, \fIf\fR, are passed to the QDialog::QDialog() constructor. If \fImodal\fR is FALSE (the default), you will must have an event loop proceeding for any redrawing of the dialog to occur. If \fImodal\fR is TRUE, the dialog ensures that events are processed when needed.
+The \fIcreator\fR argument is the widget to use as the dialog's parent. The \fIname\fR, \fImodal\fR, and widget flags, \fIf\fR, are passed to the TQDialog::TQDialog() constructor. If \fImodal\fR is FALSE (the default), you will must have an event loop proceeding for any redrawing of the dialog to occur. If \fImodal\fR is TRUE, the dialog ensures that events are processed when needed.
.PP
See also labelText, setLabel(), setCancelButtonText(), setCancelButton(), and totalSteps.
.SH "QProgressDialog::~QProgressDialog ()"
@@ -306,7 +306,7 @@ Sets whether the dialog gets hidden by reset() to \fIb\fR. See the "autoClose" p
Sets whether the progress dialog calls reset() as soon as progress() equals totalSteps() to \fIb\fR. See the "autoReset" property for details.
.SH "void QProgressDialog::setBar ( QProgressBar * bar )"
Sets the progress bar widget to \fIbar\fR. The progress dialog resizes to fit. The progress dialog takes ownership of the progress \fIbar\fR which will be deleted when necessary, so do not use a progress bar allocated on the stack.
-.SH "void QProgressDialog::setCancelButton ( QPushButton * cancelButton )"
+.SH "void QProgressDialog::setCancelButton ( TQPushButton * cancelButton )"
Sets the cancel button to the push button, \fIcancelButton\fR. The progress dialog takes ownership of this button which will be deleted when necessary, so do not pass the address of an object that is on the stack, i.e. use new() to create the button.
.PP
See also setCancelButtonText().