mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 07:27:41 -06:00
NEW: add slice all and print all buttons
1. export all sliced files 2. support to print all sliced files Change-Id: I59345370fb590b4c3c70b9b71385b25342a22e02 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
parent
ad636acac7
commit
71acbec38d
8 changed files with 135 additions and 52 deletions
|
@ -112,6 +112,7 @@ class MainFrame : public DPIFrame
|
|||
bool can_export_toolpaths() const;
|
||||
bool can_export_supports() const;
|
||||
bool can_export_gcode() const;
|
||||
bool can_export_all_gcode() const;
|
||||
bool can_print_3mf() const;
|
||||
bool can_send_gcode() const;
|
||||
//bool can_export_gcode_sd() const;
|
||||
|
@ -169,6 +170,7 @@ class MainFrame : public DPIFrame
|
|||
|
||||
ESettingsLayout m_layout{ ESettingsLayout::Unknown };
|
||||
|
||||
|
||||
enum SliceSelectType
|
||||
{
|
||||
eSliceAll = 0,
|
||||
|
@ -207,7 +209,8 @@ public:
|
|||
eExportGcode = 3,
|
||||
eSendGcode = 4,
|
||||
eSendToPrinter = 5,
|
||||
eUploadGcode = 6
|
||||
eUploadGcode = 6,
|
||||
eExportAllSlicedFile = 7
|
||||
};
|
||||
|
||||
//BBS: add slice&&print status update logic
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue