18 Q_PROPERTY( Qt::Orientation orientation READ orientation
19 WRITE setOrientation NOTIFY orientationChanged FINAL )
21 Q_PROPERTY(
bool inverted READ isInverted
22 WRITE setInverted NOTIFY invertedChanged FINAL )
24 Q_PROPERTY( IconMode iconMode READ iconMode
25 WRITE setIconMode NOTIFY iconModeChanged FINAL )
28 QSK_SUBCONTROLS( Groove, Handle, Icon )
43 bool isCheckable()
const override final;
45 Qt::Orientation orientation()
const;
46 void setOrientation( Qt::Orientation );
48 bool isInverted()
const;
49 void setInverted(
bool );
51 IconMode iconMode()
const;
52 void setIconMode( IconMode );
57 void orientationChanged( Qt::Orientation );
58 void invertedChanged(
bool );
59 void iconModeChanged( IconMode );
63 std::unique_ptr< PrivateData > m_data;