aboutsummaryrefslogtreecommitdiffstats
path: root/src/controls/qquickprogressbar_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-05-22 12:55:25 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-05-22 18:34:42 +0000
commit7d39b4ff7d555f4731aa235ecb286efc43535cb7 (patch)
treee3943fbaf44a6602f5ab7aaeec05376e3d40b81a /src/controls/qquickprogressbar_p.h
parenta3b1db8586cc10da12314cf21a0a377b50874703 (diff)
Promote layoutDirection & effectiveLayoutDirection to Control
Change-Id: I44df09c17d6d20cfd929af4e331e15f48b19587e Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/controls/qquickprogressbar_p.h')
-rw-r--r--src/controls/qquickprogressbar_p.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/controls/qquickprogressbar_p.h b/src/controls/qquickprogressbar_p.h
index 9b046890..263e3186 100644
--- a/src/controls/qquickprogressbar_p.h
+++ b/src/controls/qquickprogressbar_p.h
@@ -60,8 +60,6 @@ class Q_QUICKCONTROLS_EXPORT QQuickProgressBar : public QQuickControl
Q_PROPERTY(qreal value READ value WRITE setValue NOTIFY valueChanged FINAL)
Q_PROPERTY(qreal visualPosition READ visualPosition NOTIFY visualPositionChanged FINAL)
Q_PROPERTY(bool indeterminate READ isIndeterminate WRITE setIndeterminate NOTIFY indeterminateChanged FINAL)
- Q_PROPERTY(Qt::LayoutDirection layoutDirection READ layoutDirection WRITE setLayoutDirection NOTIFY layoutDirectionChanged FINAL)
- Q_PROPERTY(Qt::LayoutDirection effectiveLayoutDirection READ effectiveLayoutDirection NOTIFY effectiveLayoutDirectionChanged FINAL)
Q_PROPERTY(QQuickItem *indicator READ indicator WRITE setIndicator NOTIFY indicatorChanged FINAL)
public:
@@ -75,10 +73,6 @@ public:
bool isIndeterminate() const;
void setIndeterminate(bool indeterminate);
- Qt::LayoutDirection layoutDirection() const;
- Qt::LayoutDirection effectiveLayoutDirection() const;
- void setLayoutDirection(Qt::LayoutDirection direction);
-
QQuickItem *indicator() const;
void setIndicator(QQuickItem *indicator);
@@ -86,8 +80,6 @@ Q_SIGNALS:
void valueChanged();
void visualPositionChanged();
void indeterminateChanged();
- void layoutDirectionChanged();
- void effectiveLayoutDirectionChanged();
void indicatorChanged();
protected: