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

56 lines
2.6 KiB
QML

import QtQuick 1.0
Rectangle {
width: 450; height: 250
color: "white"
Rectangle {
anchors.top: parent.verticalCenter
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
color: "#eeeeee"
}
Grid {
anchors.centerIn: parent
columns: 8; rows:4; spacing: 15
MyRect { color: "lightsteelblue" }
MyRect { color: "lightsteelblue"; border: "gray" }
MyRect { color: "lightsteelblue"; radius: 10 }
MyRect { color: "lightsteelblue"; radius: 10; border: "gray" }
GradientRect { color: "lightsteelblue" }
GradientRect { color: "lightsteelblue"; border: "gray" }
GradientRect { color: "lightsteelblue"; radius: 10 }
GradientRect { color: "lightsteelblue"; radius: 10; border: "gray" }
MyRect { color: "thistle"; rotation: 10 }
MyRect { color: "thistle"; border: "gray"; rotation: 10 }
MyRect { color: "thistle"; radius: 10; rotation: 10 }
MyRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10 }
GradientRect { color: "thistle"; rotation: 10 }
GradientRect { color: "thistle"; border: "gray"; rotation: 10 }
GradientRect { color: "thistle"; radius: 10; rotation: 10 }
GradientRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10 }
MyRect { color: "lightsteelblue"; smooth: true }
MyRect { color: "lightsteelblue"; border: "gray"; smooth: true }
MyRect { color: "lightsteelblue"; radius: 10; smooth: true }
MyRect { color: "lightsteelblue"; radius: 10; border: "gray"; smooth: true }
GradientRect { color: "lightsteelblue"; smooth: true }
GradientRect { color: "lightsteelblue"; border: "gray"; smooth: true }
GradientRect { color: "lightsteelblue"; radius: 10; smooth: true }
GradientRect { color: "lightsteelblue"; radius: 10; border: "gray"; smooth: true }
MyRect { color: "thistle"; rotation: 10; smooth: true }
MyRect { color: "thistle"; border: "gray"; rotation: 10; smooth: true }
MyRect { color: "thistle"; radius: 10; rotation: 10; smooth: true }
MyRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10; smooth: true }
GradientRect { color: "thistle"; rotation: 10; smooth: true }
GradientRect { color: "thistle"; border: "gray"; rotation: 10; smooth: true }
GradientRect { color: "thistle"; radius: 10; rotation: 10; smooth: true }
GradientRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10; smooth: true }
}
}