Header.qml 778 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. import QtQuick 1.1
  5. import com.nokia.meego 1.0
  6. Rectangle {
  7. property alias text: label.text
  8. anchors {
  9. top: parent.top
  10. left: parent.left
  11. right: parent.right
  12. }
  13. color: theme.inverted ? "black" : "white"
  14. height: 40
  15. Rectangle {
  16. id: border
  17. width: parent.width
  18. height: 2
  19. anchors.bottom: parent.bottom
  20. z: parent.z + 1
  21. color: "#444444"
  22. }
  23. Label {
  24. id: label
  25. anchors {
  26. fill: parent
  27. rightMargin: 10
  28. }
  29. color: theme.inverted ? "white" : "black"
  30. horizontalAlignment: Text.AlignRight
  31. verticalAlignment: Text.AlignVCenter
  32. }
  33. }