2023-02-26 17:04:47 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
|
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2023-02-08 21:49:04 +01:00
|
|
|
#ifndef QSK_RADIO_BOX_SKINLET_H
|
|
|
|
#define QSK_RADIO_BOX_SKINLET_H
|
|
|
|
|
|
|
|
#include "QskSkinlet.h"
|
|
|
|
|
|
|
|
class QskRadioBox;
|
|
|
|
|
|
|
|
class QSK_EXPORT QskRadioBoxSkinlet : public QskSkinlet
|
|
|
|
{
|
2023-02-25 23:31:29 +01:00
|
|
|
Q_GADGET
|
2023-02-08 21:49:04 +01:00
|
|
|
|
|
|
|
using Inherited = QskSkinlet;
|
|
|
|
|
2023-02-25 23:31:29 +01:00
|
|
|
public:
|
|
|
|
enum NodeRole
|
2023-02-08 21:49:04 +01:00
|
|
|
{
|
2023-02-25 23:31:29 +01:00
|
|
|
PanelRole,
|
|
|
|
ButtonRole,
|
2023-03-05 16:31:55 +01:00
|
|
|
CheckPanelRole,
|
|
|
|
CheckIndicatorRole,
|
2023-02-25 23:31:29 +01:00
|
|
|
TextRole,
|
|
|
|
RippleRole,
|
2023-02-08 21:49:04 +01:00
|
|
|
|
2023-02-25 23:31:29 +01:00
|
|
|
RoleCount
|
2023-02-08 21:49:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_INVOKABLE QskRadioBoxSkinlet( QskSkin* = nullptr );
|
|
|
|
~QskRadioBoxSkinlet() override;
|
|
|
|
|
|
|
|
QRectF subControlRect( const QskSkinnable*,
|
|
|
|
const QRectF&, QskAspect::Subcontrol ) const override;
|
|
|
|
|
|
|
|
QSizeF sizeHint( const QskSkinnable*,
|
|
|
|
Qt::SizeHint, const QSizeF& ) const override;
|
|
|
|
|
|
|
|
int sampleCount( const QskSkinnable*, QskAspect::Subcontrol ) const override;
|
|
|
|
|
|
|
|
QRectF sampleRect( const QskSkinnable*,
|
|
|
|
const QRectF&, QskAspect::Subcontrol, int index ) const override;
|
|
|
|
|
|
|
|
QskAspect::States sampleStates( const QskSkinnable*,
|
|
|
|
QskAspect::Subcontrol, int index ) const override;
|
2023-02-25 23:31:29 +01:00
|
|
|
|
2023-02-08 21:49:04 +01:00
|
|
|
protected:
|
|
|
|
QSGNode* updateSubNode( const QskSkinnable*,
|
|
|
|
quint8 nodeRole, QSGNode* ) const override;
|
|
|
|
|
|
|
|
QSGNode* updateSampleNode( const QskSkinnable*,
|
|
|
|
QskAspect::Subcontrol, int index, QSGNode* ) const override;
|
|
|
|
|
|
|
|
private:
|
2023-02-26 17:04:47 +01:00
|
|
|
QRectF textRect( const QskRadioBox*, const QRectF&, int ) const;
|
2023-03-05 16:31:55 +01:00
|
|
|
QRectF checkPanelRect( const QskRadioBox*, const QRectF&, int index ) const;
|
2023-03-03 12:49:22 +01:00
|
|
|
QRectF buttonRect( const QskRadioBox*, const QRectF&, int index ) const;
|
2023-02-26 17:04:47 +01:00
|
|
|
|
|
|
|
QRectF rippleRect( const QskRadioBox*, const QRectF& ) const;
|
2023-02-08 21:49:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|