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 "QskSubWindowAreaSkinlet.h"
|
|
|
|
#include "QskSubWindowArea.h"
|
2017-10-17 17:34:00 +02:00
|
|
|
#include "QskBoxOptions.h"
|
|
|
|
#include "QskBoxNode.h"
|
2017-07-21 18:21:34 +02:00
|
|
|
|
|
|
|
QskSubWindowAreaSkinlet::QskSubWindowAreaSkinlet( QskSkin* skin ):
|
|
|
|
Inherited( skin )
|
|
|
|
{
|
|
|
|
setNodeRoles( { PanelRole } );
|
|
|
|
}
|
|
|
|
|
|
|
|
QskSubWindowAreaSkinlet::~QskSubWindowAreaSkinlet() = default;
|
|
|
|
|
|
|
|
QRectF QskSubWindowAreaSkinlet::subControlRect(
|
|
|
|
const QskSkinnable* skinnable, QskAspect::Subcontrol subControl ) const
|
|
|
|
{
|
|
|
|
const auto area = static_cast< const QskSubWindowArea* >( skinnable );
|
|
|
|
|
|
|
|
if ( subControl == QskSubWindowArea::Panel )
|
|
|
|
{
|
2017-09-01 11:55:55 +02:00
|
|
|
return area->contentsRect();
|
2017-07-21 18:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Inherited::subControlRect( skinnable, subControl );
|
|
|
|
}
|
|
|
|
|
|
|
|
QSGNode* QskSubWindowAreaSkinlet::updateSubNode(
|
|
|
|
const QskSkinnable* skinnable, quint8 nodeRole, QSGNode* node ) const
|
|
|
|
{
|
|
|
|
const auto area = static_cast< const QskSubWindowArea* >( skinnable );
|
|
|
|
|
|
|
|
switch( nodeRole )
|
|
|
|
{
|
|
|
|
case PanelRole:
|
2017-09-01 11:55:55 +02:00
|
|
|
{
|
2017-07-21 18:21:34 +02:00
|
|
|
return updatePanelNode( area, node );
|
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
|
|
|
}
|
|
|
|
|
|
|
|
QSGNode* QskSubWindowAreaSkinlet::updatePanelNode(
|
|
|
|
const QskSubWindowArea* area, QSGNode* node ) const
|
|
|
|
{
|
|
|
|
const QRectF rect = subControlRect( area, QskSubWindowArea::Panel );
|
|
|
|
|
|
|
|
if ( !area->gradient().isValid() || rect.isEmpty() )
|
|
|
|
return nullptr;
|
|
|
|
|
2017-10-17 17:34:00 +02:00
|
|
|
auto boxNode = static_cast< QskBoxNode* >( node );
|
|
|
|
if ( boxNode == nullptr )
|
|
|
|
boxNode = new QskBoxNode();
|
2017-07-21 18:21:34 +02:00
|
|
|
|
2017-10-17 17:34:00 +02:00
|
|
|
QskBoxOptions options;
|
|
|
|
options.fillGradient = area->gradient();
|
|
|
|
boxNode->setBoxData( rect, options );
|
2017-07-21 18:21:34 +02:00
|
|
|
|
2017-10-17 17:34:00 +02:00
|
|
|
return boxNode;
|
2017-07-21 18:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "moc_QskSubWindowAreaSkinlet.cpp"
|