Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/slic3r/GUI/Tab.cpp')
-rw-r--r--xs/src/slic3r/GUI/Tab.cpp1695
1 files changed, 1417 insertions, 278 deletions
diff --git a/xs/src/slic3r/GUI/Tab.cpp b/xs/src/slic3r/GUI/Tab.cpp
index d0f9f0ce3..5daf2784d 100644
--- a/xs/src/slic3r/GUI/Tab.cpp
+++ b/xs/src/slic3r/GUI/Tab.cpp
@@ -3,9 +3,13 @@
#include "PresetBundle.hpp"
#include "PresetHints.hpp"
#include "../../libslic3r/Utils.hpp"
+
#include "slic3r/Utils/Http.hpp"
-#include "slic3r/Utils/OctoPrint.hpp"
+#include "slic3r/Utils/PrintHost.hpp"
+#include "slic3r/Utils/Serial.hpp"
#include "BonjourDialog.hpp"
+#include "WipeTowerDialog.hpp"
+#include "ButtonsDescription.hpp"
#include <wx/app.h>
#include <wx/button.h>
@@ -20,20 +24,42 @@
#include <wx/filedlg.h>
#include <boost/algorithm/string/predicate.hpp>
+#include "wxExtensions.hpp"
+#include <wx/wupdlock.h>
+
+#include <chrono>
namespace Slic3r {
namespace GUI {
+static wxString dots("…", wxConvUTF8);
+
// sub new
void Tab::create_preset_tab(PresetBundle *preset_bundle)
{
m_preset_bundle = preset_bundle;
// Vertical sizer to hold the choice menu and the rest of the page.
+#ifdef __WXOSX__
+ auto *main_sizer = new wxBoxSizer(wxVERTICAL);
+ main_sizer->SetSizeHints(this);
+ this->SetSizer(main_sizer);
+
+ // Create additional panel to Fit() it from OnActivate()
+ // It's needed for tooltip showing on OSX
+ m_tmp_panel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxBK_LEFT | wxTAB_TRAVERSAL);
+ auto panel = m_tmp_panel;
+ auto sizer = new wxBoxSizer(wxVERTICAL);
+ m_tmp_panel->SetSizer(sizer);
+ m_tmp_panel->Layout();
+
+ main_sizer->Add(m_tmp_panel, 1, wxEXPAND | wxALL, 0);
+#else
Tab *panel = this;
auto *sizer = new wxBoxSizer(wxVERTICAL);
sizer->SetSizeHints(panel);
panel->SetSizer(sizer);
+#endif //__WXOSX__
// preset chooser
m_presets_choice = new wxBitmapComboBox(panel, wxID_ANY, "", wxDefaultPosition, wxSize(270, -1), 0, 0,wxCB_READONLY);
@@ -50,15 +76,64 @@ void Tab::create_preset_tab(PresetBundle *preset_bundle)
if (wxMSW) m_btn_delete_preset->SetBackgroundColour(color);
m_show_incompatible_presets = false;
- m_bmp_show_incompatible_presets = new wxBitmap(from_u8(Slic3r::var("flag-red-icon.png")), wxBITMAP_TYPE_PNG);
- m_bmp_hide_incompatible_presets = new wxBitmap(from_u8(Slic3r::var("flag-green-icon.png")), wxBITMAP_TYPE_PNG);
- m_btn_hide_incompatible_presets = new wxBitmapButton(panel, wxID_ANY, *m_bmp_hide_incompatible_presets, wxDefaultPosition, wxDefaultSize, wxBORDER_NONE);
+ m_bmp_show_incompatible_presets.LoadFile(from_u8(Slic3r::var("flag-red-icon.png")), wxBITMAP_TYPE_PNG);
+ m_bmp_hide_incompatible_presets.LoadFile(from_u8(Slic3r::var("flag-green-icon.png")), wxBITMAP_TYPE_PNG);
+ m_btn_hide_incompatible_presets = new wxBitmapButton(panel, wxID_ANY, m_bmp_hide_incompatible_presets, wxDefaultPosition, wxDefaultSize, wxBORDER_NONE);
if (wxMSW) m_btn_hide_incompatible_presets->SetBackgroundColour(color);
m_btn_save_preset->SetToolTip(_(L("Save current ")) + m_title);
m_btn_delete_preset->SetToolTip(_(L("Delete this preset")));
m_btn_delete_preset->Disable();
+ m_undo_btn = new wxButton(panel, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT | wxNO_BORDER);
+ m_undo_to_sys_btn = new wxButton(panel, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT | wxNO_BORDER);
+ m_question_btn = new wxButton(panel, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT | wxNO_BORDER);
+ if (wxMSW) {
+ m_undo_btn->SetBackgroundColour(color);
+ m_undo_to_sys_btn->SetBackgroundColour(color);
+ m_question_btn->SetBackgroundColour(color);
+ }
+
+ m_question_btn->SetToolTip(_(L("Hover the cursor over buttons to find more information \n"
+ "or click this button.")));
+
+ // Determine the theme color of OS (dark or light)
+ auto luma = get_colour_approx_luma(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
+ // Bitmaps to be shown on the "Revert to system" aka "Lock to system" button next to each input field.
+ m_bmp_value_lock .LoadFile(from_u8(var("sys_lock.png")), wxBITMAP_TYPE_PNG);
+ m_bmp_value_unlock .LoadFile(from_u8(var(luma >= 128 ? "sys_unlock.png" : "sys_unlock_grey.png")), wxBITMAP_TYPE_PNG);
+ m_bmp_non_system = &m_bmp_white_bullet;
+ // Bitmaps to be shown on the "Undo user changes" button next to each input field.
+ m_bmp_value_revert .LoadFile(from_u8(var(luma >= 128 ? "action_undo.png" : "action_undo_grey.png")), wxBITMAP_TYPE_PNG);
+ m_bmp_white_bullet .LoadFile(from_u8(var("bullet_white.png")), wxBITMAP_TYPE_PNG);
+ m_bmp_question .LoadFile(from_u8(var("question_mark_01.png")), wxBITMAP_TYPE_PNG);
+
+ fill_icon_descriptions();
+ set_tooltips_text();
+
+ m_undo_btn->SetBitmap(m_bmp_white_bullet);
+ m_undo_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent){ on_roll_back_value(); }));
+ m_undo_to_sys_btn->SetBitmap(m_bmp_white_bullet);
+ m_undo_to_sys_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent){ on_roll_back_value(true); }));
+ m_question_btn->SetBitmap(m_bmp_question);
+ m_question_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent)
+ {
+ auto dlg = new ButtonsDescription(this, &m_icon_descriptions);
+ if (dlg->ShowModal() == wxID_OK){
+ // Colors for ui "decoration"
+ for (Tab *tab : get_tabs_list()){
+ tab->m_sys_label_clr = get_label_clr_sys();
+ tab->m_modified_label_clr = get_label_clr_modified();
+ tab->update_labels_colour();
+ }
+ }
+ }));
+
+ // Colors for ui "decoration"
+ m_sys_label_clr = get_label_clr_sys();
+ m_modified_label_clr = get_label_clr_modified();
+ m_default_text_clr = get_label_clr_default();
+
m_hsizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(m_hsizer, 0, wxBOTTOM, 3);
m_hsizer->Add(m_presets_choice, 1, wxLEFT | wxRIGHT | wxTOP | wxALIGN_CENTER_VERTICAL, 3);
@@ -68,6 +143,12 @@ void Tab::create_preset_tab(PresetBundle *preset_bundle)
m_hsizer->Add(m_btn_delete_preset, 0, wxALIGN_CENTER_VERTICAL);
m_hsizer->AddSpacer(16);
m_hsizer->Add(m_btn_hide_incompatible_presets, 0, wxALIGN_CENTER_VERTICAL);
+ m_hsizer->AddSpacer(64);
+ m_hsizer->Add(m_undo_to_sys_btn, 0, wxALIGN_CENTER_VERTICAL);
+ m_hsizer->Add(m_undo_btn, 0, wxALIGN_CENTER_VERTICAL);
+ m_hsizer->AddSpacer(32);
+ m_hsizer->Add(m_question_btn, 0, wxALIGN_CENTER_VERTICAL);
+// m_hsizer->Add(m_cc_presets_choice, 1, wxLEFT | wxRIGHT | wxTOP | wxALIGN_CENTER_VERTICAL, 3);
//Horizontal sizer to hold the tree and the selected page.
m_hsizer = new wxBoxSizer(wxHORIZONTAL);
@@ -98,10 +179,18 @@ void Tab::create_preset_tab(PresetBundle *preset_bundle)
//! select_preset(m_presets_choice->GetStringSelection().ToStdString());
//! we doing next:
int selected_item = m_presets_choice->GetSelection();
+ if (m_selected_preset_item == selected_item && !m_presets->current_is_dirty())
+ return;
if (selected_item >= 0){
std::string selected_string = m_presets_choice->GetString(selected_item).ToUTF8().data();
+ if (selected_string.find("-------") == 0
+ /*selected_string == "------- System presets -------" ||
+ selected_string == "------- User presets -------"*/){
+ m_presets_choice->SetSelection(m_selected_preset_item);
+ return;
+ }
+ m_selected_preset_item = selected_item;
select_preset(selected_string);
- update_changed_ui();
}
}));
@@ -117,7 +206,15 @@ void Tab::create_preset_tab(PresetBundle *preset_bundle)
update();
}
-PageShp Tab::add_options_page(wxString title, std::string icon, bool is_extruder_pages/* = false*/)
+void Tab::load_initial_data()
+{
+ m_config = &m_presets->get_edited_preset().config;
+ m_bmp_non_system = m_presets->get_selected_preset_parent() ? &m_bmp_value_unlock : &m_bmp_white_bullet;
+ m_ttg_non_system = m_presets->get_selected_preset_parent() ? &m_ttg_value_unlock : &m_ttg_white_bullet_ns;
+ m_tt_non_system = m_presets->get_selected_preset_parent() ? &m_tt_value_unlock : &m_ttg_white_bullet_ns;
+}
+
+Slic3r::GUI::PageShp Tab::add_options_page(const wxString& title, const std::string& icon, bool is_extruder_pages /*= false*/)
{
// Index of icon in an icon list $self->{icons}.
auto icon_idx = 0;
@@ -132,96 +229,355 @@ PageShp Tab::add_options_page(wxString title, std::string icon, bool is_extruder
}
}
// Initialize the page.
- PageShp page(new Page(this, title, icon_idx));
+#ifdef __WXOSX__
+ auto panel = m_tmp_panel;
+#else
+ auto panel = this;
+#endif
+ PageShp page(new Page(panel, title, icon_idx));
page->SetScrollbars(1, 1, 1, 1);
page->Hide();
m_hsizer->Add(page.get(), 1, wxEXPAND | wxLEFT, 5);
- if (!is_extruder_pages)
+
+ if (!is_extruder_pages)
m_pages.push_back(page);
page->set_config(m_config);
return page;
}
-template<class T>
-void add_correct_opts_to_dirty_options(const std::string &opt_key, std::vector<std::string> *vec, TabPrinter *tab)
+void Tab::OnActivate()
{
- auto opt_init = static_cast<T*>(tab->m_presets->get_selected_preset().config.option(opt_key));
- auto opt_cur = static_cast<T*>(tab->m_config->option(opt_key));
- int opt_init_max_id = opt_init->values.size()-1;
- for (int i = 0; i < opt_cur->values.size(); i++)
+#ifdef __WXOSX__
+ wxWindowUpdateLocker noUpdates(this);
+
+ auto size = GetSizer()->GetSize();
+ m_tmp_panel->GetSizer()->SetMinSize(size.x + m_size_move, size.y);
+ Fit();
+ m_size_move *= -1;
+#endif // __WXOSX__
+}
+
+void Tab::update_labels_colour()
+{
+ Freeze();
+ //update options "decoration"
+ for (const auto opt : m_options_list)
{
- int init_id = i <= opt_init_max_id ? i : 0;
- if (opt_cur->values[i] != opt_init->values[init_id])
- vec->emplace_back(opt_key + "#" + std::to_string(i));
+ const wxColour *color = &m_sys_label_clr;
+
+ // value isn't equal to system value
+ if ((opt.second & osSystemValue) == 0){
+ // value is equal to last saved
+ if ((opt.second & osInitValue) != 0)
+ color = &m_default_text_clr;
+ // value is modified
+ else
+ color = &m_modified_label_clr;
+ }
+ if (opt.first == "bed_shape" || opt.first == "compatible_printers") {
+ if (m_colored_Label != nullptr) {
+ m_colored_Label->SetForegroundColour(*color);
+ m_colored_Label->Refresh(true);
+ }
+ continue;
+ }
+
+ Field* field = get_field(opt.first);
+ if (field == nullptr) continue;
+ field->set_label_colour_force(color);
+ }
+ Thaw();
+
+ auto cur_item = m_treectrl->GetFirstVisibleItem();
+ while (cur_item){
+ auto title = m_treectrl->GetItemText(cur_item);
+ for (auto page : m_pages)
+ {
+ if (page->title() != title)
+ continue;
+
+ const wxColor *clr = !page->m_is_nonsys_values ? &m_sys_label_clr :
+ page->m_is_modified_values ? &m_modified_label_clr :
+ &m_default_text_clr;
+
+ m_treectrl->SetItemTextColour(cur_item, *clr);
+ break;
+ }
+ cur_item = m_treectrl->GetNextVisible(cur_item);
}
}
// Update UI according to changes
void Tab::update_changed_ui()
{
- auto dirty_options = m_presets->current_dirty_options();
+ if (m_postpone_update_ui)
+ return;
- if (name() == "printer"){
- // Update dirty_options in case changes of Extruder's options
+ const bool deep_compare = (m_name == "printer" || m_name == "sla_material");
+ auto dirty_options = m_presets->current_dirty_options(deep_compare);
+ auto nonsys_options = m_presets->current_different_from_parent_options(deep_compare);
+ if (name() == "printer"){
TabPrinter* tab = static_cast<TabPrinter*>(this);
- std::vector<std::string> new_dirty;
- for (auto opt_key : dirty_options)
+ if (tab->m_initial_extruders_count != tab->m_extruders_count)
+ dirty_options.emplace_back("extruders_count");
+ if (tab->m_sys_extruders_count != tab->m_extruders_count)
+ nonsys_options.emplace_back("extruders_count");
+ }
+
+ for (auto& it : m_options_list)
+ it.second = m_opt_status_value;
+
+ for (auto opt_key : dirty_options) m_options_list[opt_key] &= ~osInitValue;
+ for (auto opt_key : nonsys_options) m_options_list[opt_key] &= ~osSystemValue;
+
+ Freeze();
+ //update options "decoration"
+ for (const auto opt : m_options_list)
+ {
+ bool is_nonsys_value = false;
+ bool is_modified_value = true;
+ const wxBitmap *sys_icon = &m_bmp_value_lock;
+ const wxBitmap *icon = &m_bmp_value_revert;
+
+ const wxColour *color = &m_sys_label_clr;
+
+ const wxString *sys_tt = &m_tt_value_lock;
+ const wxString *tt = &m_tt_value_revert;
+
+ // value isn't equal to system value
+ if ((opt.second & osSystemValue) == 0){
+ is_nonsys_value = true;
+ sys_icon = m_bmp_non_system;
+ sys_tt = m_tt_non_system;
+ // value is equal to last saved
+ if ((opt.second & osInitValue) != 0)
+ color = &m_default_text_clr;
+ // value is modified
+ else
+ color = &m_modified_label_clr;
+ }
+ if ((opt.second & osInitValue) != 0)
{
- switch (m_config->option(opt_key)->type())
- {
- case coInts: add_correct_opts_to_dirty_options<ConfigOptionInts >(opt_key, &new_dirty, tab); break;
- case coBools: add_correct_opts_to_dirty_options<ConfigOptionBools >(opt_key, &new_dirty, tab); break;
- case coFloats: add_correct_opts_to_dirty_options<ConfigOptionFloats >(opt_key, &new_dirty, tab); break;
- case coStrings: add_correct_opts_to_dirty_options<ConfigOptionStrings >(opt_key, &new_dirty, tab); break;
- case coPercents:add_correct_opts_to_dirty_options<ConfigOptionPercents >(opt_key, &new_dirty, tab); break;
- case coPoints: add_correct_opts_to_dirty_options<ConfigOptionPoints >(opt_key, &new_dirty, tab); break;
- default: new_dirty.emplace_back(opt_key); break;
+ is_modified_value = false;
+ icon = &m_bmp_white_bullet;
+ tt = &m_tt_white_bullet;
+ }
+ if (opt.first == "bed_shape" || opt.first == "compatible_printers") {
+ if (m_colored_Label != nullptr) {
+ m_colored_Label->SetForegroundColour(*color);
+ m_colored_Label->Refresh(true);
}
+ continue;
}
- dirty_options.resize(0);
- dirty_options = new_dirty;
- if (tab->m_initial_extruders_count != tab->m_extruders_count){
- dirty_options.emplace_back("extruders_count");
- }
+ Field* field = get_field(opt.first);
+ if (field == nullptr) continue;
+ field->m_is_nonsys_value = is_nonsys_value;
+ field->m_is_modified_value = is_modified_value;
+ field->set_undo_bitmap(icon);
+ field->set_undo_to_sys_bitmap(sys_icon);
+ field->set_undo_tooltip(tt);
+ field->set_undo_to_sys_tooltip(sys_tt);
+ field->set_label_colour(color);
}
+ Thaw();
- // Add new dirty options to m_dirty_options
- for (auto opt_key : dirty_options){
- Field* field = get_field(opt_key);
- if (field != nullptr && find(m_dirty_options.begin(), m_dirty_options.end(), opt_key) == m_dirty_options.end()){
- if (field->m_Label != nullptr){
- field->m_Label->SetForegroundColour(*get_modified_label_clr());
- field->m_Label->Refresh(true);
- }
- field->m_Undo_btn->SetBitmap(wxBitmap(from_u8(wxMSW ? var("action_undo.png") : var("arrow_undo.png")), wxBITMAP_TYPE_PNG));
- field->m_is_modified_value = true;
+ wxTheApp->CallAfter([this]() {
+ update_changed_tree_ui();
+ });
+}
- m_dirty_options.push_back(opt_key);
+void Tab::init_options_list()
+{
+ if (!m_options_list.empty())
+ m_options_list.clear();
+
+ for (const auto opt_key : m_config->keys())
+ m_options_list.emplace(opt_key, m_opt_status_value);
+}
+
+template<class T>
+void add_correct_opts_to_options_list(const std::string &opt_key, std::map<std::string, int>& map, Tab *tab, const int& value)
+{
+ T *opt_cur = static_cast<T*>(tab->m_config->option(opt_key));
+ for (int i = 0; i < opt_cur->values.size(); i++)
+ map.emplace(opt_key + "#" + std::to_string(i), value);
+}
+
+void TabPrinter::init_options_list()
+{
+ if (!m_options_list.empty())
+ m_options_list.clear();
+
+ for (const auto opt_key : m_config->keys())
+ {
+ if (opt_key == "bed_shape"){
+ m_options_list.emplace(opt_key, m_opt_status_value);
+ continue;
+ }
+ switch (m_config->option(opt_key)->type())
+ {
+ case coInts: add_correct_opts_to_options_list<ConfigOptionInts >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coBools: add_correct_opts_to_options_list<ConfigOptionBools >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coFloats: add_correct_opts_to_options_list<ConfigOptionFloats >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coStrings: add_correct_opts_to_options_list<ConfigOptionStrings >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coPercents:add_correct_opts_to_options_list<ConfigOptionPercents >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coPoints: add_correct_opts_to_options_list<ConfigOptionPoints >(opt_key, m_options_list, this, m_opt_status_value); break;
+ default: m_options_list.emplace(opt_key, m_opt_status_value); break;
}
}
+ m_options_list.emplace("extruders_count", m_opt_status_value);
+}
- // Delete clear options from m_dirty_options
- for (auto i = 0; i < m_dirty_options.size(); ++i)
- {
- const std::string &opt_key = m_dirty_options[i];
- Field* field = get_field(opt_key);
- if (field != nullptr && find(dirty_options.begin(), dirty_options.end(), opt_key) == dirty_options.end())
+void TabSLAMaterial::init_options_list()
+{
+ if (!m_options_list.empty())
+ m_options_list.clear();
+
+ for (const auto opt_key : m_config->keys())
+ {
+ if (opt_key == "compatible_printers"){
+ m_options_list.emplace(opt_key, m_opt_status_value);
+ continue;
+ }
+ switch (m_config->option(opt_key)->type())
+ {
+ case coInts: add_correct_opts_to_options_list<ConfigOptionInts >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coBools: add_correct_opts_to_options_list<ConfigOptionBools >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coFloats: add_correct_opts_to_options_list<ConfigOptionFloats >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coStrings: add_correct_opts_to_options_list<ConfigOptionStrings >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coPercents:add_correct_opts_to_options_list<ConfigOptionPercents >(opt_key, m_options_list, this, m_opt_status_value); break;
+ case coPoints: add_correct_opts_to_options_list<ConfigOptionPoints >(opt_key, m_options_list, this, m_opt_status_value); break;
+ default: m_options_list.emplace(opt_key, m_opt_status_value); break;
+ }
+ }
+}
+
+void Tab::get_sys_and_mod_flags(const std::string& opt_key, bool& sys_page, bool& modified_page)
+{
+ auto opt = m_options_list.find(opt_key);
+ if (sys_page) sys_page = (opt->second & osSystemValue) != 0;
+ if (!modified_page) modified_page = (opt->second & osInitValue) == 0;
+}
+
+void Tab::update_changed_tree_ui()
+{
+ auto cur_item = m_treectrl->GetFirstVisibleItem();
+ auto selection = m_treectrl->GetItemText(m_treectrl->GetSelection());
+ while (cur_item){
+ auto title = m_treectrl->GetItemText(cur_item);
+ for (auto page : m_pages)
{
- field->m_Undo_btn->SetBitmap(wxBitmap(from_u8(var("bullet_white.png")), wxBITMAP_TYPE_PNG));
- if (field->m_Label != nullptr){
- field->m_Label->SetForegroundColour(wxSYS_COLOUR_WINDOWTEXT);
- field->m_Label->Refresh(true);
+ if (page->title() != title)
+ continue;
+ bool sys_page = true;
+ bool modified_page = false;
+ if (title == _("General")){
+ std::initializer_list<const char*> optional_keys{ "extruders_count", "bed_shape" };
+ for (auto &opt_key : optional_keys) {
+ get_sys_and_mod_flags(opt_key, sys_page, modified_page);
+ }
+ }
+ if (title == _("Dependencies")){
+ if (name() != "printer")
+ get_sys_and_mod_flags("compatible_printers", sys_page, modified_page);
+ else {
+ sys_page = m_presets->get_selected_preset_parent() ? true:false;
+ modified_page = false;
+ }
}
- field->m_is_modified_value = false;
- std::vector<std::string>::iterator itr = find(m_dirty_options.begin(), m_dirty_options.end(), opt_key);
- if (itr != m_dirty_options.end()){
- m_dirty_options.erase(itr);
- --i;
+ for (auto group : page->m_optgroups)
+ {
+ if (!sys_page && modified_page)
+ break;
+ for (t_opt_map::iterator it = group->m_opt_map.begin(); it != group->m_opt_map.end(); ++it) {
+ const std::string& opt_key = it->first;
+ get_sys_and_mod_flags(opt_key, sys_page, modified_page);
+ }
+ }
+
+ const wxColor *clr = sys_page ? &m_sys_label_clr :
+ modified_page ? &m_modified_label_clr :
+ &m_default_text_clr;
+
+ if (page->set_item_colour(clr))
+ m_treectrl->SetItemTextColour(cur_item, *clr);
+
+ page->m_is_nonsys_values = !sys_page;
+ page->m_is_modified_values = modified_page;
+
+ if (selection == title){
+ m_is_nonsys_values = page->m_is_nonsys_values;
+ m_is_modified_values = page->m_is_modified_values;
}
+ break;
}
+ auto next_item = m_treectrl->GetNextVisible(cur_item);
+ cur_item = next_item;
+ }
+ update_undo_buttons();
+}
+
+void Tab::update_undo_buttons()
+{
+ m_undo_btn->SetBitmap(m_is_modified_values ? m_bmp_value_revert : m_bmp_white_bullet);
+ m_undo_to_sys_btn->SetBitmap(m_is_nonsys_values ? *m_bmp_non_system : m_bmp_value_lock);
+
+ m_undo_btn->SetToolTip(m_is_modified_values ? m_ttg_value_revert : m_ttg_white_bullet);
+ m_undo_to_sys_btn->SetToolTip(m_is_nonsys_values ? *m_ttg_non_system : m_ttg_value_lock);
+}
+
+void Tab::on_roll_back_value(const bool to_sys /*= true*/)
+{
+ int os;
+ if (to_sys) {
+ if (!m_is_nonsys_values) return;
+ os = osSystemValue;
}
+ else {
+ if (!m_is_modified_values) return;
+ os = osInitValue;
+ }
+
+ m_postpone_update_ui = true;
+
+ auto selection = m_treectrl->GetItemText(m_treectrl->GetSelection());
+ for (auto page : m_pages)
+ if (page->title() == selection) {
+ for (auto group : page->m_optgroups){
+ if (group->title == _("Capabilities")){
+ if ((m_options_list["extruders_count"] & os) == 0)
+ to_sys ? group->back_to_sys_value("extruders_count") : group->back_to_initial_value("extruders_count");
+ }
+ if (group->title == _("Size and coordinates")){
+ if ((m_options_list["bed_shape"] & os) == 0){
+ to_sys ? group->back_to_sys_value("bed_shape") : group->back_to_initial_value("bed_shape");
+ load_key_value("bed_shape", true/*some value*/, true);
+ }
+
+ }
+ if (group->title == _("Profile dependencies") && name() != "printer"){
+ if ((m_options_list["compatible_printers"] & os) == 0){
+ to_sys ? group->back_to_sys_value("compatible_printers") : group->back_to_initial_value("compatible_printers");
+ load_key_value("compatible_printers", true/*some value*/, true);
+
+ bool is_empty = m_config->option<ConfigOptionStrings>("compatible_printers")->values.empty();
+ m_compatible_printers_checkbox->SetValue(is_empty);
+ is_empty ? m_compatible_printers_btn->Disable() : m_compatible_printers_btn->Enable();
+ }
+ }
+ for (t_opt_map::iterator it = group->m_opt_map.begin(); it != group->m_opt_map.end(); ++it) {
+ const std::string& opt_key = it->first;
+ if ((m_options_list[opt_key] & os) == 0)
+ to_sys ? group->back_to_sys_value(opt_key) : group->back_to_initial_value(opt_key);
+ }
+ }
+ break;
+ }
+
+ m_postpone_update_ui = false;
+ update_changed_ui();
}
// Update the combo box label of the selected preset based on its "dirty" state,
@@ -230,16 +586,19 @@ void Tab::update_dirty(){
m_presets->update_dirty_ui(m_presets_choice);
on_presets_changed();
update_changed_ui();
+// update_dirty_presets(m_cc_presets_choice);
}
void Tab::update_tab_ui()
{
- m_presets->update_tab_ui(m_presets_choice, m_show_incompatible_presets);
+ m_selected_preset_item = m_presets->update_tab_ui(m_presets_choice, m_show_incompatible_presets);
+// update_tab_presets(m_cc_presets_choice, m_show_incompatible_presets);
+// update_presetsctrl(m_presetctrl, m_show_incompatible_presets);
}
// Load a provied DynamicConfig into the tab, modifying the active preset.
// This could be used for example by setting a Wipe Tower position by interactive manipulation in the 3D view.
-void Tab::load_config(DynamicPrintConfig config)
+void Tab::load_config(const DynamicPrintConfig& config)
{
bool modified = 0;
for(auto opt_key : m_config->diff(config)) {
@@ -262,7 +621,7 @@ void Tab::reload_config(){
Thaw();
}
-Field* Tab::get_field(t_config_option_key opt_key, int opt_index/* = -1*/) const
+Field* Tab::get_field(const t_config_option_key& opt_key, int opt_index/* = -1*/) const
{
Field* field = nullptr;
for (auto page : m_pages){
@@ -276,7 +635,7 @@ Field* Tab::get_field(t_config_option_key opt_key, int opt_index/* = -1*/) const
// Set a key/value pair on this page. Return true if the value has been modified.
// Currently used for distributing extruders_count over preset pages of Slic3r::GUI::Tab::Printer
// after a preset is loaded.
-bool Tab::set_value(t_config_option_key opt_key, boost::any value){
+bool Tab::set_value(const t_config_option_key& opt_key, const boost::any& value){
bool changed = false;
for(auto page: m_pages) {
if (page->set_value(opt_key, value))
@@ -287,12 +646,15 @@ bool Tab::set_value(t_config_option_key opt_key, boost::any value){
// To be called by custom widgets, load a value into a config,
// update the preset selection boxes (the dirty flags)
-void Tab::load_key_value(std::string opt_key, boost::any value)
+// If value is saved before calling this function, put saved_value = true,
+// and value can be some random value because in this case it will not been used
+void Tab::load_key_value(const std::string& opt_key, const boost::any& value, bool saved_value /*= false*/)
{
- change_opt_value(*m_config, opt_key, value);
+ if (!saved_value) change_opt_value(*m_config, opt_key, value);
// Mark the print & filament enabled if they are compatible with the currently selected preset.
if (opt_key.compare("compatible_printers") == 0) {
- m_preset_bundle->update_compatible_with_printer(0);
+ // Don't select another profile if this profile happens to become incompatible.
+ m_preset_bundle->update_compatible_with_printer(false);
}
m_presets->update_dirty_ui(m_presets_choice);
on_presets_changed();
@@ -301,7 +663,7 @@ void Tab::load_key_value(std::string opt_key, boost::any value)
extern wxFrame *g_wxMainFrame;
-void Tab::on_value_change(std::string opt_key, boost::any value)
+void Tab::on_value_change(const std::string& opt_key, const boost::any& value)
{
if (m_event_value_change > 0) {
wxCommandEvent event(m_event_value_change);
@@ -312,12 +674,21 @@ void Tab::on_value_change(std::string opt_key, boost::any value)
int val = boost::any_cast<size_t>(value);
event.SetInt(val);
}
+
+ if (opt_key == "printer_technology")
+ {
+ int val = boost::any_cast<PrinterTechnology>(value);
+ event.SetInt(val);
+ g_wxMainFrame->ProcessWindowEvent(event);
+ return;
+ }
+
g_wxMainFrame->ProcessWindowEvent(event);
}
if (opt_key == "fill_density")
{
- value = get_optgroup()->get_config_value(*m_config, opt_key);
- get_optgroup()->set_value(opt_key, value);
+ boost::any val = get_optgroup(ogFrequentlyChangingParameters)->get_config_value(*m_config, opt_key);
+ get_optgroup(ogFrequentlyChangingParameters)->set_value(opt_key, val);
}
if (opt_key == "support_material" || opt_key == "support_material_buildplate_only")
{
@@ -326,18 +697,34 @@ void Tab::on_value_change(std::string opt_key, boost::any value)
m_config->opt_bool("support_material_buildplate_only") ?
_("Support on build plate only") :
_("Everywhere");
- get_optgroup()->set_value("support", new_selection);
+ get_optgroup(ogFrequentlyChangingParameters)->set_value("support", new_selection);
}
if (opt_key == "brim_width")
{
bool val = m_config->opt_float("brim_width") > 0.0 ? true : false;
- get_optgroup()->set_value("brim", val);
+ get_optgroup(ogFrequentlyChangingParameters)->set_value("brim", val);
}
-
+ if (opt_key == "wipe_tower" || opt_key == "single_extruder_multi_material" || opt_key == "extruders_count" )
+ update_wiping_button_visibility();
+
update();
}
+// Show/hide the 'purging volumes' button
+void Tab::update_wiping_button_visibility() {
+ if (get_preset_bundle()->printers.get_selected_preset().printer_technology() == ptSLA)
+ return; // ys_FIXME
+ bool wipe_tower_enabled = dynamic_cast<ConfigOptionBool*>( (m_preset_bundle->prints.get_edited_preset().config ).option("wipe_tower"))->value;
+ bool multiple_extruders = dynamic_cast<ConfigOptionFloats*>((m_preset_bundle->printers.get_edited_preset().config).option("nozzle_diameter"))->values.size() > 1;
+ bool single_extruder_mm = dynamic_cast<ConfigOptionBool*>( (m_preset_bundle->printers.get_edited_preset().config).option("single_extruder_multi_material"))->value;
+
+ get_wiping_dialog_button()->Show(wipe_tower_enabled && multiple_extruders && single_extruder_mm);
+
+ (get_wiping_dialog_button()->GetParent())->Layout();
+}
+
+
// Call a callback to update the selection of presets on the platter:
// To update the content of the selection boxes,
// to update the filament colors of the selection boxes,
@@ -350,22 +737,70 @@ void Tab::on_presets_changed()
event.SetString(m_name);
g_wxMainFrame->ProcessWindowEvent(event);
}
+ update_preset_description_line();
+}
+
+void Tab::update_preset_description_line()
+{
+ const Preset* parent = m_presets->get_selected_preset_parent();
+ const Preset& preset = m_presets->get_edited_preset();
+
+ wxString description_line = preset.is_default ?
+ _(L("It's a default preset.")) : preset.is_system ?
+ _(L("It's a system preset.")) :
+ _(L("Current preset is inherited from ")) + (parent == nullptr ?
+ "default preset." :
+ ":\n\t" + parent->name);
+
+ if (preset.is_default || preset.is_system)
+ description_line += "\n\t" + _(L("It can't be deleted or modified. ")) +
+ "\n\t" + _(L("Any modifications should be saved as a new preset inherited from this one. ")) +
+ "\n\t" + _(L("To do that please specify a new name for the preset."));
+
+ if (parent && parent->vendor)
+ {
+ description_line += "\n\n" + _(L("Additional information:")) + "\n";
+ description_line += "\t" + _(L("vendor")) + ": " + (name()=="printer" ? "\n\t\t" : "") + parent->vendor->name +
+ ", ver: " + parent->vendor->config_version.to_string();
+ if (name() == "printer"){
+ const std::string &printer_model = preset.config.opt_string("printer_model");
+ const std::string &default_print_profile = preset.config.opt_string("default_print_profile");
+ const std::vector<std::string> &default_filament_profiles = preset.config.option<ConfigOptionStrings>("default_filament_profile")->values;
+ if (!printer_model.empty())
+ description_line += "\n\n\t" + _(L("printer model")) + ": \n\t\t" + printer_model;
+ if (!default_print_profile.empty())
+ description_line += "\n\n\t" + _(L("default print profile")) + ": \n\t\t" + default_print_profile;
+ if (!default_filament_profiles.empty())
+ {
+ description_line += "\n\n\t" + _(L("default filament profile")) + ": \n\t\t";
+ for (auto& profile : default_filament_profiles){
+ if (&profile != &*default_filament_profiles.begin())
+ description_line += ", ";
+ description_line += profile;
+ }
+ }
+ }
+ }
+
+ m_parent_preset_description_line->SetText(description_line, false);
}
void Tab::update_frequently_changed_parameters()
{
- boost::any value = get_optgroup()->get_config_value(*m_config, "fill_density");
- get_optgroup()->set_value("fill_density", value);
+ boost::any value = get_optgroup(ogFrequentlyChangingParameters)->get_config_value(*m_config, "fill_density");
+ get_optgroup(ogFrequentlyChangingParameters)->set_value("fill_density", value);
wxString new_selection = !m_config->opt_bool("support_material") ?
_("None") :
m_config->opt_bool("support_material_buildplate_only") ?
_("Support on build plate only") :
_("Everywhere");
- get_optgroup()->set_value("support", new_selection);
+ get_optgroup(ogFrequentlyChangingParameters)->set_value("support", new_selection);
bool val = m_config->opt_float("brim_width") > 0.0 ? true : false;
- get_optgroup()->set_value("brim", val);
+ get_optgroup(ogFrequentlyChangingParameters)->set_value("brim", val);
+
+ update_wiping_button_visibility();
}
void Tab::reload_compatible_printers_widget()
@@ -379,7 +814,7 @@ void Tab::reload_compatible_printers_widget()
void TabPrint::build()
{
m_presets = &m_preset_bundle->prints;
- m_config = &m_presets->get_edited_preset().config;
+ load_initial_data();
auto page = add_options_page(_(L("Layers and perimeters")), "layers.png");
auto optgroup = page->new_optgroup(_(L("Layer height")));
@@ -515,13 +950,15 @@ void TabPrint::build()
optgroup->append_single_option_line("wipe_tower_x");
optgroup->append_single_option_line("wipe_tower_y");
optgroup->append_single_option_line("wipe_tower_width");
- optgroup->append_single_option_line("wipe_tower_per_color_wipe");
+ optgroup->append_single_option_line("wipe_tower_rotation_angle");
+ optgroup->append_single_option_line("wipe_tower_bridging");
+ optgroup->append_single_option_line("single_extruder_multi_material_priming");
optgroup = page->new_optgroup(_(L("Advanced")));
optgroup->append_single_option_line("interface_shells");
page = add_options_page(_(L("Advanced")), "wrench.png");
- optgroup = page->new_optgroup(_(L("Extrusion width")), 180);
+ optgroup = page->new_optgroup(_(L("Extrusion width")));
optgroup->append_single_option_line("extrusion_width");
optgroup->append_single_option_line("first_layer_extrusion_width");
optgroup->append_single_option_line("perimeter_extrusion_width");
@@ -581,11 +1018,18 @@ void TabPrint::build()
line.widget = [this](wxWindow* parent){
return compatible_printers_widget(parent, &m_compatible_printers_checkbox, &m_compatible_printers_btn);
};
- optgroup->append_line(line);
+ optgroup->append_line(line, &m_colored_Label);
option = optgroup->get_option("compatible_printers_condition");
option.opt.full_width = true;
optgroup->append_single_option_line(option);
+
+ line = Line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_parent_preset_description_line);
+ };
+ optgroup->append_line(line);
}
// Reload current config (aka presets->edited_preset->config) into the UI fields.
@@ -596,11 +1040,16 @@ void TabPrint::reload_config(){
void TabPrint::update()
{
+ if (get_preset_bundle()->printers.get_selected_preset().printer_technology() == ptSLA)
+ return; // ys_FIXME
+
Freeze();
+ double fill_density = m_config->option<ConfigOptionPercent>("fill_density")->value;
+
if (m_config->opt_bool("spiral_vase") &&
!(m_config->opt_int("perimeters") == 1 && m_config->opt_int("top_solid_layers") == 0 &&
- m_config->option<ConfigOptionPercent>("fill_density")->value == 0)) {
+ fill_density == 0)) {
wxString msg_text = _(L("The Spiral Vase mode requires:\n"
"- one perimeter\n"
"- no top solid layers\n"
@@ -617,34 +1066,13 @@ void TabPrint::update()
new_conf.set_key_value("support_material", new ConfigOptionBool(false));
new_conf.set_key_value("support_material_enforce_layers", new ConfigOptionInt(0));
new_conf.set_key_value("ensure_vertical_shell_thickness", new ConfigOptionBool(false));
+ fill_density = 0;
}
else {
new_conf.set_key_value("spiral_vase", new ConfigOptionBool(false));
}
load_config(new_conf);
- }
-
- auto first_layer_height = m_config->option<ConfigOptionFloatOrPercent>("first_layer_height")->value;
- auto layer_height = m_config->opt_float("layer_height");
- if (m_config->opt_bool("wipe_tower") &&
- (first_layer_height != 0.2 || layer_height < 0.15 || layer_height > 0.35)) {
- wxString msg_text = _(L("The Wipe Tower currently supports only:\n"
- "- first layer height 0.2mm\n"
- "- layer height from 0.15mm to 0.35mm\n"
- "\nShall I adjust those settings in order to enable the Wipe Tower?"));
- auto dialog = new wxMessageDialog(parent(), msg_text, _(L("Wipe Tower")), wxICON_WARNING | wxYES | wxNO);
- DynamicPrintConfig new_conf = *m_config;
- if (dialog->ShowModal() == wxID_YES) {
- const auto &val = *m_config->option<ConfigOptionFloatOrPercent>("first_layer_height");
- auto percent = val.percent;
- new_conf.set_key_value("first_layer_height", new ConfigOptionFloatOrPercent(0.2, percent));
-
- if (m_config->opt_float("layer_height") < 0.15) new_conf.set_key_value("layer_height", new ConfigOptionFloat(0.15));
- if (m_config->opt_float("layer_height") > 0.35) new_conf.set_key_value("layer_height", new ConfigOptionFloat(0.35));
- }
- else
- new_conf.set_key_value("wipe_tower", new ConfigOptionBool(false));
- load_config(new_conf);
+ on_value_change("fill_density", fill_density);
}
if (m_config->opt_bool("wipe_tower") && m_config->opt_bool("support_material") &&
@@ -735,7 +1163,6 @@ void TabPrint::update()
"\nShall I switch to rectilinear fill pattern?"));
auto dialog = new wxMessageDialog(parent(), msg_text, _(L("Infill")), wxICON_WARNING | wxYES | wxNO);
DynamicPrintConfig new_conf = *m_config;
- double fill_density;
if (dialog->ShowModal() == wxID_YES) {
new_conf.set_key_value("fill_pattern", new ConfigOptionEnum<InfillPattern>(ipRectilinear));
fill_density = 100;
@@ -750,53 +1177,40 @@ void TabPrint::update()
}
bool have_perimeters = m_config->opt_int("perimeters") > 0;
- std::vector<std::string> vec_enable = { "extra_perimeters", "ensure_vertical_shell_thickness", "thin_walls", "overhangs",
- "seam_position", "external_perimeters_first", "external_perimeter_extrusion_width",
- "perimeter_speed", "small_perimeter_speed", "external_perimeter_speed" };
- for (auto el : vec_enable)
+ for (auto el : {"extra_perimeters", "ensure_vertical_shell_thickness", "thin_walls", "overhangs",
+ "seam_position", "external_perimeters_first", "external_perimeter_extrusion_width",
+ "perimeter_speed", "small_perimeter_speed", "external_perimeter_speed" })
get_field(el)->toggle(have_perimeters);
bool have_infill = m_config->option<ConfigOptionPercent>("fill_density")->value > 0;
- vec_enable.resize(0);
- vec_enable = { "fill_pattern", "infill_every_layers", "infill_only_where_needed",
- "solid_infill_every_layers", "solid_infill_below_area", "infill_extruder" };
// infill_extruder uses the same logic as in Print::extruders()
- for (auto el : vec_enable)
+ for (auto el : {"fill_pattern", "infill_every_layers", "infill_only_where_needed",
+ "solid_infill_every_layers", "solid_infill_below_area", "infill_extruder" })
get_field(el)->toggle(have_infill);
bool have_solid_infill = m_config->opt_int("top_solid_layers") > 0 || m_config->opt_int("bottom_solid_layers") > 0;
- vec_enable.resize(0);
- vec_enable = { "external_fill_pattern", "infill_first", "solid_infill_extruder",
- "solid_infill_extrusion_width", "solid_infill_speed" };
// solid_infill_extruder uses the same logic as in Print::extruders()
- for (auto el : vec_enable)
+ for (auto el : {"external_fill_pattern", "infill_first", "solid_infill_extruder",
+ "solid_infill_extrusion_width", "solid_infill_speed" })
get_field(el)->toggle(have_solid_infill);
- vec_enable.resize(0);
- vec_enable = { "fill_angle", "bridge_angle", "infill_extrusion_width",
- "infill_speed", "bridge_speed" };
- for (auto el : vec_enable)
+ for (auto el : {"fill_angle", "bridge_angle", "infill_extrusion_width",
+ "infill_speed", "bridge_speed" })
get_field(el)->toggle(have_infill || have_solid_infill);
get_field("gap_fill_speed")->toggle(have_perimeters && have_infill);
bool have_top_solid_infill = m_config->opt_int("top_solid_layers") > 0;
- vec_enable.resize(0);
- vec_enable = { "top_infill_extrusion_width", "top_solid_infill_speed" };
- for (auto el : vec_enable)
+ for (auto el : { "top_infill_extrusion_width", "top_solid_infill_speed" })
get_field(el)->toggle(have_top_solid_infill);
bool have_default_acceleration = m_config->opt_float("default_acceleration") > 0;
- vec_enable.resize(0);
- vec_enable = { "perimeter_acceleration", "infill_acceleration",
- "bridge_acceleration", "first_layer_acceleration" };
- for (auto el : vec_enable)
+ for (auto el : {"perimeter_acceleration", "infill_acceleration",
+ "bridge_acceleration", "first_layer_acceleration" })
get_field(el)->toggle(have_default_acceleration);
bool have_skirt = m_config->opt_int("skirts") > 0 || m_config->opt_float("min_skirt_length") > 0;
- vec_enable.resize(0);
- vec_enable = { "skirt_distance", "skirt_height" };
- for (auto el : vec_enable)
+ for (auto el : { "skirt_distance", "skirt_height" })
get_field(el)->toggle(have_skirt);
bool have_brim = m_config->opt_float("brim_width") > 0;
@@ -807,18 +1221,14 @@ void TabPrint::update()
bool have_support_material = m_config->opt_bool("support_material") || have_raft;
bool have_support_interface = m_config->opt_int("support_material_interface_layers") > 0;
bool have_support_soluble = have_support_material && m_config->opt_float("support_material_contact_distance") == 0;
- vec_enable.resize(0);
- vec_enable = { "support_material_threshold", "support_material_pattern", "support_material_with_sheath",
+ for (auto el : {"support_material_threshold", "support_material_pattern", "support_material_with_sheath",
"support_material_spacing", "support_material_angle", "support_material_interface_layers",
"dont_support_bridges", "support_material_extrusion_width", "support_material_contact_distance",
- "support_material_xy_spacing" };
- for (auto el : vec_enable)
+ "support_material_xy_spacing" })
get_field(el)->toggle(have_support_material);
- vec_enable.resize(0);
- vec_enable = { "support_material_interface_spacing", "support_material_interface_extruder",
- "support_material_interface_speed", "support_material_interface_contact_loops" };
- for (auto el : vec_enable)
+ for (auto el : {"support_material_interface_spacing", "support_material_interface_extruder",
+ "support_material_interface_speed", "support_material_interface_contact_loops" })
get_field(el)->toggle(have_support_material && have_support_interface);
get_field("support_material_synchronize_layers")->toggle(have_support_soluble);
@@ -827,18 +1237,14 @@ void TabPrint::update()
get_field("support_material_speed")->toggle(have_support_material || have_brim || have_skirt);
bool have_sequential_printing = m_config->opt_bool("complete_objects");
- vec_enable.resize(0);
- vec_enable = { "extruder_clearance_radius", "extruder_clearance_height" };
- for (auto el : vec_enable)
+ for (auto el : { "extruder_clearance_radius", "extruder_clearance_height" })
get_field(el)->toggle(have_sequential_printing);
bool have_ooze_prevention = m_config->opt_bool("ooze_prevention");
get_field("standby_temperature_delta")->toggle(have_ooze_prevention);
bool have_wipe_tower = m_config->opt_bool("wipe_tower");
- vec_enable.resize(0);
- vec_enable = { "wipe_tower_x", "wipe_tower_y", "wipe_tower_width", "wipe_tower_per_color_wipe" };
- for (auto el : vec_enable)
+ for (auto el : { "wipe_tower_x", "wipe_tower_y", "wipe_tower_width", "wipe_tower_rotation_angle", "wipe_tower_bridging"})
get_field(el)->toggle(have_wipe_tower);
m_recommended_thin_wall_thickness_description_line->SetText(
@@ -851,12 +1257,13 @@ void TabPrint::OnActivate()
{
m_recommended_thin_wall_thickness_description_line->SetText(
from_u8(PresetHints::recommended_thin_wall_thickness(*m_preset_bundle)));
+ Tab::OnActivate();
}
void TabFilament::build()
{
m_presets = &m_preset_bundle->filaments;
- m_config = &m_preset_bundle->filaments.get_edited_preset().config;
+ load_initial_data();
auto page = add_options_page(_(L("Filament")), "spool.png");
auto optgroup = page->new_optgroup(_(L("Filament")));
@@ -866,7 +1273,7 @@ void TabFilament::build()
optgroup->append_single_option_line("filament_density");
optgroup->append_single_option_line("filament_cost");
- optgroup = page->new_optgroup(_(L("Temperature ")) +" (\u00B0C)"); // degree sign
+ optgroup = page->new_optgroup(_(L("Temperature ")) + wxString("°C", wxConvUTF8));
Line line = { _(L("Extruder")), "" };
line.append_option(optgroup->get_option("first_layer_temperature"));
line.append_option(optgroup->get_option("temperature"));
@@ -918,7 +1325,37 @@ void TabFilament::build()
};
optgroup->append_line(line);
- page = add_options_page(_(L("Custom G-code")), "cog.png");
+ optgroup = page->new_optgroup(_(L("Toolchange parameters with single extruder MM printers")));
+ optgroup->append_single_option_line("filament_loading_speed_start");
+ optgroup->append_single_option_line("filament_loading_speed");
+ optgroup->append_single_option_line("filament_unloading_speed_start");
+ optgroup->append_single_option_line("filament_unloading_speed");
+ optgroup->append_single_option_line("filament_load_time");
+ optgroup->append_single_option_line("filament_unload_time");
+ optgroup->append_single_option_line("filament_toolchange_delay");
+ optgroup->append_single_option_line("filament_cooling_moves");
+ optgroup->append_single_option_line("filament_cooling_initial_speed");
+ optgroup->append_single_option_line("filament_cooling_final_speed");
+ optgroup->append_single_option_line("filament_minimal_purge_on_wipe_tower");
+
+ line = { _(L("Ramming")), "" };
+ line.widget = [this](wxWindow* parent){
+ auto ramming_dialog_btn = new wxButton(parent, wxID_ANY, _(L("Ramming settings"))+dots, wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
+ auto sizer = new wxBoxSizer(wxHORIZONTAL);
+ sizer->Add(ramming_dialog_btn);
+
+ ramming_dialog_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent& e)
+ {
+ RammingDialog dlg(this,(m_config->option<ConfigOptionStrings>("filament_ramming_parameters"))->get_at(0));
+ if (dlg.ShowModal() == wxID_OK)
+ (m_config->option<ConfigOptionStrings>("filament_ramming_parameters"))->get_at(0) = dlg.get_parameters();
+ }));
+ return sizer;
+ };
+ optgroup->append_line(line);
+
+
+ page = add_options_page(_(L("Custom G-code")), "cog.png");
optgroup = page->new_optgroup(_(L("Start G-code")), 0);
Option option = optgroup->get_option("start_filament_gcode");
option.opt.full_width = true;
@@ -945,11 +1382,18 @@ void TabFilament::build()
line.widget = [this](wxWindow* parent){
return compatible_printers_widget(parent, &m_compatible_printers_checkbox, &m_compatible_printers_btn);
};
- optgroup->append_line(line);
+ optgroup->append_line(line, &m_colored_Label);
option = optgroup->get_option("compatible_printers_condition");
option.opt.full_width = true;
optgroup->append_single_option_line(option);
+
+ line = Line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_parent_preset_description_line);
+ };
+ optgroup->append_line(line);
}
// Reload current config (aka presets->edited_preset->config) into the UI fields.
@@ -960,6 +1404,10 @@ void TabFilament::reload_config(){
void TabFilament::update()
{
+ if (get_preset_bundle()->printers.get_selected_preset().printer_technology() == ptSLA)
+ return; // ys_FIXME
+
+ Freeze();
wxString text = from_u8(PresetHints::cooling_description(m_presets->get_edited_preset()));
m_cooling_description_line->SetText(text);
text = from_u8(PresetHints::maximum_volumetric_flow_description(*m_preset_bundle));
@@ -968,19 +1416,18 @@ void TabFilament::update()
bool cooling = m_config->opt_bool("cooling", 0);
bool fan_always_on = cooling || m_config->opt_bool("fan_always_on", 0);
- std::vector<std::string> vec_enable = { "max_fan_speed", "fan_below_layer_time", "slowdown_below_layer_time", "min_print_speed" };
- for (auto el : vec_enable)
+ for (auto el : { "max_fan_speed", "fan_below_layer_time", "slowdown_below_layer_time", "min_print_speed" })
get_field(el)->toggle(cooling);
- vec_enable.resize(0);
- vec_enable = { "min_fan_speed", "disable_fan_first_layers" };
- for (auto el : vec_enable)
+ for (auto el : { "min_fan_speed", "disable_fan_first_layers" })
get_field(el)->toggle(fan_always_on);
+ Thaw();
}
void TabFilament::OnActivate()
{
m_volumetric_speed_description_line->SetText(from_u8(PresetHints::maximum_volumetric_flow_description(*m_preset_bundle)));
+ Tab::OnActivate();
}
wxSizer* Tab::description_line_widget(wxWindow* parent, ogStaticText* *StaticText)
@@ -991,7 +1438,7 @@ wxSizer* Tab::description_line_widget(wxWindow* parent, ogStaticText* *StaticTex
(*StaticText)->SetFont(font);
auto sizer = new wxBoxSizer(wxHORIZONTAL);
- sizer->Add(*StaticText);
+ sizer->Add(*StaticText, 1, wxEXPAND|wxALL, 0);
return sizer;
}
@@ -1003,19 +1450,35 @@ bool Tab::current_preset_is_dirty()
void TabPrinter::build()
{
m_presets = &m_preset_bundle->printers;
- m_config = &m_preset_bundle->printers.get_edited_preset().config;
- auto default_config = m_preset_bundle->full_config();
+ load_initial_data();
+
+ m_printer_technology = m_presets->get_selected_preset().printer_technology();
+
+ m_presets->get_selected_preset().printer_technology() == ptSLA ? build_sla() : build_fff();
+
+// on_value_change("printer_technology", m_printer_technology); // to update show/hide preset ComboBoxes
+}
+
+void TabPrinter::build_fff()
+{
+ if (!m_pages.empty())
+ m_pages.resize(0);
+ // to avoid redundant memory allocation / deallocation during extruders count changing
+ m_pages.reserve(30);
auto *nozzle_diameter = dynamic_cast<const ConfigOptionFloats*>(m_config->option("nozzle_diameter"));
m_initial_extruders_count = m_extruders_count = nozzle_diameter->values.size();
+ const Preset* parent_preset = m_presets->get_selected_preset_parent();
+ m_sys_extruders_count = parent_preset == nullptr ? 0 :
+ static_cast<const ConfigOptionFloats*>(parent_preset->config.option("nozzle_diameter"))->values.size();
auto page = add_options_page(_(L("General")), "printer_empty.png");
auto optgroup = page->new_optgroup(_(L("Size and coordinates")));
Line line{ _(L("Bed shape")), "" };
line.widget = [this](wxWindow* parent){
- auto btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
- // btn->SetFont(Slic3r::GUI::small_font);
+ auto btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
+ btn->SetFont(Slic3r::GUI::small_font());
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("printer_empty.png")), wxBITMAP_TYPE_PNG));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
@@ -1025,13 +1488,15 @@ void TabPrinter::build()
{
auto dlg = new BedShapeDialog(this);
dlg->build_dialog(m_config->option<ConfigOptionPoints>("bed_shape"));
- if (dlg->ShowModal() == wxID_OK)
+ if (dlg->ShowModal() == wxID_OK){
load_key_value("bed_shape", dlg->GetValue());
+ update_changed_ui();
+ }
}));
return sizer;
};
- optgroup->append_line(line);
+ optgroup->append_line(line, &m_colored_Label);
optgroup->append_single_option_line("max_print_height");
optgroup->append_single_option_line("z_offset");
@@ -1049,9 +1514,11 @@ void TabPrinter::build()
optgroup->m_on_change = [this, optgroup](t_config_option_key opt_key, boost::any value){
size_t extruders_count = boost::any_cast<int>(optgroup->get_value("extruders_count"));
wxTheApp->CallAfter([this, opt_key, value, extruders_count](){
- if (opt_key.compare("extruders_count")==0) {
+ if (opt_key.compare("extruders_count")==0 || opt_key.compare("single_extruder_multi_material")==0) {
extruders_count_changed(extruders_count);
update_dirty();
+ if (opt_key.compare("single_extruder_multi_material")==0) // the single_extruder_multimaterial was added to force pages
+ on_value_change(opt_key, value); // rebuild - let's make sure the on_value_change is not skipped
}
else {
update_dirty();
@@ -1060,6 +1527,7 @@ void TabPrinter::build()
});
};
+
if (!m_no_controller)
{
optgroup = page->new_optgroup(_(L("USB/Serial connection")));
@@ -1078,13 +1546,13 @@ void TabPrinter::build()
auto serial_test = [this](wxWindow* parent){
auto btn = m_serial_test_btn = new wxButton(parent, wxID_ANY,
_(L("Test")), wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
-// btn->SetFont($Slic3r::GUI::small_font);
+ btn->SetFont(Slic3r::GUI::small_font());
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("wrench.png")), wxBITMAP_TYPE_PNG));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(btn);
btn->Bind(wxEVT_BUTTON, [this, parent](wxCommandEvent e){
- auto sender = new GCodeSender();
+ auto sender = Slic3r::make_unique<GCodeSender>();
auto res = sender->connect(
m_config->opt_string("serial_port"),
m_config->opt_int("serial_speed")
@@ -1105,10 +1573,12 @@ void TabPrinter::build()
optgroup->append_line(line);
}
- optgroup = page->new_optgroup(_(L("OctoPrint upload")));
+ optgroup = page->new_optgroup(_(L("Printer Host upload")));
+
+ optgroup->append_single_option_line("host_type");
- auto octoprint_host_browse = [this, optgroup] (wxWindow* parent) {
- auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
+ auto printhost_browse = [this, optgroup] (wxWindow* parent) {
+ auto btn = m_printhost_browse_btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("zoom.png")), wxBITMAP_TYPE_PNG));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(btn);
@@ -1116,48 +1586,51 @@ void TabPrinter::build()
btn->Bind(wxEVT_BUTTON, [this, parent, optgroup](wxCommandEvent e) {
BonjourDialog dialog(parent);
if (dialog.show_and_lookup()) {
- optgroup->set_value("octoprint_host", std::move(dialog.get_selected()), true);
+ optgroup->set_value("print_host", std::move(dialog.get_selected()), true);
}
});
return sizer;
};
- auto octoprint_host_test = [this](wxWindow* parent) {
- auto btn = m_octoprint_host_test_btn = new wxButton(parent, wxID_ANY, _(L("Test")),
+ auto print_host_test = [this](wxWindow* parent) {
+ auto btn = m_print_host_test_btn = new wxButton(parent, wxID_ANY, _(L("Test")),
wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("wrench.png")), wxBITMAP_TYPE_PNG));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(btn);
btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent e) {
- OctoPrint octoprint(m_config);
+ std::unique_ptr<PrintHost> host(PrintHost::get_print_host(m_config));
+ if (! host) {
+ const auto text = wxString::Format("%s",
+ _(L("Could not get a valid Printer Host reference")));
+ show_error(this, text);
+ return;
+ }
wxString msg;
- if (octoprint.test(msg)) {
- show_info(this, _(L("Connection to OctoPrint works correctly.")), _(L("Success!")));
+ if (host->test(msg)) {
+ show_info(this, host->get_test_ok_msg(), _(L("Success!")));
} else {
- const auto text = wxString::Format("%s: %s\n\n%s",
- _(L("Could not connect to OctoPrint")), msg, _(L("Note: OctoPrint version at least 1.1.0 is required."))
- );
- show_error(this, text);
+ show_error(this, host->get_test_failed_msg(msg));
}
});
return sizer;
};
- Line host_line = optgroup->create_single_option_line("octoprint_host");
- host_line.append_widget(octoprint_host_browse);
- host_line.append_widget(octoprint_host_test);
+ Line host_line = optgroup->create_single_option_line("print_host");
+ host_line.append_widget(printhost_browse);
+ host_line.append_widget(print_host_test);
optgroup->append_line(host_line);
- optgroup->append_single_option_line("octoprint_apikey");
+ optgroup->append_single_option_line("printhost_apikey");
if (Http::ca_file_supported()) {
- Line cafile_line = optgroup->create_single_option_line("octoprint_cafile");
+ Line cafile_line = optgroup->create_single_option_line("printhost_cafile");
- auto octoprint_cafile_browse = [this, optgroup] (wxWindow* parent) {
- auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
+ auto printhost_cafile_browse = [this, optgroup] (wxWindow* parent) {
+ auto btn = new wxButton(parent, wxID_ANY, _(L(" Browse "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("zoom.png")), wxBITMAP_TYPE_PNG));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(btn);
@@ -1166,17 +1639,17 @@ void TabPrinter::build()
static const auto filemasks = _(L("Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"));
wxFileDialog openFileDialog(this, _(L("Open CA certificate file")), "", "", filemasks, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
if (openFileDialog.ShowModal() != wxID_CANCEL) {
- optgroup->set_value("octoprint_cafile", std::move(openFileDialog.GetPath()), true);
+ optgroup->set_value("printhost_cafile", std::move(openFileDialog.GetPath()), true);
}
});
return sizer;
};
- cafile_line.append_widget(octoprint_cafile_browse);
+ cafile_line.append_widget(printhost_cafile_browse);
optgroup->append_line(cafile_line);
- auto octoprint_cafile_hint = [this, optgroup] (wxWindow* parent) {
+ auto printhost_cafile_hint = [this, optgroup] (wxWindow* parent) {
auto txt = new wxStaticText(parent, wxID_ANY,
_(L("HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate.")));
auto sizer = new wxBoxSizer(wxHORIZONTAL);
@@ -1186,13 +1659,30 @@ void TabPrinter::build()
Line cafile_hint { "", "" };
cafile_hint.full_width = 1;
- cafile_hint.widget = std::move(octoprint_cafile_hint);
+ cafile_hint.widget = std::move(printhost_cafile_hint);
optgroup->append_line(cafile_hint);
}
optgroup = page->new_optgroup(_(L("Firmware")));
optgroup->append_single_option_line("gcode_flavor");
+ optgroup->append_single_option_line("silent_mode");
+ optgroup->append_single_option_line("remaining_times");
+
+ optgroup->m_on_change = [this, optgroup](t_config_option_key opt_key, boost::any value){
+ wxTheApp->CallAfter([this, opt_key, value](){
+ if (opt_key.compare("silent_mode") == 0) {
+ bool val = boost::any_cast<bool>(value);
+ if (m_use_silent_mode != val) {
+ m_rebuild_kinematics_page = true;
+ m_use_silent_mode = val;
+ }
+ }
+ build_extruder_pages();
+ update_dirty();
+ on_value_change(opt_key, value);
+ });
+ };
optgroup = page->new_optgroup(_(L("Advanced")));
optgroup->append_single_option_line("use_relative_e_distances");
@@ -1244,16 +1734,95 @@ void TabPrinter::build()
option.opt.height = 250;
optgroup->append_single_option_line(option);
+ page = add_options_page(_(L("Dependencies")), "wrench.png");
+ optgroup = page->new_optgroup(_(L("Profile dependencies")));
+ line = Line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_parent_preset_description_line);
+ };
+ optgroup->append_line(line);
+
build_extruder_pages();
if (!m_no_controller)
update_serial_ports();
}
+void TabPrinter::build_sla()
+{
+ if (!m_pages.empty())
+ m_pages.resize(0);
+ auto page = add_options_page(_(L("General")), "printer_empty.png");
+ auto optgroup = page->new_optgroup(_(L("Size and coordinates")));
+
+ Line line{ _(L("Bed shape")), "" };
+ line.widget = [this](wxWindow* parent){
+ auto btn = new wxButton(parent, wxID_ANY, _(L(" Set ")) + dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
+ // btn->SetFont(Slic3r::GUI::small_font);
+ btn->SetBitmap(wxBitmap(from_u8(Slic3r::var("printer_empty.png")), wxBITMAP_TYPE_PNG));
+
+ auto sizer = new wxBoxSizer(wxHORIZONTAL);
+ sizer->Add(btn);
+
+ btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent e)
+ {
+ auto dlg = new BedShapeDialog(this);
+ dlg->build_dialog(m_config->option<ConfigOptionPoints>("bed_shape"));
+ if (dlg->ShowModal() == wxID_OK){
+ load_key_value("bed_shape", dlg->GetValue());
+ update_changed_ui();
+ }
+ }));
+
+ return sizer;
+ };
+ optgroup->append_line(line, &m_colored_Label);
+ optgroup->append_single_option_line("max_print_height");
+
+ optgroup = page->new_optgroup(_(L("Display")));
+ optgroup->append_single_option_line("display_width");
+ optgroup->append_single_option_line("display_height");
+
+ auto option = optgroup->get_option("display_pixels_x");
+ line = { _(option.opt.full_label), "" };
+ line.append_option(option);
+ line.append_option(optgroup->get_option("display_pixels_y"));
+ optgroup->append_line(line);
+
+ optgroup = page->new_optgroup(_(L("Corrections")));
+ line = Line{ m_config->def()->get("printer_correction")->full_label, "" };
+ std::vector<std::string> axes{ "X", "Y", "Z" };
+ int id = 0;
+ for (auto& axis : axes) {
+ auto opt = optgroup->get_option("printer_correction", id);
+ opt.opt.label = axis;
+ line.append_option(opt);
+ ++id;
+ }
+ optgroup->append_line(line);
+
+ page = add_options_page(_(L("Notes")), "note.png");
+ optgroup = page->new_optgroup(_(L("Notes")), 0);
+ option = optgroup->get_option("printer_notes");
+ option.opt.full_width = true;
+ option.opt.height = 250;
+ optgroup->append_single_option_line(option);
+
+ page = add_options_page(_(L("Dependencies")), "wrench.png");
+ optgroup = page->new_optgroup(_(L("Profile dependencies")));
+ line = Line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_parent_preset_description_line);
+ };
+ optgroup->append_line(line);
+}
+
void TabPrinter::update_serial_ports(){
Field *field = get_field("serial_port");
Choice *choice = static_cast<Choice *>(field);
- choice->set_values(scan_serial_ports());
+ choice->set_values(Utils::scan_serial_ports());
}
void TabPrinter::extruders_count_changed(size_t extruders_count){
@@ -1263,15 +1832,129 @@ void TabPrinter::extruders_count_changed(size_t extruders_count){
build_extruder_pages();
reload_config();
on_value_change("extruders_count", extruders_count);
+ update_objects_list_extruder_column(extruders_count);
+}
+
+void TabPrinter::append_option_line(ConfigOptionsGroupShp optgroup, const std::string opt_key)
+{
+ auto option = optgroup->get_option(opt_key, 0);
+ auto line = Line{ option.opt.full_label, "" };
+ line.append_option(option);
+ if (m_use_silent_mode)
+ line.append_option(optgroup->get_option(opt_key, 1));
+ optgroup->append_line(line);
}
-void TabPrinter::build_extruder_pages(){
- for (auto extruder_idx = m_extruder_pages.size(); extruder_idx < m_extruders_count; ++extruder_idx){
+PageShp TabPrinter::build_kinematics_page()
+{
+ auto page = add_options_page(_(L("Machine limits")), "cog.png", true);
+
+ if (m_use_silent_mode) {
+ // Legend for OptionsGroups
+ auto optgroup = page->new_optgroup(_(L("")));
+ optgroup->set_show_modified_btns_val(false);
+ optgroup->label_width = 230;
+ auto line = Line{ "", "" };
+
+ ConfigOptionDef def;
+ def.type = coString;
+ def.width = 150;
+ def.gui_type = "legend";
+ def.tooltip = L("Values in this column are for Full Power mode");
+ def.default_value = new ConfigOptionString{ L("Full Power") };
+
+ auto option = Option(def, "full_power_legend");
+ line.append_option(option);
+
+ def.tooltip = L("Values in this column are for Silent mode");
+ def.default_value = new ConfigOptionString{ L("Silent") };
+ option = Option(def, "silent_legend");
+ line.append_option(option);
+
+ optgroup->append_line(line);
+ }
+
+ std::vector<std::string> axes{ "x", "y", "z", "e" };
+ auto optgroup = page->new_optgroup(_(L("Maximum feedrates")));
+ for (const std::string &axis : axes) {
+ append_option_line(optgroup, "machine_max_feedrate_" + axis);
+ }
+
+ optgroup = page->new_optgroup(_(L("Maximum accelerations")));
+ for (const std::string &axis : axes) {
+ append_option_line(optgroup, "machine_max_acceleration_" + axis);
+ }
+ append_option_line(optgroup, "machine_max_acceleration_extruding");
+ append_option_line(optgroup, "machine_max_acceleration_retracting");
+
+ optgroup = page->new_optgroup(_(L("Jerk limits")));
+ for (const std::string &axis : axes) {
+ append_option_line(optgroup, "machine_max_jerk_" + axis);
+ }
+
+ optgroup = page->new_optgroup(_(L("Minimum feedrates")));
+ append_option_line(optgroup, "machine_min_extruding_rate");
+ append_option_line(optgroup, "machine_min_travel_rate");
+
+ return page;
+}
+
+
+void TabPrinter::build_extruder_pages()
+{
+ size_t n_before_extruders = 2; // Count of pages before Extruder pages
+ bool is_marlin_flavor = m_config->option<ConfigOptionEnum<GCodeFlavor>>("gcode_flavor")->value == gcfMarlin;
+
+ // Add/delete Kinematics page according to is_marlin_flavor
+ size_t existed_page = 0;
+ for (int i = n_before_extruders; i < m_pages.size(); ++i) // first make sure it's not there already
+ if (m_pages[i]->title().find(_(L("Machine limits"))) != std::string::npos) {
+ if (!is_marlin_flavor || m_rebuild_kinematics_page)
+ m_pages.erase(m_pages.begin() + i);
+ else
+ existed_page = i;
+ break;
+ }
+
+ if (existed_page < n_before_extruders && is_marlin_flavor){
+ auto page = build_kinematics_page();
+ m_pages.insert(m_pages.begin() + n_before_extruders, page);
+ }
+
+ if (is_marlin_flavor)
+ n_before_extruders++;
+ size_t n_after_single_extruder_MM = 2; // Count of pages after single_extruder_multi_material page
+
+ if (m_extruders_count_old == m_extruders_count ||
+ (m_has_single_extruder_MM_page && m_extruders_count == 1))
+ {
+ // if we have a single extruder MM setup, add a page with configuration options:
+ for (int i = 0; i < m_pages.size(); ++i) // first make sure it's not there already
+ if (m_pages[i]->title().find(_(L("Single extruder MM setup"))) != std::string::npos) {
+ m_pages.erase(m_pages.begin() + i);
+ break;
+ }
+ m_has_single_extruder_MM_page = false;
+ }
+ if (m_extruders_count > 1 && m_config->opt_bool("single_extruder_multi_material") && !m_has_single_extruder_MM_page) {
+ // create a page, but pretend it's an extruder page, so we can add it to m_pages ourselves
+ auto page = add_options_page(_(L("Single extruder MM setup")), "printer_empty.png", true);
+ auto optgroup = page->new_optgroup(_(L("Single extruder multimaterial parameters")));
+ optgroup->append_single_option_line("cooling_tube_retraction");
+ optgroup->append_single_option_line("cooling_tube_length");
+ optgroup->append_single_option_line("parking_pos_retraction");
+ optgroup->append_single_option_line("extra_loading_move");
+ m_pages.insert(m_pages.end() - n_after_single_extruder_MM, page);
+ m_has_single_extruder_MM_page = true;
+ }
+
+
+ for (auto extruder_idx = m_extruders_count_old; extruder_idx < m_extruders_count; ++extruder_idx){
//# build page
char buf[MIN_BUF_LENGTH_FOR_L];
sprintf(buf, _CHB(L("Extruder %d")), extruder_idx + 1);
auto page = add_options_page(from_u8(buf), "funnel.png", true);
- m_extruder_pages.push_back(page);
+ m_pages.insert(m_pages.begin() + n_before_extruders + extruder_idx, page);
auto optgroup = page->new_optgroup(_(L("Size")));
optgroup->append_single_option_line("nozzle_diameter", extruder_idx);
@@ -1309,18 +1992,11 @@ void TabPrinter::build_extruder_pages(){
}
// # remove extra pages
- if (m_extruders_count <= m_extruder_pages.size()) {
- m_extruder_pages.resize(m_extruders_count);
- }
+ if (m_extruders_count < m_extruders_count_old)
+ m_pages.erase( m_pages.begin() + n_before_extruders + m_extruders_count,
+ m_pages.begin() + n_before_extruders + m_extruders_count_old);
- // # rebuild page list
- PageShp page_note = m_pages.back();
- m_pages.pop_back();
- while (m_pages.back()->title().find(_(L("Extruder"))) != std::string::npos)
- m_pages.pop_back();
- for (auto page_extruder : m_extruder_pages)
- m_pages.push_back(page_extruder);
- m_pages.push_back(page_note);
+ m_extruders_count_old = m_extruders_count;
rebuild_page_tree();
}
@@ -1335,7 +2011,38 @@ void TabPrinter::on_preset_loaded()
extruders_count_changed(extruders_count);
}
-void TabPrinter::update(){
+void TabPrinter::update_pages()
+{
+ // update m_pages ONLY if printer technology is changed
+ if (m_presets->get_edited_preset().printer_technology() == m_printer_technology)
+ return;
+
+ // hide all old pages
+ for (auto& el : m_pages)
+ el.get()->Hide();
+
+ // set m_pages to m_pages_(technology before changing)
+ m_printer_technology == ptFFF ? m_pages.swap(m_pages_fff) : m_pages.swap(m_pages_sla);
+
+ // build Tab according to the technology, if it's not exist jet OR
+ // set m_pages_(technology after changing) to m_pages
+ if (m_presets->get_edited_preset().printer_technology() == ptFFF)
+ m_pages_fff.empty() ? build_fff() : m_pages.swap(m_pages_fff);
+ else
+ m_pages_sla.empty() ? build_sla() : m_pages.swap(m_pages_sla);
+
+ rebuild_page_tree(true);
+
+ on_value_change("printer_technology", m_presets->get_edited_preset().printer_technology()); // to update show/hide preset ComboBoxes
+}
+
+void TabPrinter::update()
+{
+ m_presets->get_edited_preset().printer_technology() == ptFFF ? update_fff() : update_sla();
+}
+
+void TabPrinter::update_fff()
+{
Freeze();
bool en;
@@ -1349,12 +2056,34 @@ void TabPrinter::update(){
m_serial_test_btn->Disable();
}
- m_octoprint_host_test_btn->Enable(!m_config->opt_string("octoprint_host").empty());
-
+ {
+ std::unique_ptr<PrintHost> host(PrintHost::get_print_host(m_config));
+ m_print_host_test_btn->Enable(!m_config->opt_string("print_host").empty() && host->can_test());
+ m_printhost_browse_btn->Enable(host->has_auto_discovery());
+ }
+
bool have_multiple_extruders = m_extruders_count > 1;
get_field("toolchange_gcode")->toggle(have_multiple_extruders);
get_field("single_extruder_multi_material")->toggle(have_multiple_extruders);
+ bool is_marlin_flavor = m_config->option<ConfigOptionEnum<GCodeFlavor>>("gcode_flavor")->value == gcfMarlin;
+
+ {
+ Field *sm = get_field("silent_mode");
+ if (! is_marlin_flavor)
+ // Disable silent mode for non-marlin firmwares.
+ get_field("silent_mode")->toggle(false);
+ if (is_marlin_flavor)
+ sm->enable();
+ else
+ sm->disable();
+ }
+
+ if (m_use_silent_mode != m_config->opt_bool("silent_mode")) {
+ m_rebuild_kinematics_page = true;
+ m_use_silent_mode = m_config->opt_bool("silent_mode");
+ }
+
for (size_t i = 0; i < m_extruders_count; ++i) {
bool have_retract_length = m_config->opt_float("retract_length", i) > 0;
@@ -1416,16 +2145,27 @@ void TabPrinter::update(){
Thaw();
}
+void TabPrinter::update_sla(){ ; }
+
// Initialize the UI from the current preset
void Tab::load_current_preset()
{
auto preset = m_presets->get_edited_preset();
- preset.is_default ? m_btn_delete_preset->Disable() : m_btn_delete_preset->Enable(true);
- update();
- // For the printer profile, generate the extruder pages.
- on_preset_loaded();
- // Reload preset pages with the new configuration values.
- reload_config();
+
+ (preset.is_default || preset.is_system) ? m_btn_delete_preset->Disable() : m_btn_delete_preset->Enable(true);
+
+ update();
+ // For the printer profile, generate the extruder pages.
+ if (preset.printer_technology() == ptFFF)
+ on_preset_loaded();
+ // Reload preset pages with the new configuration values.
+ reload_config();
+
+ m_bmp_non_system = m_presets->get_selected_preset_parent() ? &m_bmp_value_unlock : &m_bmp_white_bullet;
+ m_ttg_non_system = m_presets->get_selected_preset_parent() ? &m_ttg_value_unlock : &m_ttg_white_bullet_ns;
+ m_tt_non_system = m_presets->get_selected_preset_parent() ? &m_tt_value_unlock : &m_ttg_white_bullet_ns;
+
+ m_undo_to_sys_btn->Enable(!preset.is_default);
// use CallAfter because some field triggers schedule on_change calls using CallAfter,
// and we don't want them to be called after this update_dirty() as they would mark the
@@ -1436,36 +2176,66 @@ void Tab::load_current_preset()
if (!checked_tab(this))
return;
update_tab_ui();
+
+ // update show/hide tabs
+ if (m_name == "printer"){
+ PrinterTechnology& printer_technology = m_presets->get_edited_preset().printer_technology();
+ if (printer_technology != static_cast<TabPrinter*>(this)->m_printer_technology)
+ {
+ for (auto& tab : get_preset_tabs()){
+ if (tab.technology != printer_technology)
+ {
+ int page_id = get_tab_panel()->FindPage(tab.panel);
+ get_tab_panel()->GetPage(page_id)->Show(false);
+ get_tab_panel()->RemovePage(page_id);
+ }
+ else
+ get_tab_panel()->InsertPage(get_tab_panel()->FindPage(this), tab.panel, tab.panel->title());
+ }
+
+ static_cast<TabPrinter*>(this)->m_printer_technology = printer_technology;
+ }
+ }
+
on_presets_changed();
if (name() == "print")
update_frequently_changed_parameters();
- if (m_name == "printer")
+ if (m_name == "printer"){
static_cast<TabPrinter*>(this)->m_initial_extruders_count = static_cast<TabPrinter*>(this)->m_extruders_count;
+ const Preset* parent_preset = m_presets->get_selected_preset_parent();
+ static_cast<TabPrinter*>(this)->m_sys_extruders_count = parent_preset == nullptr ? 0 :
+ static_cast<const ConfigOptionFloats*>(parent_preset->config.option("nozzle_diameter"))->values.size();
+ }
+ m_opt_status_value = (m_presets->get_selected_preset_parent() ? osSystemValue : 0) | osInitValue;
+ init_options_list();
update_changed_ui();
});
}
//Regerenerate content of the page tree.
-void Tab::rebuild_page_tree()
+void Tab::rebuild_page_tree(bool tree_sel_change_event /*= false*/)
{
Freeze();
// get label of the currently selected item
auto selected = m_treectrl->GetItemText(m_treectrl->GetSelection());
auto rootItem = m_treectrl->GetRootItem();
- m_treectrl->DeleteChildren(rootItem);
+
auto have_selection = 0;
+ m_treectrl->DeleteChildren(rootItem);
for (auto p : m_pages)
{
auto itemId = m_treectrl->AppendItem(rootItem, p->title(), p->iconID());
+ m_treectrl->SetItemTextColour(itemId, p->get_item_colour());
if (p->title() == selected) {
- m_disable_tree_sel_changed_event = 1;
+ if (!(p->title() == _(L("Machine limits")) || p->title() == _(L("Single extruder MM setup")))) // These Pages have to be updated inside OnTreeSelChange
+ m_disable_tree_sel_changed_event = !tree_sel_change_event;
m_treectrl->SelectItem(itemId);
- m_disable_tree_sel_changed_event = 0;
+ m_disable_tree_sel_changed_event = false;
have_selection = 1;
}
}
-
+
if (!have_selection) {
// this is triggered on first load, so we don't disable the sel change event
m_treectrl->SelectItem(m_treectrl->GetFirstVisibleItem());//! (treectrl->GetFirstChild(rootItem));
@@ -1478,46 +2248,51 @@ void Tab::rebuild_page_tree()
// If the current profile is modified, user is asked to save the changes.
void Tab::select_preset(std::string preset_name /*= ""*/)
{
- std::string name = preset_name;
- auto force = false;
- auto presets = m_presets;
// If no name is provided, select the "-- default --" preset.
- if (name.empty())
- name= presets->default_preset().name;
- auto current_dirty = presets->current_is_dirty();
- auto canceled = false;
- auto printer_tab = presets->name().compare("printer")==0;
+ if (preset_name.empty())
+ preset_name = m_presets->default_preset().name;
+ auto current_dirty = m_presets->current_is_dirty();
+ auto printer_tab = m_presets->name() == "printer";
+ auto canceled = false;
m_reload_dependent_tabs = {};
- if (!force && current_dirty && !may_discard_current_dirty_preset()) {
+ if (current_dirty && !may_discard_current_dirty_preset()) {
canceled = true;
- } else if(printer_tab) {
+ } else if (printer_tab) {
// Before switching the printer to a new one, verify, whether the currently active print and filament
// are compatible with the new printer.
// If they are not compatible and the current print or filament are dirty, let user decide
// whether to discard the changes or keep the current printer selection.
- auto new_printer_preset = presets->find_preset(name, true);
- auto print_presets = &m_preset_bundle->prints;
- bool print_preset_dirty = print_presets->current_is_dirty();
- bool print_preset_compatible = print_presets->get_edited_preset().is_compatible_with_printer(*new_printer_preset);
- canceled = !force && print_preset_dirty && !print_preset_compatible &&
- !may_discard_current_dirty_preset(print_presets, name);
- auto filament_presets = &m_preset_bundle->filaments;
- bool filament_preset_dirty = filament_presets->current_is_dirty();
- bool filament_preset_compatible = filament_presets->get_edited_preset().is_compatible_with_printer(*new_printer_preset);
- if (!canceled && !force) {
- canceled = filament_preset_dirty && !filament_preset_compatible &&
- !may_discard_current_dirty_preset(filament_presets, name);
+ //
+ // With the introduction of the SLA printer types, we need to support switching between
+ // the FFF and SLA printers.
+ const Preset &new_printer_preset = *m_presets->find_preset(preset_name, true);
+ PrinterTechnology old_printer_technology = m_presets->get_edited_preset().printer_technology();
+ PrinterTechnology new_printer_technology = new_printer_preset.printer_technology();
+ struct PresetUpdate {
+ std::string name;
+ PresetCollection *presets;
+ PrinterTechnology technology;
+ bool old_preset_dirty;
+ bool new_preset_compatible;
+ };
+ std::vector<PresetUpdate> updates = {
+ { "print", &m_preset_bundle->prints, ptFFF },
+ { "filament", &m_preset_bundle->filaments, ptFFF },
+ { "sla_material", &m_preset_bundle->sla_materials, ptSLA }
+ };
+ for (PresetUpdate &pu : updates) {
+ pu.old_preset_dirty = (old_printer_technology == pu.technology) && pu.presets->current_is_dirty();
+ pu.new_preset_compatible = (new_printer_technology == pu.technology) && pu.presets->get_edited_preset().is_compatible_with_printer(new_printer_preset);
+ if (! canceled)
+ canceled = pu.old_preset_dirty && ! pu.new_preset_compatible && ! may_discard_current_dirty_preset(pu.presets, preset_name);
}
- if (!canceled) {
- if (!print_preset_compatible) {
- // The preset will be switched to a different, compatible preset, or the '-- default --'.
- m_reload_dependent_tabs.push_back("print");
- if (print_preset_dirty) print_presets->discard_current_changes();
- }
- if (!filament_preset_compatible) {
+ if (! canceled) {
+ for (PresetUpdate &pu : updates) {
// The preset will be switched to a different, compatible preset, or the '-- default --'.
- m_reload_dependent_tabs.push_back("filament");
- if (filament_preset_dirty) filament_presets->discard_current_changes();
+ if (pu.technology == new_printer_technology)
+ m_reload_dependent_tabs.emplace_back(pu.name);
+ if (pu.old_preset_dirty)
+ pu.presets->discard_current_changes();
}
}
}
@@ -1526,24 +2301,25 @@ void Tab::select_preset(std::string preset_name /*= ""*/)
// Trigger the on_presets_changed event so that we also restore the previous value in the plater selector,
// if this action was initiated from the platter.
on_presets_changed();
- }
- else {
- if (current_dirty) presets->discard_current_changes() ;
- presets->select_preset_by_name(name, force);
+ } else {
+ if (current_dirty)
+ m_presets->discard_current_changes() ;
+ m_presets->select_preset_by_name(preset_name, false);
// Mark the print & filament enabled if they are compatible with the currently selected preset.
// The following method should not discard changes of current print or filament presets on change of a printer profile,
// if they are compatible with the current printer.
if (current_dirty || printer_tab)
m_preset_bundle->update_compatible_with_printer(true);
// Initialize the UI from the current preset.
+ if (printer_tab)
+ static_cast<TabPrinter*>(this)->update_pages();
load_current_preset();
}
-
}
// If the current preset is dirty, the user is asked whether the changes may be discarded.
// if the current preset was not dirty, or the user agreed to discard the changes, 1 is returned.
-bool Tab::may_discard_current_dirty_preset(PresetCollection* presets /*= nullptr*/, std::string new_printer_name /*= ""*/)
+bool Tab::may_discard_current_dirty_preset(PresetCollection* presets /*= nullptr*/, const std::string& new_printer_name /*= ""*/)
{
if (presets == nullptr) presets = m_presets;
// Display a dialog showing the dirty options in a human readable form.
@@ -1581,21 +2357,40 @@ bool Tab::may_discard_current_dirty_preset(PresetCollection* presets /*= nullptr
void Tab::OnTreeSelChange(wxTreeEvent& event)
{
if (m_disable_tree_sel_changed_event) return;
+
+// There is a bug related to Ubuntu overlay scrollbars, see https://github.com/prusa3d/Slic3r/issues/898 and https://github.com/prusa3d/Slic3r/issues/952.
+// The issue apparently manifests when Show()ing a window with overlay scrollbars while the UI is frozen. For this reason,
+// we will Thaw the UI prematurely on Linux. This means destroing the no_updates object prematurely.
+#ifdef __linux__
+ std::unique_ptr<wxWindowUpdateLocker> no_updates(new wxWindowUpdateLocker(this));
+#else
+ wxWindowUpdateLocker noUpdates(this);
+#endif
+
Page* page = nullptr;
auto selection = m_treectrl->GetItemText(m_treectrl->GetSelection());
for (auto p : m_pages)
if (p->title() == selection)
{
page = p.get();
+ m_is_nonsys_values = page->m_is_nonsys_values;
+ m_is_modified_values = page->m_is_modified_values;
break;
}
if (page == nullptr) return;
for (auto& el : m_pages)
el.get()->Hide();
+
+#ifdef __linux__
+ no_updates.reset(nullptr);
+#endif
+
page->Show();
m_hsizer->Layout();
Refresh();
+
+ update_undo_buttons();
}
void Tab::OnKeyDown(wxKeyEvent& event)
@@ -1631,7 +2426,7 @@ void Tab::save_preset(std::string name /*= ""*/)
std::vector<std::string> values;
for (size_t i = 0; i < m_presets->size(); ++i) {
const Preset &preset = m_presets->preset(i);
- if (preset.is_default || preset.is_external)
+ if (preset.is_default || preset.is_system || preset.is_external)
continue;
values.push_back(preset.name);
}
@@ -1645,6 +2440,15 @@ void Tab::save_preset(std::string name /*= ""*/)
show_error(this, _(L("The supplied name is empty. It can't be saved.")));
return;
}
+ const Preset *existing = m_presets->find_preset(name, false);
+ if (existing && (existing->is_default || existing->is_system)) {
+ show_error(this, _(L("Cannot overwrite a system profile.")));
+ return;
+ }
+ if (existing && (existing->is_external)) {
+ show_error(this, _(L("Cannot overwrite an external profile.")));
+ return;
+ }
}
// Save the preset into Slic3r::data_dir / presets / section_name / preset_name.ini
@@ -1655,6 +2459,12 @@ void Tab::save_preset(std::string name /*= ""*/)
update_tab_ui();
// Update the selection boxes at the platter.
on_presets_changed();
+ // If current profile is saved, "delete preset" button have to be enabled
+ m_btn_delete_preset->Enable(true);
+
+ if (m_name == "printer")
+ static_cast<TabPrinter*>(this)->m_initial_extruders_count = static_cast<TabPrinter*>(this)->m_extruders_count;
+ update_changed_ui();
}
// Called for a currently selected preset.
@@ -1690,7 +2500,7 @@ void Tab::toggle_show_hide_incompatible()
void Tab::update_show_hide_incompatible_button()
{
m_btn_hide_incompatible_presets->SetBitmap(m_show_incompatible_presets ?
- *m_bmp_show_incompatible_presets : *m_bmp_hide_incompatible_presets);
+ m_bmp_show_incompatible_presets : m_bmp_hide_incompatible_presets);
m_btn_hide_incompatible_presets->SetToolTip(m_show_incompatible_presets ?
"Both compatible an incompatible presets are shown. Click to hide presets not compatible with the current printer." :
"Only compatible presets are shown. Click to show both the presets compatible and not compatible with the current printer.");
@@ -1719,7 +2529,7 @@ void Tab::update_ui_from_settings()
wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox, wxButton** btn)
{
*checkbox = new wxCheckBox(parent, wxID_ANY, _(L("All")));
- *btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+"\u2026", wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
+ *btn = new wxButton(parent, wxID_ANY, _(L(" Set "))+dots, wxDefaultPosition, wxDefaultSize, wxBU_LEFT | wxBU_EXACTFIT);
(*btn)->SetBitmap(wxBitmap(from_u8(Slic3r::var("printer_empty.png")), wxBITMAP_TYPE_PNG));
@@ -1734,6 +2544,7 @@ wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox
if ((*checkbox)->GetValue())
load_key_value("compatible_printers", std::vector<std::string> {});
get_field("compatible_printers_condition")->toggle((*checkbox)->GetValue());
+ update_changed_ui();
}) );
(*btn)->Bind(wxEVT_BUTTON, ([this, parent, checkbox, btn](wxCommandEvent e)
@@ -1744,13 +2555,13 @@ wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox
for (size_t idx = 0; idx < printers->size(); ++idx)
{
Preset& preset = printers->preset(idx);
- if (!preset.is_default && !preset.is_external)
+ if (!preset.is_default && !preset.is_external && !preset.is_system)
presets.Add(preset.name);
}
- auto dlg = new wxMultiChoiceDialog(parent,
- _(L("Select the printers this profile is compatible with.")),
- _(L("Compatible printers")), presets);
+ wxMultiChoiceDialog dlg(parent,
+ _(L("Select the printers this profile is compatible with.")),
+ _(L("Compatible printers")), presets);
// # Collect and set indices of printers marked as compatible.
wxArrayInt selections;
auto *compatible_printers = dynamic_cast<const ConfigOptionStrings*>(m_config->option("compatible_printers"));
@@ -1762,12 +2573,12 @@ wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox
selections.Add(idx);
break;
}
- dlg->SetSelections(selections);
+ dlg.SetSelections(selections);
std::vector<std::string> value;
// Show the dialog.
- if (dlg->ShowModal() == wxID_OK) {
+ if (dlg.ShowModal() == wxID_OK) {
selections.Clear();
- selections = dlg->GetSelections();
+ selections = dlg.GetSelections();
for (auto idx : selections)
value.push_back(presets[idx].ToStdString());
if (value.empty()) {
@@ -1776,18 +2587,255 @@ wxSizer* Tab::compatible_printers_widget(wxWindow* parent, wxCheckBox** checkbox
}
// All printers have been made compatible with this preset.
load_key_value("compatible_printers", value);
+ update_changed_ui();
}
}));
return sizer;
}
+void Tab::update_presetsctrl(wxDataViewTreeCtrl* ui, bool show_incompatible)
+{
+ if (ui == nullptr)
+ return;
+ ui->Freeze();
+ ui->DeleteAllItems();
+ auto presets = m_presets->get_presets();
+ auto idx_selected = m_presets->get_idx_selected();
+ auto suffix_modified = m_presets->get_suffix_modified();
+ int icon_compatible = 0;
+ int icon_incompatible = 1;
+ int cnt_items = 0;
+
+ auto root_sys = ui->AppendContainer(wxDataViewItem(0), _(L("System presets")));
+ auto root_def = ui->AppendContainer(wxDataViewItem(0), _(L("Default presets")));
+
+ auto show_def = get_app_config()->get("no_defaults")[0] != '1';
+
+ for (size_t i = presets.front().is_visible ? 0 : 1; i < presets.size(); ++i) {
+ const Preset &preset = presets[i];
+ if (!preset.is_visible || (!show_incompatible && !preset.is_compatible && i != idx_selected))
+ continue;
+
+ auto preset_name = wxString::FromUTF8((preset.name + (preset.is_dirty ? suffix_modified : "")).c_str());
+
+ wxDataViewItem item;
+ if (preset.is_system)
+ item = ui->AppendItem(root_sys, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else if (show_def && preset.is_default)
+ item = ui->AppendItem(root_def, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else
+ {
+ auto parent = m_presets->get_preset_parent(preset);
+ if (parent == nullptr)
+ item = ui->AppendItem(root_def, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else
+ {
+ auto parent_name = parent->name;
+
+ wxDataViewTreeStoreContainerNode *node = ui->GetStore()->FindContainerNode(root_sys);
+ if (node)
+ {
+ wxDataViewTreeStoreNodeList::iterator iter;
+ for (iter = node->GetChildren().begin(); iter != node->GetChildren().end(); iter++)
+ {
+ wxDataViewTreeStoreNode* child = *iter;
+ auto child_item = child->GetItem();
+ auto item_text = ui->GetItemText(child_item);
+ if (item_text == parent_name)
+ {
+ auto added_child = ui->AppendItem(child->GetItem(), preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ if (!added_child){
+ ui->DeleteItem(child->GetItem());
+ auto new_parent = ui->AppendContainer(root_sys, parent_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ ui->AppendItem(new_parent, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ }
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ cnt_items++;
+ if (i == idx_selected){
+ ui->Select(item);
+ m_cc_presets_choice->SetText(preset_name);
+ }
+ }
+ if (ui->GetStore()->GetChildCount(root_def) == 0)
+ ui->DeleteItem(root_def);
+
+ ui->Thaw();
+}
+
+void Tab::update_tab_presets(wxComboCtrl* ui, bool show_incompatible)
+{
+ if (ui == nullptr)
+ return;
+ ui->Freeze();
+ ui->Clear();
+ auto presets = m_presets->get_presets();
+ auto idx_selected = m_presets->get_idx_selected();
+ auto suffix_modified = m_presets->get_suffix_modified();
+ int icon_compatible = 0;
+ int icon_incompatible = 1;
+ int cnt_items = 0;
+
+ wxDataViewTreeCtrlComboPopup* popup = wxDynamicCast(m_cc_presets_choice->GetPopupControl(), wxDataViewTreeCtrlComboPopup);
+ if (popup != nullptr)
+ {
+ popup->DeleteAllItems();
+
+ auto root_sys = popup->AppendContainer(wxDataViewItem(0), _(L("System presets")));
+ auto root_def = popup->AppendContainer(wxDataViewItem(0), _(L("Default presets")));
+
+ auto show_def = get_app_config()->get("no_defaults")[0] != '1';
+
+ for (size_t i = presets.front().is_visible ? 0 : 1; i < presets.size(); ++i) {
+ const Preset &preset = presets[i];
+ if (!preset.is_visible || (!show_incompatible && !preset.is_compatible && i != idx_selected))
+ continue;
+
+ auto preset_name = wxString::FromUTF8((preset.name + (preset.is_dirty ? suffix_modified : "")).c_str());
+
+ wxDataViewItem item;
+ if (preset.is_system)
+ item = popup->AppendItem(root_sys, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else if (show_def && preset.is_default)
+ item = popup->AppendItem(root_def, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else
+ {
+ auto parent = m_presets->get_preset_parent(preset);
+ if (parent == nullptr)
+ item = popup->AppendItem(root_def, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ else
+ {
+ auto parent_name = parent->name;
+
+ wxDataViewTreeStoreContainerNode *node = popup->GetStore()->FindContainerNode(root_sys);
+ if (node)
+ {
+ wxDataViewTreeStoreNodeList::iterator iter;
+ for (iter = node->GetChildren().begin(); iter != node->GetChildren().end(); iter++)
+ {
+ wxDataViewTreeStoreNode* child = *iter;
+ auto child_item = child->GetItem();
+ auto item_text = popup->GetItemText(child_item);
+ if (item_text == parent_name)
+ {
+ auto added_child = popup->AppendItem(child->GetItem(), preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ if (!added_child){
+ popup->DeleteItem(child->GetItem());
+ auto new_parent = popup->AppendContainer(root_sys, parent_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ popup->AppendItem(new_parent, preset_name,
+ preset.is_compatible ? icon_compatible : icon_incompatible);
+ }
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ cnt_items++;
+ if (i == idx_selected){
+ popup->Select(item);
+ m_cc_presets_choice->SetText(preset_name);
+ }
+ }
+ if (popup->GetStore()->GetChildCount(root_def) == 0)
+ popup->DeleteItem(root_def);
+ }
+ ui->Thaw();
+}
+
+void Tab::fill_icon_descriptions()
+{
+ m_icon_descriptions.push_back(t_icon_description(&m_bmp_value_lock, L("LOCKED LOCK;"
+ "indicates that the settings are the same as the system values for the current option group")));
+
+ m_icon_descriptions.push_back(t_icon_description(&m_bmp_value_unlock, L("UNLOCKED LOCK;"
+ "indicates that some settings were changed and are not equal to the system values for "
+ "the current option group.\n"
+ "Click the UNLOCKED LOCK icon to reset all settings for current option group to "
+ "the system values.")));
+
+ m_icon_descriptions.push_back(t_icon_description(&m_bmp_white_bullet, L("WHITE BULLET;"
+ "for the left button: \tindicates a non-system preset,\n"
+ "for the right button: \tindicates that the settings hasn't been modified.")));
+
+ m_icon_descriptions.push_back(t_icon_description(&m_bmp_value_revert, L("BACK ARROW;"
+ "indicates that the settings were changed and are not equal to the last saved preset for "
+ "the current option group.\n"
+ "Click the BACK ARROW icon to reset all settings for the current option group to "
+ "the last saved preset.")));
+}
+
+void Tab::set_tooltips_text()
+{
+// m_undo_to_sys_btn->SetToolTip(_(L( "LOCKED LOCK icon indicates that the settings are the same as the system values "
+// "for the current option group.\n"
+// "UNLOCKED LOCK icon indicates that some settings were changed and are not equal "
+// "to the system values for the current option group.\n"
+// "WHITE BULLET icon indicates a non system preset.\n\n"
+// "Click the UNLOCKED LOCK icon to reset all settings for current option group to "
+// "the system values.")));
+//
+// m_undo_btn->SetToolTip(_(L( "WHITE BULLET icon indicates that the settings are the same as in the last saved"
+// "preset for the current option group.\n"
+// "BACK ARROW icon indicates that the settings were changed and are not equal to "
+// "the last saved preset for the current option group.\n\n"
+// "Click the BACK ARROW icon to reset all settings for the current option group to "
+// "the last saved preset.")));
+
+ // --- Tooltip text for reset buttons (for whole options group)
+ // Text to be shown on the "Revert to system" aka "Lock to system" button next to each input field.
+ m_ttg_value_lock = _(L("LOCKED LOCK icon indicates that the settings are the same as the system values "
+ "for the current option group"));
+ m_ttg_value_unlock = _(L("UNLOCKED LOCK icon indicates that some settings were changed and are not equal "
+ "to the system values for the current option group.\n"
+ "Click to reset all settings for current option group to the system values."));
+ m_ttg_white_bullet_ns = _(L("WHITE BULLET icon indicates a non system preset."));
+ m_ttg_non_system = &m_ttg_white_bullet_ns;
+ // Text to be shown on the "Undo user changes" button next to each input field.
+ m_ttg_white_bullet = _(L("WHITE BULLET icon indicates that the settings are the same as in the last saved "
+ "preset for the current option group."));
+ m_ttg_value_revert = _(L("BACK ARROW icon indicates that the settings were changed and are not equal to "
+ "the last saved preset for the current option group.\n"
+ "Click to reset all settings for the current option group to the last saved preset."));
+
+ // --- Tooltip text for reset buttons (for each option in group)
+ // Text to be shown on the "Revert to system" aka "Lock to system" button next to each input field.
+ m_tt_value_lock = _(L("LOCKED LOCK icon indicates that the value is the same as the system value."));
+ m_tt_value_unlock = _(L("UNLOCKED LOCK icon indicates that the value was changed and is not equal "
+ "to the system value.\n"
+ "Click to reset current value to the system value."));
+ // m_tt_white_bullet_ns= _(L("WHITE BULLET icon indicates a non system preset."));
+ m_tt_non_system = &m_ttg_white_bullet_ns;
+ // Text to be shown on the "Undo user changes" button next to each input field.
+ m_tt_white_bullet = _(L("WHITE BULLET icon indicates that the value is the same as in the last saved preset."));
+ m_tt_value_revert = _(L("BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n"
+ "Click to reset current value to the last saved preset."));
+}
+
void Page::reload_config()
{
for (auto group : m_optgroups)
group->reload_config();
}
-Field* Page::get_field(t_config_option_key opt_key, int opt_index/* = -1*/) const
+Field* Page::get_field(const t_config_option_key& opt_key, int opt_index /*= -1*/) const
{
Field* field = nullptr;
for (auto opt : m_optgroups){
@@ -1798,7 +2846,7 @@ Field* Page::get_field(t_config_option_key opt_key, int opt_index/* = -1*/) cons
return field;
}
-bool Page::set_value(t_config_option_key opt_key, boost::any value){
+bool Page::set_value(const t_config_option_key& opt_key, const boost::any& value){
bool changed = false;
for(auto optgroup: m_optgroups) {
if (optgroup->set_value(opt_key, value))
@@ -1808,35 +2856,49 @@ bool Page::set_value(t_config_option_key opt_key, boost::any value){
}
// package Slic3r::GUI::Tab::Page;
-ConfigOptionsGroupShp Page::new_optgroup(wxString title, int noncommon_label_width /*= -1*/)
+ConfigOptionsGroupShp Page::new_optgroup(const wxString& title, int noncommon_label_width /*= -1*/)
{
//! config_ have to be "right"
ConfigOptionsGroupShp optgroup = std::make_shared<ConfigOptionsGroup>(this, title, m_config, true);
if (noncommon_label_width >= 0)
optgroup->label_width = noncommon_label_width;
- optgroup->m_on_change = [this](t_config_option_key opt_key, boost::any value){
+#ifdef __WXOSX__
+ auto tab = GetParent()->GetParent();
+#else
+ auto tab = GetParent();
+#endif
+ optgroup->m_on_change = [this, tab](t_config_option_key opt_key, boost::any value){
//! This function will be called from OptionGroup.
//! Using of CallAfter is redundant.
//! And in some cases it causes update() function to be recalled again
//! wxTheApp->CallAfter([this, opt_key, value]() {
- static_cast<Tab*>(GetParent())->update_dirty();
- static_cast<Tab*>(GetParent())->on_value_change(opt_key, value);
+ static_cast<Tab*>(tab)->update_dirty();
+ static_cast<Tab*>(tab)->on_value_change(opt_key, value);
//! });
};
- optgroup->m_get_initial_config = [this](){
- DynamicPrintConfig config = static_cast<Tab*>(GetParent())->m_presets->get_selected_preset().config;
+ optgroup->m_get_initial_config = [this, tab](){
+ DynamicPrintConfig config = static_cast<Tab*>(tab)->m_presets->get_selected_preset().config;
+ return config;
+ };
+
+ optgroup->m_get_sys_config = [this, tab](){
+ DynamicPrintConfig config = static_cast<Tab*>(tab)->m_presets->get_selected_preset_parent()->config;
return config;
};
+ optgroup->have_sys_config = [this, tab](){
+ return static_cast<Tab*>(tab)->m_presets->get_selected_preset_parent() != nullptr;
+ };
+
vsizer()->Add(optgroup->sizer, 0, wxEXPAND | wxALL, 10);
m_optgroups.push_back(optgroup);
return optgroup;
}
-void SavePresetWindow::build(wxString title, std::string default_name, std::vector<std::string> &values)
+void SavePresetWindow::build(const wxString& title, const std::string& default_name, std::vector<std::string> &values)
{
auto text = new wxStaticText(this, wxID_ANY, _(L("Save ")) + title + _(L(" as:")),
wxDefaultPosition, wxDefaultSize);
@@ -1865,14 +2927,25 @@ void SavePresetWindow::accept()
if (!m_chosen_name.empty()) {
const char* unusable_symbols = "<>:/\\|?*\"";
bool is_unusable_symbol = false;
+ bool is_unusable_postfix = false;
+ const std::string unusable_postfix = PresetCollection::get_suffix_modified();//"(modified)";
for (size_t i = 0; i < std::strlen(unusable_symbols); i++){
if (m_chosen_name.find_first_of(unusable_symbols[i]) != std::string::npos){
is_unusable_symbol = true;
break;
}
}
+ if (m_chosen_name.find(unusable_postfix) != std::string::npos)
+ is_unusable_postfix = true;
+
if (is_unusable_symbol) {
- show_error(this, _(L("The supplied name is not valid; the following characters are not allowed:"))+" <>:/\\|?*\"");
+ show_error(this,_(L("The supplied name is not valid;")) + "\n" +
+ _(L("the following characters are not allowed:")) + " <>:/\\|?*\"");
+ }
+ else if (is_unusable_postfix){
+ show_error(this,_(L("The supplied name is not valid;")) + "\n" +
+ _(L("the following postfix are not allowed:")) + "\n\t" + //unusable_postfix);
+ wxString::FromUTF8(unusable_postfix.c_str()));
}
else if (m_chosen_name.compare("- default -") == 0) {
show_error(this, _(L("The supplied name is not available.")));
@@ -1883,5 +2956,71 @@ void SavePresetWindow::accept()
}
}
+void TabSLAMaterial::build()
+{
+ m_presets = &m_preset_bundle->sla_materials;
+ load_initial_data();
+
+ auto page = add_options_page(_(L("Material")), "package_green.png");
+
+ auto optgroup = page->new_optgroup(_(L("Layers")));
+ optgroup->append_single_option_line("layer_height");
+ optgroup->append_single_option_line("initial_layer_height");
+
+ optgroup = page->new_optgroup(_(L("Exposure")));
+ optgroup->append_single_option_line("exposure_time");
+ optgroup->append_single_option_line("initial_exposure_time");
+
+ optgroup = page->new_optgroup(_(L("Corrections")));
+ optgroup->label_width = 190;
+ std::vector<std::string> corrections = { "material_correction_printing", "material_correction_curing" };
+ std::vector<std::string> axes{ "X", "Y", "Z" };
+ for (auto& opt_key : corrections){
+ auto line = Line{ m_config->def()->get(opt_key)->full_label, "" };
+ int id = 0;
+ for (auto& axis : axes) {
+ auto opt = optgroup->get_option(opt_key, id);
+ opt.opt.label = axis;
+ opt.opt.width = 60;
+ line.append_option(opt);
+ ++id;
+ }
+ optgroup->append_line(line);
+ }
+
+ page = add_options_page(_(L("Notes")), "note.png");
+ optgroup = page->new_optgroup(_(L("Notes")), 0);
+ optgroup->label_width = 0;
+ Option option = optgroup->get_option("material_notes");
+ option.opt.full_width = true;
+ option.opt.height = 250;
+ optgroup->append_single_option_line(option);
+
+ page = add_options_page(_(L("Dependencies")), "wrench.png");
+ optgroup = page->new_optgroup(_(L("Profile dependencies")));
+ auto line = Line { _(L("Compatible printers")), "" };
+ line.widget = [this](wxWindow* parent){
+ return compatible_printers_widget(parent, &m_compatible_printers_checkbox, &m_compatible_printers_btn);
+ };
+ optgroup->append_line(line, &m_colored_Label);
+
+ option = optgroup->get_option("compatible_printers_condition");
+ option.opt.full_width = true;
+ optgroup->append_single_option_line(option);
+
+ line = Line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_parent_preset_description_line);
+ };
+ optgroup->append_line(line);
+}
+
+void TabSLAMaterial::update()
+{
+ if (get_preset_bundle()->printers.get_selected_preset().printer_technology() == ptFFF)
+ return; // ys_FIXME
+}
+
} // GUI
} // Slic3r