Warning, /rolisteam/rolisteam/src/libraries/qml_views/rolistyle/Pane.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.15
0002 import QtQuick.Controls 2.15
0003 import QtQuick.Controls.impl 2.15
0004 import QtQuick.Templates 2.15 as T
0005 import Customization 1.0
0006 
0007 T.Pane {
0008     id: control
0009 
0010     property QtObject style: Theme.styleSheet("Palette")
0011 
0012     implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
0013                                 contentWidth + leftPadding + rightPadding)
0014     implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
0015                                  contentHeight + topPadding + bottomPadding)
0016 
0017     padding: 12
0018 
0019     background: Rectangle {
0020         color: control.style.base
0021     }
0022 
0023 }