home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 1.iso / dist / fw_qt.idb / usr / freeware / include / qprogressdialog.h.z / qprogressdialog.h
Encoding:
C/C++ Source or Header  |  2001-04-12  |  4.0 KB  |  133 lines

  1. /****************************************************************************
  2. ** $Id: qt/src/dialogs/qprogressdialog.h   2.3.0   edited 2001-01-26 $
  3. **
  4. ** Definition of QProgressDialog class
  5. **
  6. ** Created : 970520
  7. **
  8. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the dialogs module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
  22. ** licenses may use this file in accordance with the Qt Commercial License
  23. ** Agreement provided with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QPROGRESSDIALOG_H
  39. #define QPROGRESSDIALOG_H
  40.  
  41. #ifndef QT_H
  42. #include "qsemimodal.h"
  43. #include "qpushbutton.h"
  44. #include "qlabel.h"
  45. #include "qprogressbar.h"
  46. #endif // QT_H
  47.  
  48. #ifndef QT_NO_PROGRESSDIALOG
  49.  
  50. struct QProgressData;
  51. class QTimer;
  52.  
  53. class Q_EXPORT QProgressDialog : public QSemiModal
  54. {
  55.     Q_OBJECT
  56.     Q_PROPERTY( bool wasCancelled READ wasCancelled )
  57.     Q_PROPERTY( int totalSteps READ totalSteps WRITE setTotalSteps )
  58.     Q_PROPERTY( int progress READ progress WRITE setProgress )
  59.     Q_PROPERTY( bool autoReset READ autoReset WRITE setAutoReset )
  60.     Q_PROPERTY( bool autoClose READ autoClose WRITE setAutoClose )
  61.     Q_PROPERTY( QString labelText READ labelText WRITE setLabelText )
  62.     
  63. public:
  64.     QProgressDialog( QWidget *parent=0, const char *name=0, bool modal=FALSE,
  65.              WFlags f=0 );
  66.     QProgressDialog( const QString& labelText, const QString &cancelButtonText,
  67.              int totalSteps, QWidget *parent=0, const char *name=0,
  68.              bool modal=FALSE, WFlags f=0 );
  69.    ~QProgressDialog();
  70.  
  71.     void    setLabel( QLabel * );
  72.     void    setCancelButton( QPushButton * );
  73.     void    setBar( QProgressBar * );
  74.  
  75.     bool    wasCancelled() const;
  76.  
  77.     int        totalSteps() const;
  78.     int        progress()   const;
  79.  
  80.     QSize    sizeHint() const;
  81.  
  82.     QString     labelText() const;
  83.  
  84.     void setAutoReset( bool b );
  85.     bool autoReset() const;
  86.     void setAutoClose( bool b );
  87.     bool autoClose() const;
  88.  
  89. public slots:
  90.     void    cancel();
  91.     void    reset();
  92.     void    setTotalSteps( int totalSteps );
  93.     void    setProgress( int progress );
  94.     void    setLabelText( const QString &);
  95.     void    setCancelButtonText( const QString &);
  96.  
  97.     void    setMinimumDuration( int ms );
  98. public:
  99.     int        minimumDuration() const;
  100.  
  101. signals:
  102.     void    cancelled();
  103.  
  104. protected:
  105.     void    resizeEvent( QResizeEvent * );
  106.     void    closeEvent( QCloseEvent * );
  107.     void    styleChange( QStyle& );
  108.     void    showEvent( QShowEvent *e );
  109.  
  110. protected slots:
  111.     void    forceShow();
  112.     
  113. private:
  114.     void       init( QWidget *creator, const QString& lbl, const QString &canc,
  115.                  int totstps);
  116.     void       center();
  117.     void       layout();
  118.     QLabel      *label()  const;
  119.     QProgressBar  *bar()    const;
  120.     QProgressData *d;
  121.     QTimer      *forceTimer;
  122.  
  123. private:    // Disabled copy constructor and operator=
  124. #if defined(Q_DISABLE_COPY)
  125.     QProgressDialog( const QProgressDialog & );
  126.     QProgressDialog &operator=( const QProgressDialog & );
  127. #endif
  128. };
  129.  
  130. #endif // QT_NO_PROGRESSDIALOG
  131.  
  132. #endif // QPROGRESSDIALOG_H
  133.