diff options
Diffstat (limited to 'doc/html/tqprogressdialog.html')
-rw-r--r-- | doc/html/tqprogressdialog.html | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/tqprogressdialog.html b/doc/html/tqprogressdialog.html index 54125a361..92e2d0390 100644 --- a/doc/html/tqprogressdialog.html +++ b/doc/html/tqprogressdialog.html @@ -37,8 +37,8 @@ body { background: #ffffff; color: black; } <p><a href="tqprogressdialog-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> -<li class=fn><a href="#TQProgressDialog"><b>TQProgressDialog</b></a> ( TQWidget * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )</li> -<li class=fn><a href="#TQProgressDialog-2"><b>TQProgressDialog</b></a> ( const TQString & labelText, const TQString & cancelButtonText, int totalSteps, TQWidget * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )</li> +<li class=fn><a href="#TQProgressDialog"><b>TQProgressDialog</b></a> ( TQWidget * creator = 0, const char * name = 0, bool modal = false, WFlags f = 0 )</li> +<li class=fn><a href="#TQProgressDialog-2"><b>TQProgressDialog</b></a> ( const TQString & labelText, const TQString & cancelButtonText, int totalSteps, TQWidget * creator = 0, const char * name = 0, bool modal = false, WFlags f = 0 )</li> <li class=fn><a href="#~TQProgressDialog"><b>~TQProgressDialog</b></a> ()</li> <li class=fn>void <a href="#setLabel"><b>setLabel</b></a> ( TQLabel * label )</li> <li class=fn>void <a href="#setCancelButton"><b>setCancelButton</b></a> ( TQPushButton * cancelButton )</li> @@ -122,7 +122,7 @@ operation in a loop, call <a href="#setProgress">setProgress</a>() at intervals, for cancellation with <a href="#wasCanceled">wasCanceled</a>(). For example: <pre> TQProgressDialog progress( "Copying files...", "Abort Copy", numFiles, - this, "progress", TRUE ); + this, "progress", true ); for ( int i = 0; i < numFiles; i++ ) { progress.setProgress( i ); tqApp-><a href="tqapplication.html#processEvents">processEvents</a>(); @@ -178,7 +178,7 @@ set the texts shown. <p> <p>See also <a href="tqdialog.html">TQDialog</a>, <a href="tqprogressbar.html">TQProgressBar</a>, <a href="guibooks.html#fowler">GUI Design Handbook: Progress Indicator</a>, and <a href="dialogs.html">Dialog Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQProgressDialog"></a>TQProgressDialog::TQProgressDialog ( <a href="tqwidget.html">TQWidget</a> * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 ) +<h3 class=fn><a name="TQProgressDialog"></a>TQProgressDialog::TQProgressDialog ( <a href="tqwidget.html">TQWidget</a> * creator = 0, const char * name = 0, bool modal = false, WFlags f = 0 ) </h3> Constructs a progress dialog. <p> Default settings: @@ -189,13 +189,13 @@ Constructs a progress dialog. </ul> <p> The <em>creator</em> argument is the widget to use as the dialog's parent. The <em>name</em>, <em>modal</em>, and the widget flags, <em>f</em>, are -passed to the <a href="tqdialog.html#TQDialog">TQDialog::TQDialog</a>() constructor. If <em>modal</em> is FALSE (the +passed to the <a href="tqdialog.html#TQDialog">TQDialog::TQDialog</a>() constructor. If <em>modal</em> is false (the default), you must have an event loop proceeding for any redrawing -of the dialog to occur. If <em>modal</em> is TRUE, the dialog ensures that +of the dialog to occur. If <em>modal</em> is true, the dialog ensures that events are processed when needed. <p> <p>See also <a href="#labelText-prop">labelText</a>, <a href="#setLabel">setLabel</a>(), <a href="#setCancelButtonText">setCancelButtonText</a>(), <a href="#setCancelButton">setCancelButton</a>(), and <a href="#totalSteps-prop">totalSteps</a>. -<h3 class=fn><a name="TQProgressDialog-2"></a>TQProgressDialog::TQProgressDialog ( const <a href="tqstring.html">TQString</a> & labelText, const <a href="tqstring.html">TQString</a> & cancelButtonText, int totalSteps, <a href="tqwidget.html">TQWidget</a> * creator = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 ) +<h3 class=fn><a name="TQProgressDialog-2"></a>TQProgressDialog::TQProgressDialog ( const <a href="tqstring.html">TQString</a> & labelText, const <a href="tqstring.html">TQString</a> & cancelButtonText, int totalSteps, <a href="tqwidget.html">TQWidget</a> * creator = 0, const char * name = 0, bool modal = false, WFlags f = 0 ) </h3> Constructs a progress dialog. <p> The <em>labelText</em> is text used to remind the user what is progressing. @@ -209,9 +209,9 @@ processed call setProgress(1), setProgress(2), etc., finally calling setProgress(50) after examining the last file. <p> The <em>creator</em> argument is the widget to use as the dialog's parent. The <em>name</em>, <em>modal</em>, and widget flags, <em>f</em>, are passed to the -<a href="tqdialog.html#TQDialog">TQDialog::TQDialog</a>() constructor. If <em>modal</em> is FALSE (the default), +<a href="tqdialog.html#TQDialog">TQDialog::TQDialog</a>() constructor. If <em>modal</em> is false (the default), you will must have an event loop proceeding for any redrawing of -the dialog to occur. If <em>modal</em> is TRUE, the dialog ensures that +the dialog to occur. If <em>modal</em> is true, the dialog ensures that events are processed when needed. <p> <p>See also <a href="#labelText-prop">labelText</a>, <a href="#setLabel">setLabel</a>(), <a href="#setCancelButtonText">setCancelButtonText</a>(), <a href="#setCancelButton">setCancelButton</a>(), and <a href="#totalSteps-prop">totalSteps</a>. @@ -220,14 +220,14 @@ events are processed when needed. Destroys the progress dialog. <h3 class=fn>bool <a name="autoClose"></a>TQProgressDialog::autoClose () const -</h3><p>Returns TRUE if the dialog gets hidden by <a href="#reset">reset</a>(); otherwise returns FALSE. +</h3><p>Returns true if the dialog gets hidden by <a href="#reset">reset</a>(); otherwise returns false. See the <a href="tqprogressdialog.html#autoClose-prop">"autoClose"</a> property for details. <h3 class=fn>bool <a name="autoReset"></a>TQProgressDialog::autoReset () const -</h3><p>Returns TRUE if the progress dialog calls <a href="#reset">reset</a>() as soon as <a href="#progress">progress</a>() equals <a href="#totalSteps">totalSteps</a>(); otherwise returns FALSE. +</h3><p>Returns true if the progress dialog calls <a href="#reset">reset</a>() as soon as <a href="#progress">progress</a>() equals <a href="#totalSteps">totalSteps</a>(); otherwise returns false. See the <a href="tqprogressdialog.html#autoReset-prop">"autoReset"</a> property for details. <h3 class=fn>void <a name="cancel"></a>TQProgressDialog::cancel ()<tt> [slot]</tt> </h3> -Resets the progress dialog. <a href="#wasCanceled">wasCanceled</a>() becomes TRUE until +Resets the progress dialog. <a href="#wasCanceled">wasCanceled</a>() becomes true until the progress dialog is reset. The progress dialog becomes hidden. @@ -263,7 +263,7 @@ See the <a href="tqprogressdialog.html#progress-prop">"progress"</a> property fo <h3 class=fn>void <a name="reset"></a>TQProgressDialog::reset ()<tt> [slot]</tt> </h3> Resets the progress dialog. -The progress dialog becomes hidden if <a href="#autoClose">autoClose</a>() is TRUE. +The progress dialog becomes hidden if <a href="#autoClose">autoClose</a>() is true. <p> <p>See also <a href="#autoClose-prop">autoClose</a> and <a href="#autoReset-prop">autoReset</a>. <p>Example: <a href="ftpclient-example.html#x769">network/ftpclient/ftpmainwindow.ui.h</a>. @@ -330,21 +330,21 @@ need to call this yourself. </h3><p>Returns the total number of steps. See the <a href="tqprogressdialog.html#totalSteps-prop">"totalSteps"</a> property for details. <h3 class=fn>bool <a name="wasCanceled"></a>TQProgressDialog::wasCanceled () const -</h3><p>Returns TRUE if the dialog was canceled; otherwise returns FALSE. +</h3><p>Returns true if the dialog was canceled; otherwise returns false. See the <a href="tqprogressdialog.html#wasCanceled-prop">"wasCanceled"</a> property for details. <h3 class=fn>bool <a name="wasCancelled"></a>TQProgressDialog::wasCancelled () const -</h3><p>Returns TRUE if the dialog was canceled; otherwise returns FALSE. +</h3><p>Returns true if the dialog was canceled; otherwise returns false. See the <a href="tqprogressdialog.html#wasCancelled-prop">"wasCancelled"</a> property for details. <hr><h2>Property Documentation</h2> <h3 class=fn>bool <a name="autoClose-prop"></a>autoClose</h3> <p>This property holds whether the dialog gets hidden by <a href="#reset">reset</a>(). -<p>The default is TRUE. +<p>The default is true. <p> <p>See also <a href="#autoReset-prop">autoReset</a>. <p>Set this property's value with <a href="#setAutoClose">setAutoClose</a>() and get this property's value with <a href="#autoClose">autoClose</a>(). <h3 class=fn>bool <a name="autoReset-prop"></a>autoReset</h3> <p>This property holds whether the progress dialog calls <a href="#reset">reset</a>() as soon as <a href="#progress">progress</a>() equals <a href="#totalSteps">totalSteps</a>(). -<p>The default is TRUE. +<p>The default is true. <p> <p>See also <a href="#autoClose-prop">autoClose</a>. <p>Set this property's value with <a href="#setAutoReset">setAutoReset</a>() and get this property's value with <a href="#autoReset">autoReset</a>(). |