2020-09-30 09:57:07 +00:00
|
|
|
#ifndef UPANDDOWNBUTTON_H
|
|
|
|
#define UPANDDOWNBUTTON_H
|
|
|
|
|
|
|
|
#include <QskLinearBox.h>
|
|
|
|
#include <QskPushButton.h>
|
|
|
|
|
|
|
|
class RoundButton : QskPushButton
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QSK_SUBCONTROLS( Panel )
|
2021-04-07 13:11:20 +00:00
|
|
|
QSK_STATES( Top )
|
2020-09-30 09:57:07 +00:00
|
|
|
|
2021-04-07 13:11:20 +00:00
|
|
|
RoundButton( QskAspect::Placement placement, QQuickItem* parent );
|
2020-09-30 09:57:07 +00:00
|
|
|
|
|
|
|
QskAspect::Subcontrol effectiveSubcontrol(
|
|
|
|
QskAspect::Subcontrol subControl ) const override final;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UpAndDownButton : public QskLinearBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
UpAndDownButton( QQuickItem* parent );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // UPANDDOWNBUTTON_H
|