diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-10 11:43:40 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-10 11:43:40 -0600 |
commit | 6bcbe0a787127751122109caf4a3cd621e13004e (patch) | |
tree | 5a0f15dcfa9330f1e1dbabe346ba69c848e17bdf /src/widgets/qprogressbar.h | |
parent | f7873ac3368532ee4ab09e77e5112d7b6b1a8069 (diff) | |
parent | d1c672237288068a5e3777d16277221912bc0088 (diff) | |
download | qt3-6bcbe0a787127751122109caf4a3cd621e13004e.tar.gz qt3-6bcbe0a787127751122109caf4a3cd621e13004e.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/qt3
Diffstat (limited to 'src/widgets/qprogressbar.h')
-rw-r--r-- | src/widgets/qprogressbar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/widgets/qprogressbar.h b/src/widgets/qprogressbar.h index 2c4f039..ac69914 100644 --- a/src/widgets/qprogressbar.h +++ b/src/widgets/qprogressbar.h @@ -60,6 +60,7 @@ class Q_EXPORT QProgressBar : public QFrame Q_PROPERTY( bool centerIndicator READ centerIndicator WRITE setCenterIndicator ) Q_PROPERTY( bool indicatorFollowsStyle READ indicatorFollowsStyle WRITE setIndicatorFollowsStyle ) Q_PROPERTY( bool percentageVisible READ percentageVisible WRITE setPercentageVisible ) + Q_PROPERTY( Orientation orientation READ orientation WRITE setOrientation ) public: QProgressBar( QWidget* parent=0, const char* name=0, WFlags f=0 ); @@ -111,6 +112,13 @@ private: // Disabled copy constructor and operator= QProgressBar( const QProgressBar & ); QProgressBar &operator=( const QProgressBar & ); #endif + +public: + virtual void setOrientation ( Orientation ); + Orientation orientation () const; + +private: + Orientation m_orientation; }; |