TitleBar.qml 454 B

123456789101112131415161718192021
  1. // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
  2. import QtQuick 1.1
  3. Rectangle {
  4. id: root
  5. height: 80
  6. //border.width: 2
  7. color: "#8f00FF"
  8. anchors { left: parent.left; right: parent.right; top: parent.top }
  9. Image {
  10. id: title
  11. anchors.verticalCenter: parent.verticalCenter
  12. anchors.left: parent.left
  13. anchors.leftMargin: 15
  14. source: "qrc:/violet/title"
  15. }
  16. }