2017-07-21 18:21:34 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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 )
|
2017-12-07 17:04:05 +01:00
|
|
|
Q_PROPERTY ( qreal currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged FINAL )
|
2017-07-21 18:21:34 +02:00
|
|
|
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
|