qskinny/src/controls/QskFocusIndicatorSkinlet.h
2017-09-01 11:55:55 +02:00

42 lines
1.0 KiB
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_FOCUS_INDICATOR_SKINLET_H
#define QSK_FOCUS_INDICATOR_SKINLET_H
#include "QskGlobal.h"
#include "QskSkinlet.h"
class QskFocusIndicator;
class QSK_EXPORT QskFocusIndicatorSkinlet : public QskSkinlet
{
Q_GADGET
using Inherited = QskSkinlet;
public:
enum NodeRole
{
FrameRole
};
Q_INVOKABLE QskFocusIndicatorSkinlet( QskSkin* = nullptr );
virtual ~QskFocusIndicatorSkinlet();
virtual QRectF subControlRect( const QskSkinnable*,
QskAspect::Subcontrol ) const override;
protected:
virtual QSGNode* updateSubNode( const QskSkinnable*,
quint8 nodeRole, QSGNode* ) const override;
private:
QSGNode* updateFrameNode( const QskFocusIndicator*, QSGNode* ) const;
};
#endif