mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 11:17:51 -06:00
Storing and recovering the "compatible_printers_condition"
and "inherits" fields from / to the AMF/3MF/Config files. The "compatible_printers_condition" are collected over all active profiles (one print, possibly multiple filament, and one printer profile) into a single vector.
This commit is contained in:
parent
082ed95a94
commit
1175dc95f6
6 changed files with 128 additions and 41 deletions
|
@ -147,12 +147,15 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->label = L("Compatible printers");
|
||||
def->default_value = new ConfigOptionStrings();
|
||||
|
||||
def = this->add("compatible_printers_condition", coString);
|
||||
// The following value is defined as a vector of strings, so it could
|
||||
// collect the "inherits" values over the print and filaments profiles
|
||||
// when storing into a project file (AMF, 3MF, Config ...)
|
||||
def = this->add("compatible_printers_condition", coStrings);
|
||||
def->label = L("Compatible printers condition");
|
||||
def->tooltip = L("A boolean expression using the configuration values of an active printer profile. "
|
||||
"If this expression evaluates to true, this profile is considered compatible "
|
||||
"with the active printer profile.");
|
||||
def->default_value = new ConfigOptionString();
|
||||
def->default_value = new ConfigOptionStrings { "" };
|
||||
|
||||
def = this->add("complete_objects", coBool);
|
||||
def->label = L("Complete individual objects");
|
||||
|
@ -819,12 +822,15 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloat(80);
|
||||
|
||||
def = this->add("inherits", coString);
|
||||
// The following value is defined as a vector of strings, so it could
|
||||
// collect the "inherits" values over the print and filaments profiles
|
||||
// when storing into a project file (AMF, 3MF, Config ...)
|
||||
def = this->add("inherits", coStrings);
|
||||
def->label = L("Inherits profile");
|
||||
def->tooltip = L("Name of the profile, from which this profile inherits.");
|
||||
def->full_width = true;
|
||||
def->height = 50;
|
||||
def->default_value = new ConfigOptionString("");
|
||||
def->default_value = new ConfigOptionStrings { "" };
|
||||
|
||||
def = this->add("interface_shells", coBool);
|
||||
def->label = L("Interface shells");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue