Menu.qml 576 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import UM 1.5 as UM
  5. import Cura 1.0 as Cura
  6. //
  7. // Menu with Cura styling.
  8. //
  9. UM.Menu
  10. {
  11. id: menu
  12. topPadding: UM.Theme.getSize("narrow_margin").height
  13. bottomPadding: UM.Theme.getSize("narrow_margin").height
  14. padding: 0
  15. implicitWidth: UM.Theme.getSize("menu").width
  16. delegate: Cura.MenuItem {}
  17. background: Rectangle
  18. {
  19. color: UM.Theme.getColor("main_background")
  20. border.color: UM.Theme.getColor("lining")
  21. }
  22. }