1234567891011121314151617 |
- // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
- import QtQuick 1.1
- Item {
- property alias gradient: horizGradient.gradient
- clip: true
- Rectangle {
- id: horizGradient
- //border.color: "gray"
- width: parent.height
- height: parent.width
- anchors.centerIn: parent
- rotation: 270
- }
- }
|