QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskSlider.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_SLIDER_H
7#define QSK_SLIDER_H
8
9#include "QskBoundedValueInput.h"
10#include "QskNamespace.h"
11
12class QSK_EXPORT QskSlider : public QskBoundedValueInput
13{
14 Q_OBJECT
15
16 Q_PROPERTY( Qt::Orientation orientation READ orientation
17 WRITE setOrientation NOTIFY orientationChanged )
18
19 Q_PROPERTY( bool inverted READ isInverted
20 WRITE setInverted NOTIFY invertedChanged )
21
22 Q_PROPERTY( bool tracking READ isTracking
23 WRITE setTracking NOTIFY trackingChanged )
24
25 Q_PROPERTY( qreal origin READ origin
26 WRITE setOrigin RESET resetOrigin NOTIFY originChanged )
27
29
30 public:
31 QSK_SUBCONTROLS( Panel, Groove, Fill, Scale, Tick, Handle )
32 QSK_STATES( Pressed )
33
34 explicit QskSlider( QQuickItem* parent = nullptr );
35 explicit QskSlider( Qt::Orientation, QQuickItem* parent = nullptr );
36
37 ~QskSlider() override;
38
39 void setOrientation( Qt::Orientation );
40 Qt::Orientation orientation() const;
41
42 void setInverted( bool );
43 bool isInverted() const;
44
45 void resetOrigin();
46 qreal origin() const;
47 bool hasOrigin() const;
48
49 void setTracking( bool );
50 bool isTracking() const;
51
52 qreal handlePosition() const; // [0,0, 1.0]
53
55
56 public Q_SLOTS:
57 void setOrigin( qreal );
58
59 Q_SIGNALS:
60 void orientationChanged( Qt::Orientation );
61 void invertedChanged( bool );
62 void trackingChanged( bool );
63 void originChanged( qreal );
64
65 protected:
66 void mousePressEvent( QMouseEvent* ) override;
67 void mouseMoveEvent( QMouseEvent* ) override;
68 void mouseReleaseEvent( QMouseEvent* ) override;
69
70 void keyPressEvent( QKeyEvent* ) override;
71
72 void aboutToShow() override;
73 void componentComplete() override;
74
75 private:
76 void moveHandle();
77 void moveHandleTo( qreal value, const QskAnimationHint& );
78
79 class PrivateData;
80 std::unique_ptr< PrivateData > m_data;
81};
82
83#endif
Variation
Some sort of variation.
Definition QskAspect.h:82
virtual void aboutToShow()
Definition QskItem.cpp:1099
virtual QskAspect::Variation effectiveVariation() const