Alessandro Bonazzi 8c43d5cf2f Patch level : 12.00
Files correlati     : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe

Bug                 :

Commento:
Merge 1.0 libraries
2025-04-06 00:42:21 +02:00

26 lines
738 B
QML

import QtQuick 1.0
Item {
id: rect
property color color
property color border : Qt.rgba(0,0,0,0)
property int rotation
property int radius
property int borderWidth
property bool smooth: false
width: 40; height: 40
Item {
anchors.centerIn: parent; rotation: rect.rotation;
Rectangle {
anchors.centerIn: parent; width: 40; height: 40
border.color: rect.border; border.width: rect.border != Qt.rgba(0,0,0,0) ? 2 : 0
radius: rect.radius; smooth: rect.smooth
gradient: Gradient {
GradientStop { position: 0.0; color: rect.color }
GradientStop { position: 1.0; color: "white" }
}
}
}
}