-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfb0b3e
commit 54af5bc
Showing
2 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright (c) 2024 Ultimaker B.V. | ||
// Cura is released under the terms of the LGPLv3 or higher. | ||
|
||
import QtQuick 2.2 | ||
import QtQuick.Controls 2.1 | ||
|
||
import UM 1.5 as UM | ||
import Cura 1.1 as Cura | ||
|
||
import "../Dialogs" | ||
|
||
Cura.Menu | ||
{ | ||
id: exportMenu | ||
property alias model: meshWriters.model | ||
property bool selectionOnly: false | ||
|
||
Instantiator | ||
{ | ||
id: meshWriters | ||
Cura.MenuItem | ||
{ | ||
text: model.description | ||
onTriggered: | ||
{ | ||
var localDeviceId = "local_file" | ||
var file_name = PrintInformation.jobName | ||
var args = { "filter_by_machine": false, "limit_mimetypes": model.mime_type} | ||
if(exportMenu.selectionOnly) | ||
{ | ||
UM.OutputDeviceManager.requestWriteSelectionToDevice(localDeviceId, file_name, args) | ||
} | ||
else | ||
{ | ||
UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, file_name, args) | ||
} | ||
} | ||
shortcut: model.shortcut | ||
enabled: exportMenu.shouldBeVisible | ||
} | ||
onObjectAdded: function(index, object) { exportMenu.insertItem(index, object)} | ||
onObjectRemoved: function(index, object) { exportMenu.removeItem(object)} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters