2023-04-06 09:23:37 +02:00

25 lines
620 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#pragma once
#include <QskBoundedValueInput.h>
class Dial : public QskBoundedValueInput
{
Q_OBJECT
public:
QSK_SUBCONTROLS( Panel, TickLabels, Knob, Needle )
Dial( QQuickItem* parent = nullptr );
QVector< QString > tickLabels() const;
void setTickLabels( const QVector< QString >& );
private:
QVector< QString > m_tickLabels;
};