ManagedPackages.qml 795 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.15
  4. import QtQuick.Controls 2.15
  5. import QtQuick.Layouts 1.15
  6. import Marketplace 1.0 as Marketplace
  7. import UM 1.4 as UM
  8. Packages
  9. {
  10. pageTitle: catalog.i18nc("@header", "Manage packages")
  11. bannerVisible: CuraApplication.shouldShowMarketPlaceManagePackagesBanner()
  12. bannerIcon: "ArrowDoubleCircleRight"
  13. bannerBody: catalog.i18nc("@text", "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly.")
  14. onRemoveBanner: function() {
  15. CuraApplication.closeMarketPlaceManagePackagesBanner();
  16. bannerVisible = false;
  17. }
  18. model: Marketplace.LocalPackageList
  19. {
  20. }
  21. }