summaryrefslogtreecommitdiffstats
path: root/src/widgets/ntqprogressbar.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-10 11:43:44 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-10 11:43:44 -0600
commit77053d90dc16bb25405d7f3b3353af4424c6e4b1 (patch)
tree57aea0dd949bf60f81536166ab84ef00c7ac60c3 /src/widgets/ntqprogressbar.h
parent1ae1be3065a315252a7dfac96a9c981ed6727ae6 (diff)
parentdeb6f7b222e52035e99fa757e775c01e987a4eb5 (diff)
downloadtqt3-77053d90dc16bb25405d7f3b3353af4424c6e4b1.tar.gz
tqt3-77053d90dc16bb25405d7f3b3353af4424c6e4b1.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
Diffstat (limited to 'src/widgets/ntqprogressbar.h')
-rw-r--r--src/widgets/ntqprogressbar.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/widgets/ntqprogressbar.h b/src/widgets/ntqprogressbar.h
index e4c66e99d..ca73cd8a4 100644
--- a/src/widgets/ntqprogressbar.h
+++ b/src/widgets/ntqprogressbar.h
@@ -60,6 +60,7 @@ class Q_EXPORT TQProgressBar : public TQFrame
TQ_PROPERTY( bool centerIndicator READ centerIndicator WRITE setCenterIndicator )
TQ_PROPERTY( bool indicatorFollowsStyle READ indicatorFollowsStyle WRITE setIndicatorFollowsStyle )
TQ_PROPERTY( bool percentageVisible READ percentageVisible WRITE setPercentageVisible )
+ TQ_PROPERTY( Orientation orientation READ orientation WRITE setOrientation )
public:
TQProgressBar( TQWidget* parent=0, const char* name=0, WFlags f=0 );
@@ -111,6 +112,13 @@ private: // Disabled copy constructor and operator=
TQProgressBar( const TQProgressBar & );
TQProgressBar &operator=( const TQProgressBar & );
#endif
+
+public:
+ virtual void setOrientation ( Orientation );
+ Orientation orientation () const;
+
+private:
+ Orientation m_orientation;
};