RectangleBackground.qml 803 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import QtQuick 1.0
  2. /*!
  3. * \file
  4. * \brief Rectangle component for local/remote view background.
  5. *
  6. * Defines the background component for main view.
  7. */
  8. Rectangle {
  9. id: myRectangleBackground
  10. width: 140
  11. height: 603
  12. radius: 15
  13. gradient: Gradient {
  14. GradientStop {
  15. position: 0.1
  16. color: "#ffffff"
  17. }
  18. GradientStop {
  19. position: 0.94
  20. color: "#ffffff"
  21. }
  22. GradientStop {
  23. position: 0.52
  24. color: "#7c6363"
  25. }
  26. }
  27. anchors.top: parent.top
  28. anchors.bottom: parent.bottom
  29. anchors.rightMargin: 29
  30. anchors.bottomMargin: 21
  31. anchors.topMargin: 16
  32. anchors.leftMargin: 20
  33. border.color: "#f9f6f6"
  34. border.width: 0
  35. }