ToolboxDownloadsPage.qml 961 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Copyright (c) 2018 Ultimaker B.V.
  2. // Toolbox is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import QtQuick.Controls 1.4
  5. import QtQuick.Controls.Styles 1.4
  6. import UM 1.1 as UM
  7. ScrollView
  8. {
  9. frameVisible: false
  10. width: parent.width
  11. height: parent.height
  12. style: UM.Theme.styles.scrollview
  13. Column
  14. {
  15. width: parent.width - 2 * padding
  16. spacing: UM.Theme.getSize("default_margin").height
  17. padding: UM.Theme.getSize("wide_margin").height
  18. height: childrenRect.height + 2 * padding
  19. ToolboxDownloadsShowcase
  20. {
  21. id: showcase
  22. width: parent.width
  23. }
  24. Rectangle
  25. {
  26. color: UM.Theme.getColor("lining")
  27. width: parent.width
  28. height: UM.Theme.getSize("default_lining").height
  29. }
  30. ToolboxDownloadsGrid
  31. {
  32. id: allPlugins
  33. width: parent.width
  34. }
  35. }
  36. }