qskinny/src/controls/QskPushButtonSkinlet.h

52 lines
1.4 KiB
C
Raw Normal View History

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_PUSH_BUTTON_SKINLET_H
#define QSK_PUSH_BUTTON_SKINLET_H
#include "QskGlobal.h"
#include "QskSkinlet.h"
class QskPushButton;
class QSK_EXPORT QskPushButtonSkinlet : public QskSkinlet
{
Q_GADGET
using Inherited = QskSkinlet;
public:
enum NodeRole
{
ButtonRole,
TextRole,
GraphicRole
};
Q_INVOKABLE QskPushButtonSkinlet( QskSkin* = nullptr );
virtual ~QskPushButtonSkinlet();
virtual QRectF subControlRect(
const QskSkinnable*, QskAspect::Subcontrol ) const override;
virtual qreal buttonShift( const QskPushButton* ) const;
protected:
virtual QSGNode* updateSubNode( const QskSkinnable*,
quint8 nodeRole, QSGNode* ) const override;
private:
QRectF panelRect( const QskPushButton* ) const;
QRectF textRect( const QskPushButton* ) const;
QRectF graphicRect( const QskPushButton* ) const;
QSGNode* updateButtonNode( const QskPushButton*, QSGNode* ) const;
QSGNode* updateTextNode( const QskPushButton*, QSGNode* ) const;
QSGNode* updateGraphicNode( const QskPushButton*, QSGNode* ) const;
};
#endif