54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
![]() |
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef QSK_PAGE_INDICATOR_H
|
||
|
#define QSK_PAGE_INDICATOR_H
|
||
|
|
||
|
#include "QskControl.h"
|
||
|
|
||
|
class QskCorner;
|
||
|
|
||
|
class QSK_EXPORT QskPageIndicator : public QskControl
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PROPERTY ( int count READ count WRITE setCount NOTIFY countChanged FINAL )
|
||
|
Q_PROPERTY ( int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged FINAL )
|
||
|
Q_PROPERTY ( Qt::Orientation orientation READ orientation WRITE setOrientation NOTIFY orientationChanged FINAL )
|
||
|
|
||
|
using Inherited = QskControl;
|
||
|
|
||
|
public:
|
||
|
QSK_SUBCONTROLS( Panel, Bullet, Highlighted )
|
||
|
|
||
|
QskPageIndicator( QQuickItem* parent = nullptr );
|
||
|
QskPageIndicator( int count, QQuickItem* parent = nullptr );
|
||
|
virtual ~QskPageIndicator();
|
||
|
|
||
|
int count() const;
|
||
|
|
||
|
qreal currentIndex() const;
|
||
|
|
||
|
Qt::Orientation orientation() const;
|
||
|
void setOrientation( Qt::Orientation );
|
||
|
|
||
|
virtual QSizeF contentsSizeHint() const override;
|
||
|
|
||
|
Q_SIGNALS:
|
||
|
void countChanged();
|
||
|
void currentIndexChanged();
|
||
|
void orientationChanged();
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void setCount( int count );
|
||
|
void setCurrentIndex( qreal index );
|
||
|
|
||
|
private:
|
||
|
class PrivateData;
|
||
|
std::unique_ptr< PrivateData > m_data;
|
||
|
};
|
||
|
|
||
|
#endif
|