InfoTray.qml 399 B

123456789101112131415161718192021222324252627
  1. import QtQuick 2.6
  2. // Required for effortless web serving!
  3. import ".."
  4. Item {
  5. width: childrenRect.width
  6. height: childrenRect.height
  7. Rectangle {
  8. anchors.fill: parent
  9. opacity: 0.5
  10. color: "black"
  11. }
  12. Row {
  13. spacing: 10.0
  14. Resolution {
  15. }
  16. ItemCount {
  17. }
  18. FPS {
  19. }
  20. CollectionSize {
  21. }
  22. }
  23. }