mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 06:55:53 +08:00
Build volume as parameter in config wizard custom printer
This commit is contained in:
parent
6d1eec0da6
commit
d9e7195b61
File diff suppressed because it is too large
Load Diff
@ -450,6 +450,14 @@ struct PageBedShape: ConfigWizardPage
|
|||||||
virtual void apply_custom_config(DynamicPrintConfig &config);
|
virtual void apply_custom_config(DynamicPrintConfig &config);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct PageBuildVolume : ConfigWizardPage
|
||||||
|
{
|
||||||
|
wxTextCtrl* build_volume;
|
||||||
|
|
||||||
|
PageBuildVolume(ConfigWizard* parent);
|
||||||
|
virtual void apply_custom_config(DynamicPrintConfig& config);
|
||||||
|
};
|
||||||
|
|
||||||
struct PageDiameters: ConfigWizardPage
|
struct PageDiameters: ConfigWizardPage
|
||||||
{
|
{
|
||||||
wxTextCtrl *diam_nozzle;
|
wxTextCtrl *diam_nozzle;
|
||||||
@ -584,6 +592,7 @@ struct ConfigWizard::priv
|
|||||||
PageBedShape *page_bed = nullptr;
|
PageBedShape *page_bed = nullptr;
|
||||||
PageDiameters *page_diams = nullptr;
|
PageDiameters *page_diams = nullptr;
|
||||||
PageTemperatures *page_temps = nullptr;
|
PageTemperatures *page_temps = nullptr;
|
||||||
|
PageBuildVolume* page_bvolume = nullptr;
|
||||||
|
|
||||||
// Pointers to all pages (regardless or whether currently part of the ConfigWizardIndex)
|
// Pointers to all pages (regardless or whether currently part of the ConfigWizardIndex)
|
||||||
std::vector<ConfigWizardPage*> all_pages;
|
std::vector<ConfigWizardPage*> all_pages;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user