controls/QskPageIndicator.h

Classes

  Name
class QskPageIndicator

Source code

/******************************************************************************
 * 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 QSK_EXPORT QskPageIndicator : public QskControl
{
    Q_OBJECT

    Q_PROPERTY( int count READ count
        WRITE setCount NOTIFY countChanged FINAL )

    Q_PROPERTY( qreal 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 );

    ~QskPageIndicator() override;

    int count() const;

    qreal currentIndex() const;

    Qt::Orientation orientation() const;
    void setOrientation( Qt::Orientation );

  Q_SIGNALS:
    void countChanged( int );
    void currentIndexChanged( qreal );
    void orientationChanged( Qt::Orientation );

  public Q_SLOTS:
    void setCount( int count );
    void setCurrentIndex( qreal index );

  private:
    class PrivateData;
    std::unique_ptr< PrivateData > m_data;
};

#endif

Updated on 28 July 2023 at 14:02:29 CEST