2021-10-24 19:50:35 +00:00
|
|
|
|
/*
|
2022-01-06 23:38:21 +00:00
|
|
|
|
Copyright 2021-2022 Peter Repukat - FlatspotSoftware
|
2021-10-24 19:50:35 +00:00
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
import QtQuick 2.9
|
2021-10-24 02:07:56 +00:00
|
|
|
|
import QtQuick.Controls 2.9
|
|
|
|
|
import QtQuick.Controls.Material 2.9
|
|
|
|
|
import QtQuick.Controls.Material.impl 2.9
|
|
|
|
|
|
|
|
|
|
Pane {
|
|
|
|
|
id: control
|
|
|
|
|
property int radius: 0
|
|
|
|
|
property color color: control.Material.backgroundColor
|
|
|
|
|
property real bgOpacity: 1
|
|
|
|
|
background: Rectangle {
|
|
|
|
|
color: parent.color
|
|
|
|
|
opacity: parent.bgOpacity
|
|
|
|
|
radius: control.Material.elevation > 0 ? control.radius : 0
|
|
|
|
|
|
|
|
|
|
layer.enabled: control.enabled && control.Material.elevation > 0
|
|
|
|
|
layer.effect: ElevationEffect {
|
|
|
|
|
elevation: control.Material.elevation
|
|
|
|
|
}
|
2022-01-07 01:46:52 +00:00
|
|
|
|
Image {
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
|
source: "qrc:/noise.png"
|
|
|
|
|
fillMode: Image.Tile
|
|
|
|
|
opacity: 0.035
|
|
|
|
|
}
|
2021-10-24 02:07:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|