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
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "QskFocusIndicatorSkinlet.h"
|
|
|
|
#include "QskFocusIndicator.h"
|
|
|
|
|
|
|
|
QskFocusIndicatorSkinlet::QskFocusIndicatorSkinlet( QskSkin* skin ):
|
|
|
|
Inherited( skin )
|
|
|
|
{
|
|
|
|
setNodeRoles( { FrameRole } );
|
|
|
|
}
|
|
|
|
|
|
|
|
QskFocusIndicatorSkinlet::~QskFocusIndicatorSkinlet() = default;
|
|
|
|
|
|
|
|
QRectF QskFocusIndicatorSkinlet::subControlRect(
|
|
|
|
const QskSkinnable* skinnable, QskAspect::Subcontrol subControl ) const
|
|
|
|
{
|
|
|
|
const auto indicator = static_cast< const QskFocusIndicator* >( skinnable );
|
|
|
|
|
|
|
|
if ( subControl == QskFocusIndicator::Panel )
|
|
|
|
{
|
2018-02-07 19:30:34 +01:00
|
|
|
return indicator->rect();
|
2017-07-21 18:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Inherited::subControlRect( skinnable, subControl );
|
|
|
|
}
|
|
|
|
|
|
|
|
QSGNode* QskFocusIndicatorSkinlet::updateSubNode(
|
|
|
|
const QskSkinnable* skinnable, quint8 nodeRole, QSGNode* node ) const
|
|
|
|
{
|
|
|
|
const auto indicator = static_cast< const QskFocusIndicator* >( skinnable );
|
|
|
|
|
|
|
|
switch( nodeRole )
|
|
|
|
{
|
|
|
|
case FrameRole:
|
2017-09-01 11:55:55 +02:00
|
|
|
{
|
2017-10-17 17:34:00 +02:00
|
|
|
return updateBoxNode( indicator, node, QskFocusIndicator::Panel );
|
2017-09-01 11:55:55 +02:00
|
|
|
}
|
2017-07-21 18:21:34 +02:00
|
|
|
}
|
2017-09-01 11:55:55 +02:00
|
|
|
|
|
|
|
return Inherited::updateSubNode( skinnable, nodeRole, node );
|
2017-07-21 18:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "moc_QskFocusIndicatorSkinlet.cpp"
|