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

0001 import QtQuick 2.12
0002 import QtQuick.Controls 2.12
0003 import QtQuick.Controls.impl 2.12
0004 import QtQuick.Templates 2.12 as T
0005 import Customization 1.0
0006 
0007 T.ToolBar {
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     background: Rectangle {
0018         implicitHeight: 40
0019         color: control.style.button
0020     }
0021 }
0022