summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqprogressbar.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqprogressbar.3qt')
-rw-r--r--doc/man/man3/tqprogressbar.3qt58
1 files changed, 29 insertions, 29 deletions
diff --git a/doc/man/man3/tqprogressbar.3qt b/doc/man/man3/tqprogressbar.3qt
index 2d51550e0..30ffde923 100644
--- a/doc/man/man3/tqprogressbar.3qt
+++ b/doc/man/man3/tqprogressbar.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QProgressBar 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQProgressBar 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,19 +7,19 @@
.ad l
.nh
.SH NAME
-QProgressBar \- Horizontal progress bar
+TQProgressBar \- Horizontal progress bar
.SH SYNOPSIS
-\fC#include <ntqprogressbar.h>\fR
+\fC#include <tqprogressbar.h>\fR
.PP
-Inherits QFrame.
+Inherits TQFrame.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQProgressBar\fR ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.BI "\fBTQProgressBar\fR ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fBQProgressBar\fR ( int totalSteps, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.BI "\fBTQProgressBar\fR ( int totalSteps, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
.BI "int \fBtotalSteps\fR () const"
@@ -92,7 +92,7 @@ Inherits QFrame.
.br
.in -1c
.SH DESCRIPTION
-The QProgressBar widget provides a horizontal progress bar.
+The TQProgressBar widget provides a horizontal progress bar.
.PP
A progress bar is used to give the user an indication of the progress of an operation and to reassure them that the application is still running.
.PP
@@ -100,7 +100,7 @@ The progress bar uses the concept of \fIsteps\fR; you give it the total number o
.PP
If the total is given as 0 the progress bar shows a busy indicator instead of a percentage of steps. This is useful, for example, when using TQFtp or TQHttp to download items when they are unable to determine the size of the item being downloaded.
.PP
-See also QProgressDialog, GUI Design Handbook: Progress Indicator, and Advanced Widgets.
+See also TQProgressDialog, GUI Design Handbook: Progress Indicator, and Advanced Widgets.
.PP
.ce 1
.B "[Image Omitted]"
@@ -109,42 +109,42 @@ See also QProgressDialog, GUI Design Handbook: Progress Indicator, and Advanced
.ce 1
.B "[Image Omitted]"
.PP
-See also QProgressDialog, GUI Design Handbook: Progress Indicator, and Advanced Widgets.
+See also TQProgressDialog, GUI Design Handbook: Progress Indicator, and Advanced Widgets.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QProgressBar::QProgressBar ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.SH "TQProgressBar::TQProgressBar ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
Constructs a progress bar.
.PP
The total number of steps is set to 100 by default.
.PP
-The \fIparent\fR, \fIname\fR and widget flags, \fIf\fR, are passed on to the QFrame::QFrame() constructor.
+The \fIparent\fR, \fIname\fR and widget flags, \fIf\fR, are passed on to the TQFrame::TQFrame() constructor.
.PP
See also totalSteps.
-.SH "QProgressBar::QProgressBar ( int totalSteps, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.SH "TQProgressBar::TQProgressBar ( int totalSteps, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
Constructs a progress bar.
.PP
The \fItotalSteps\fR is the total number of steps that need to be completed for the operation which this progress bar represents. For example, if the operation is to examine 50 files, this value would be 50. Before examining the first file, call setProgress(0); call setProgress(50) after examining the last file.
.PP
-The \fIparent\fR, \fIname\fR and widget flags, \fIf\fR, are passed to the QFrame::QFrame() constructor.
+The \fIparent\fR, \fIname\fR and widget flags, \fIf\fR, are passed to the TQFrame::TQFrame() constructor.
.PP
See also totalSteps and progress.
-.SH "bool QProgressBar::centerIndicator () const"
+.SH "bool TQProgressBar::centerIndicator () const"
Returns TRUE if the indicator string should be centered; otherwise returns FALSE. See the "centerIndicator" property for details.
-.SH "bool QProgressBar::indicatorFollowsStyle () const"
+.SH "bool TQProgressBar::indicatorFollowsStyle () const"
Returns TRUE if the display of the indicator string should follow the GUI style; otherwise returns FALSE. See the "indicatorFollowsStyle" property for details.
-.SH "bool QProgressBar::percentageVisible () const"
+.SH "bool TQProgressBar::percentageVisible () const"
Returns TRUE if the current progress value is displayed; otherwise returns FALSE. See the "percentageVisible" property for details.
-.SH "int QProgressBar::progress () const"
+.SH "int TQProgressBar::progress () const"
Returns the current amount of progress. See the "progress" property for details.
-.SH "const TQString & QProgressBar::progressString () const"
+.SH "const TQString & TQProgressBar::progressString () const"
Returns the amount of progress as a string. See the "progressString" property for details.
-.SH "void QProgressBar::reset ()\fC [slot]\fR"
+.SH "void TQProgressBar::reset ()\fC [slot]\fR"
Reset the progress bar. The progress bar "rewinds" and shows no progress.
.PP
Examples:
.)l fileiconview/mainwindow.cpp and progressbar/progressbar.cpp.
-.SH "void QProgressBar::setCenterIndicator ( bool on )"
+.SH "void TQProgressBar::setCenterIndicator ( bool on )"
Sets whether the indicator string should be centered to \fIon\fR. See the "centerIndicator" property for details.
-.SH "bool QProgressBar::setIndicator ( TQString & indicator, int progress, int totalSteps )\fC [virtual protected]\fR"
+.SH "bool TQProgressBar::setIndicator ( TQString & indicator, int progress, int totalSteps )\fC [virtual protected]\fR"
This method is called to generate the text displayed in the center (or in some styles, to the left) of the progress bar.
.PP
The \fIprogress\fR may be negative, indicating that the progress bar is in the "reset" state before any progress is set.
@@ -152,27 +152,27 @@ The \fIprogress\fR may be negative, indicating that the progress bar is in the "
The default implementation is the percentage of completion or blank in the reset state. The percentage is calculated based on the \fIprogress\fR and \fItotalSteps\fR. You can set the \fIindicator\fR text if you wish.
.PP
To allow efficient repainting of the progress bar, this method should return FALSE if the string is unchanged from the last call to this function.
-.SH "void QProgressBar::setIndicatorFollowsStyle ( bool )"
+.SH "void TQProgressBar::setIndicatorFollowsStyle ( bool )"
Sets whether the display of the indicator string should follow the GUI style. See the "indicatorFollowsStyle" property for details.
-.SH "void QProgressBar::setPercentageVisible ( bool )"
+.SH "void TQProgressBar::setPercentageVisible ( bool )"
Sets whether the current progress value is displayed. See the "percentageVisible" property for details.
-.SH "void QProgressBar::setProgress ( int progress )\fC [virtual slot]\fR"
+.SH "void TQProgressBar::setProgress ( int progress )\fC [virtual slot]\fR"
Sets the current amount of progress to \fIprogress\fR. See the "progress" property for details.
-.SH "void QProgressBar::setProgress ( int progress, int totalSteps )\fC [slot]\fR"
+.SH "void TQProgressBar::setProgress ( int progress, int totalSteps )\fC [slot]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the amount of progress to \fIprogress\fR and the total number of steps to \fItotalSteps\fR.
.PP
See also totalSteps.
-.SH "void QProgressBar::setTotalSteps ( int totalSteps )\fC [virtual slot]\fR"
+.SH "void TQProgressBar::setTotalSteps ( int totalSteps )\fC [virtual slot]\fR"
Sets the total number of steps to \fItotalSteps\fR. See the "totalSteps" property for details.
-.SH "int QProgressBar::totalSteps () const"
+.SH "int TQProgressBar::totalSteps () const"
Returns the total number of steps. See the "totalSteps" property for details.
.SS "Property Documentation"
.SH "bool centerIndicator"
This property holds whether the indicator string should be centered.
.PP
-Changing this property sets QProgressBar::indicatorFollowsStyle to FALSE. The default is TRUE.
+Changing this property sets TQProgressBar::indicatorFollowsStyle to FALSE. The default is TRUE.
.PP
Set this property's value with setCenterIndicator() and get this property's value with centerIndicator().
.SH "bool indicatorFollowsStyle"
@@ -213,7 +213,7 @@ See also
Set this property's value with setTotalSteps() and get this property's value with totalSteps().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqprogressbar.html
+.BR http://doc.trolltech.com/tqprogressbar.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the