123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983 |
- package Slic3r::GUI::Tab;
- use strict;
- use warnings;
- use utf8;
- use File::Basename qw(basename);
- use List::Util qw(first);
- use Wx qw(:bookctrl :dialog :keycode :icon :id :misc :panel :sizer :treectrl :window
- wxTheApp);
- use Wx::Event qw(EVT_BUTTON EVT_CHOICE EVT_KEY_DOWN EVT_TREE_SEL_CHANGED);
- use base 'Wx::Panel';
- sub new {
- my $class = shift;
- my ($parent, %params) = @_;
- my $self = $class->SUPER::new($parent, -1, wxDefaultPosition, wxDefaultSize, wxBK_LEFT | wxTAB_TRAVERSAL);
- $self->{options} = []; # array of option names handled by this tab
- $self->{$_} = $params{$_} for qw(on_value_change on_presets_changed);
-
- # horizontal sizer
- $self->{sizer} = Wx::BoxSizer->new(wxHORIZONTAL);
- $self->{sizer}->SetSizeHints($self);
- $self->SetSizer($self->{sizer});
-
- # left vertical sizer
- my $left_sizer = Wx::BoxSizer->new(wxVERTICAL);
- $self->{sizer}->Add($left_sizer, 0, wxEXPAND | wxLEFT | wxTOP | wxBOTTOM, 3);
-
- my $left_col_width = 150;
-
- # preset chooser
- {
-
- # choice menu
- $self->{presets_choice} = Wx::Choice->new($self, -1, wxDefaultPosition, [$left_col_width, -1], []);
- $self->{presets_choice}->SetFont($Slic3r::GUI::small_font);
-
- # buttons
- $self->{btn_save_preset} = Wx::BitmapButton->new($self, -1, Wx::Bitmap->new("$Slic3r::var/disk.png", wxBITMAP_TYPE_PNG));
- $self->{btn_delete_preset} = Wx::BitmapButton->new($self, -1, Wx::Bitmap->new("$Slic3r::var/delete.png", wxBITMAP_TYPE_PNG));
- $self->{btn_save_preset}->SetToolTipString("Save current " . lc($self->title));
- $self->{btn_delete_preset}->SetToolTipString("Delete this preset");
- $self->{btn_delete_preset}->Disable;
-
- ### These cause GTK warnings:
- ###my $box = Wx::StaticBox->new($self, -1, "Presets:", wxDefaultPosition, [$left_col_width, 50]);
- ###my $hsizer = Wx::StaticBoxSizer->new($box, wxHORIZONTAL);
-
- my $hsizer = Wx::BoxSizer->new(wxHORIZONTAL);
-
- $left_sizer->Add($hsizer, 0, wxEXPAND | wxBOTTOM, 5);
- $hsizer->Add($self->{presets_choice}, 1, wxRIGHT | wxALIGN_CENTER_VERTICAL, 3);
- $hsizer->Add($self->{btn_save_preset}, 0, wxALIGN_CENTER_VERTICAL);
- $hsizer->Add($self->{btn_delete_preset}, 0, wxALIGN_CENTER_VERTICAL);
- }
-
- # tree
- $self->{treectrl} = Wx::TreeCtrl->new($self, -1, wxDefaultPosition, [$left_col_width, -1], wxTR_NO_BUTTONS | wxTR_HIDE_ROOT | wxTR_SINGLE | wxTR_NO_LINES | wxBORDER_SUNKEN | wxWANTS_CHARS);
- $left_sizer->Add($self->{treectrl}, 1, wxEXPAND);
- $self->{icons} = Wx::ImageList->new(16, 16, 1);
- $self->{treectrl}->AssignImageList($self->{icons});
- $self->{iconcount} = -1;
- $self->{treectrl}->AddRoot("root");
- $self->{pages} = [];
- $self->{treectrl}->SetIndent(0);
- EVT_TREE_SEL_CHANGED($parent, $self->{treectrl}, sub {
- my $page = first { $_->{title} eq $self->{treectrl}->GetItemText($self->{treectrl}->GetSelection) } @{$self->{pages}}
- or return;
- $_->Hide for @{$self->{pages}};
- $page->Show;
- $self->{sizer}->Layout;
- $self->Refresh;
- });
- EVT_KEY_DOWN($self->{treectrl}, sub {
- my ($treectrl, $event) = @_;
- if ($event->GetKeyCode == WXK_TAB) {
- $treectrl->Navigate($event->ShiftDown ? &Wx::wxNavigateBackward : &Wx::wxNavigateForward);
- } else {
- $event->Skip;
- }
- });
-
- EVT_CHOICE($parent, $self->{presets_choice}, sub {
- $self->on_select_preset;
- $self->on_presets_changed;
- });
-
- EVT_BUTTON($self, $self->{btn_save_preset}, sub { $self->save_preset });
-
- EVT_BUTTON($self, $self->{btn_delete_preset}, sub {
- my $i = $self->{presets_choice}->GetSelection;
- return if $i == 0; # this shouldn't happen but let's trap it anyway
- my $res = Wx::MessageDialog->new($self, "Are you sure you want to delete the selected preset?", 'Delete Preset', wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION)->ShowModal;
- return unless $res == wxID_YES;
- if (-e $self->{presets}[$i]{file}) {
- unlink $self->{presets}[$i]{file};
- }
- splice @{$self->{presets}}, $i, 1;
- $self->set_dirty(0);
- $self->{presets_choice}->Delete($i);
- $self->{presets_choice}->SetSelection(0);
- $self->on_select_preset;
- $self->on_presets_changed;
- });
-
- $self->{config} = Slic3r::Config->new;
- $self->build;
- if ($self->hidden_options) {
- $self->{config}->apply(Slic3r::Config->new_from_defaults($self->hidden_options));
- push @{$self->{options}}, $self->hidden_options;
- }
- $self->load_presets;
-
- return $self;
- }
- sub current_preset {
- my $self = shift;
- return $self->{presets}[ $self->{presets_choice}->GetSelection ];
- }
- sub get_preset {
- my $self = shift;
- return $self->{presets}[ $_[0] ];
- }
- sub save_preset {
- my ($self, $name) = @_;
-
- # since buttons (and choices too) don't get focus on Mac, we set focus manually
- # to the treectrl so that the EVT_* events are fired for the input field having
- # focus currently. is there anything better than this?
- $self->{treectrl}->SetFocus;
-
- if (!defined $name) {
- my $preset = $self->current_preset;
- my $default_name = $preset->{default} ? 'Untitled' : basename($preset->{name});
- $default_name =~ s/\.ini$//i;
-
- my $dlg = Slic3r::GUI::SavePresetWindow->new($self,
- title => lc($self->title),
- default => $default_name,
- values => [ map { my $name = $_->{name}; $name =~ s/\.ini$//i; $name } @{$self->{presets}} ],
- );
- return unless $dlg->ShowModal == wxID_OK;
- $name = $dlg->get_name;
- }
-
- $self->config->save(sprintf "$Slic3r::GUI::datadir/%s/%s.ini", $self->name, $name);
- $self->set_dirty(0);
- $self->load_presets;
- $self->{presets_choice}->SetSelection(first { basename($self->{presets}[$_]{file}) eq $name . ".ini" } 1 .. $#{$self->{presets}});
- $self->on_select_preset;
- $self->on_presets_changed;
- }
- # propagate event to the parent
- sub on_value_change {
- my $self = shift;
- $self->{on_value_change}->(@_) if $self->{on_value_change};
- }
- sub on_presets_changed {
- my $self = shift;
- $self->{on_presets_changed}->([$self->{presets_choice}->GetStrings], $self->{presets_choice}->GetSelection)
- if $self->{on_presets_changed};
- }
- sub on_preset_loaded {}
- sub hidden_options {}
- sub config { $_[0]->{config}->clone }
- sub select_default_preset {
- my $self = shift;
- $self->{presets_choice}->SetSelection(0);
- }
- sub select_preset {
- my $self = shift;
- $self->{presets_choice}->SetSelection($_[0]);
- $self->on_select_preset;
- }
- sub on_select_preset {
- my $self = shift;
-
- if (defined $self->{dirty}) {
- my $name = $self->{dirty} == 0 ? 'Default preset' : "Preset \"$self->{presets}[$self->{dirty}]{name}\"";
- my $confirm = Wx::MessageDialog->new($self, "$name has unsaved changes. Discard changes and continue anyway?",
- 'Unsaved Changes', wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION);
- if ($confirm->ShowModal == wxID_NO) {
- $self->{presets_choice}->SetSelection($self->{dirty});
- return;
- }
- $self->set_dirty(0);
- }
-
- my $preset = $self->current_preset;
- my $preset_config = $self->get_preset_config($preset);
- eval {
- local $SIG{__WARN__} = Slic3r::GUI::warning_catcher($self);
- foreach my $opt_key (@{$self->{options}}) {
- $self->{config}->set($opt_key, $preset_config->get($opt_key))
- if $preset_config->has($opt_key);
- }
- ($preset->{default} || $preset->{external})
- ? $self->{btn_delete_preset}->Disable
- : $self->{btn_delete_preset}->Enable;
-
- $self->on_preset_loaded;
- $self->reload_values;
- $self->set_dirty(0);
- $Slic3r::GUI::Settings->{presets}{$self->name} = $preset->{file} ? basename($preset->{file}) : '';
- };
- if ($@) {
- $@ = "I was unable to load the selected config file: $@";
- Slic3r::GUI::catch_error($self);
- $self->select_default_preset;
- }
-
- wxTheApp->save_settings;
- }
- sub get_preset_config {
- my $self = shift;
- my ($preset) = @_;
-
- if ($preset->{default}) {
- return Slic3r::Config->new_from_defaults(@{$self->{options}});
- } else {
- if (!-e $preset->{file}) {
- Slic3r::GUI::show_error($self, "The selected preset does not exist anymore ($preset->{file}).");
- return;
- }
-
- # apply preset values on top of defaults
- my $external_config = Slic3r::Config->load($preset->{file});
- my $config = Slic3r::Config->new;
- $config->set($_, $external_config->get($_))
- for grep $external_config->has($_), @{$self->{options}};
-
- return $config;
- }
- }
- sub add_options_page {
- my $self = shift;
- my ($title, $icon, %params) = @_;
-
- if ($icon) {
- my $bitmap = Wx::Bitmap->new("$Slic3r::var/$icon", wxBITMAP_TYPE_PNG);
- $self->{icons}->Add($bitmap);
- $self->{iconcount}++;
- }
-
- {
- # get all config options being added to the current page; remove indexes; associate defaults
- my @options = map { $_ =~ s/#.+//; $_ } grep !ref($_), map @{$_->{options}}, @{$params{optgroups}};
- my %defaults_to_set = map { $_ => 1 } @options;
-
- # apply default values for the options we don't have already
- delete $defaults_to_set{$_} for @{$self->{options}};
- $self->{config}->apply(Slic3r::Config->new_from_defaults(keys %defaults_to_set)) if %defaults_to_set;
-
- # append such options to our list
- push @{$self->{options}}, @options;
- }
-
- my $page = Slic3r::GUI::Tab::Page->new($self, $title, $self->{iconcount}, %params, on_change => sub {
- $self->on_value_change(@_);
- $self->set_dirty(1);
- });
- $page->Hide;
- $self->{sizer}->Add($page, 1, wxEXPAND | wxLEFT, 5);
- push @{$self->{pages}}, $page;
- $self->update_tree;
- return $page;
- }
- sub set_value {
- my $self = shift;
- my ($opt_key, $value) = @_;
-
- my $changed = 0;
- foreach my $page (@{$self->{pages}}) {
- $changed = 1 if $page->set_value($opt_key, $value);
- }
- return $changed;
- }
- sub reload_values {
- my $self = shift;
-
- $self->set_value($_, $self->{config}->get($_))
- for @{$self->{config}->get_keys};
- }
- sub update_tree {
- my $self = shift;
- my ($select) = @_;
-
- $select //= 0; #/
-
- my $rootItem = $self->{treectrl}->GetRootItem;
- $self->{treectrl}->DeleteChildren($rootItem);
- foreach my $page (@{$self->{pages}}) {
- my $itemId = $self->{treectrl}->AppendItem($rootItem, $page->{title}, $page->{iconID});
- $self->{treectrl}->SelectItem($itemId) if $self->{treectrl}->GetChildrenCount($rootItem) == $select + 1;
- }
- }
- sub set_dirty {
- my $self = shift;
- my ($dirty) = @_;
- return if $dirty and $self->is_dirty;
- return if (not $dirty) and (not $self->is_dirty);
-
- my $selection = $self->{presets_choice}->GetSelection;
- my $i = $self->{dirty} // $selection; #/
- my $text = $self->{presets_choice}->GetString($i);
-
- if ($dirty) {
- $self->{dirty} = $i;
- if ($text !~ / \(modified\)$/) {
- $self->{presets_choice}->SetString($i, "$text (modified)");
- $self->{presets_choice}->SetSelection($selection); # http://trac.wxwidgets.org/ticket/13769
- }
- } else {
- $self->{dirty} = undef;
- $text =~ s/ \(modified\)$//;
- $self->{presets_choice}->SetString($i, $text);
- $self->{presets_choice}->SetSelection($selection); # http://trac.wxwidgets.org/ticket/13769
- }
- $self->on_presets_changed;
- }
- sub is_dirty {
- my $self = shift;
- return (defined $self->{dirty});
- }
- sub load_presets {
- my $self = shift;
-
- $self->{presets} = [{
- default => 1,
- name => '- default -',
- }];
-
- my %presets = wxTheApp->presets($self->name);
- foreach my $preset_name (sort keys %presets) {
- push @{$self->{presets}}, {
- name => $preset_name,
- file => $presets{$preset_name},
- };
- }
-
- $self->{presets_choice}->Clear;
- $self->{presets_choice}->Append($_->{name}) for @{$self->{presets}};
- {
- # load last used preset
- my $i = first { basename($self->{presets}[$_]{file}) eq ($Slic3r::GUI::Settings->{presets}{$self->name} || '') } 1 .. $#{$self->{presets}};
- $self->{presets_choice}->SetSelection($i || 0);
- $self->on_select_preset;
- }
- $self->on_presets_changed;
- }
- sub load_config_file {
- my $self = shift;
- my ($file) = @_;
-
- # look for the loaded config among the existing menu items
- my $i = first { $self->{presets}[$_]{file} eq $file && $self->{presets}[$_]{external} } 1..$#{$self->{presets}};
- if (!$i) {
- my $preset_name = basename($file); # keep the .ini suffix
- push @{$self->{presets}}, {
- file => $file,
- name => $preset_name,
- external => 1,
- };
- $self->{presets_choice}->Append($preset_name);
- $i = $#{$self->{presets}};
- }
- $self->{presets_choice}->SetSelection($i);
- $self->on_select_preset;
- $self->on_presets_changed;
- }
- package Slic3r::GUI::Tab::Print;
- use base 'Slic3r::GUI::Tab';
- sub name { 'print' }
- sub title { 'Print Settings' }
- sub build {
- my $self = shift;
-
- $self->add_options_page('Layers and perimeters', 'layers.png', optgroups => [
- {
- title => 'Layer height',
- options => [qw(layer_height first_layer_height)],
- },
- {
- title => 'Vertical shells',
- options => [qw(perimeters spiral_vase)],
- },
- {
- title => 'Horizontal shells',
- options => [qw(top_solid_layers bottom_solid_layers)],
- lines => [
- {
- label => 'Solid layers',
- options => [qw(top_solid_layers bottom_solid_layers)],
- },
- ],
- },
- {
- title => 'Quality (slower slicing)',
- options => [qw(extra_perimeters avoid_crossing_perimeters thin_walls overhangs)],
- lines => [
- Slic3r::GUI::OptionsGroup->single_option_line('extra_perimeters'),
- Slic3r::GUI::OptionsGroup->single_option_line('avoid_crossing_perimeters'),
- Slic3r::GUI::OptionsGroup->single_option_line('thin_walls'),
- Slic3r::GUI::OptionsGroup->single_option_line('overhangs'),
- ],
- },
- {
- title => 'Advanced',
- options => [qw(seam_position external_perimeters_first)],
- },
- ]);
-
- $self->add_options_page('Infill', 'shading.png', optgroups => [
- {
- title => 'Infill',
- options => [qw(fill_density fill_pattern solid_fill_pattern)],
- },
- {
- title => 'Reducing printing time',
- options => [qw(infill_every_layers infill_only_where_needed)],
- },
- {
- title => 'Advanced',
- options => [qw(solid_infill_every_layers fill_angle
- solid_infill_below_area only_retract_when_crossing_perimeters infill_first)],
- },
- ]);
-
- $self->add_options_page('Speed', 'time.png', optgroups => [
- {
- title => 'Speed for print moves',
- options => [qw(perimeter_speed small_perimeter_speed external_perimeter_speed infill_speed solid_infill_speed top_solid_infill_speed support_material_speed support_material_interface_speed bridge_speed gap_fill_speed)],
- },
- {
- title => 'Speed for non-print moves',
- options => [qw(travel_speed)],
- },
- {
- title => 'Modifiers',
- options => [qw(first_layer_speed)],
- },
- {
- title => 'Acceleration control (advanced)',
- options => [qw(perimeter_acceleration infill_acceleration bridge_acceleration first_layer_acceleration default_acceleration)],
- },
- ]);
-
- $self->add_options_page('Skirt and brim', 'box.png', optgroups => [
- {
- title => 'Skirt',
- options => [qw(skirts skirt_distance skirt_height min_skirt_length)],
- },
- {
- title => 'Brim',
- options => [qw(brim_width)],
- },
- ]);
-
- $self->add_options_page('Support material', 'building.png', optgroups => [
- {
- title => 'Support material',
- options => [qw(support_material support_material_threshold support_material_enforce_layers)],
- },
- {
- title => 'Raft',
- options => [qw(raft_layers)],
- },
- {
- title => 'Options for support material and raft',
- options => [qw(support_material_pattern support_material_spacing support_material_angle
- support_material_interface_layers support_material_interface_spacing
- dont_support_bridges)],
- },
- ]);
-
- $self->add_options_page('Notes', 'note.png', optgroups => [
- {
- title => 'Notes',
- no_labels => 1,
- options => [qw(notes)],
- },
- ]);
-
- $self->add_options_page('Output options', 'page_white_go.png', optgroups => [
- {
- title => 'Sequential printing',
- options => [qw(complete_objects extruder_clearance_radius extruder_clearance_height)],
- lines => [
- Slic3r::GUI::OptionsGroup->single_option_line('complete_objects'),
- {
- label => 'Extruder clearance (mm)',
- options => [qw(extruder_clearance_radius extruder_clearance_height)],
- },
- ],
- },
- {
- title => 'Output file',
- options => [qw(gcode_comments output_filename_format)],
- },
- {
- title => 'Post-processing scripts',
- no_labels => 1,
- options => [qw(post_process)],
- },
- ]);
-
- $self->add_options_page('Multiple Extruders', 'funnel.png', optgroups => [
- {
- title => 'Extruders',
- options => [qw(perimeter_extruder infill_extruder support_material_extruder support_material_interface_extruder)],
- },
- {
- title => 'Ooze prevention',
- options => [qw(ooze_prevention standby_temperature_delta)],
- },
- {
- title => 'Advanced',
- options => [qw(interface_shells)],
- },
- ]);
-
- $self->add_options_page('Advanced', 'wrench.png', optgroups => [
- {
- title => 'Extrusion width',
- label_width => 180,
- options => [qw(extrusion_width first_layer_extrusion_width perimeter_extrusion_width external_perimeter_extrusion_width infill_extrusion_width solid_infill_extrusion_width top_infill_extrusion_width support_material_extrusion_width)],
- },
- {
- title => 'Flow',
- options => [qw(bridge_flow_ratio)],
- },
- {
- title => 'Other',
- options => [($Slic3r::have_threads ? qw(threads) : ()), qw(resolution xy_size_compensation)],
- },
- ]);
- }
- sub hidden_options { !$Slic3r::have_threads ? qw(threads) : () }
- package Slic3r::GUI::Tab::Filament;
- use base 'Slic3r::GUI::Tab';
- sub name { 'filament' }
- sub title { 'Filament Settings' }
- sub build {
- my $self = shift;
-
- $self->add_options_page('Filament', 'spool.png', optgroups => [
- {
- title => 'Filament',
- options => ['filament_diameter#0', 'extrusion_multiplier#0'],
- },
- {
- title => 'Temperature (°C)',
- options => ['temperature#0', 'first_layer_temperature#0', qw(bed_temperature first_layer_bed_temperature)],
- lines => [
- {
- label => 'Extruder',
- options => ['first_layer_temperature#0', 'temperature#0'],
- },
- {
- label => 'Bed',
- options => [qw(first_layer_bed_temperature bed_temperature)],
- },
- ],
- },
- ]);
-
- $self->add_options_page('Cooling', 'hourglass.png', optgroups => [
- {
- title => 'Enable',
- options => [qw(fan_always_on cooling)],
- lines => [
- Slic3r::GUI::OptionsGroup->single_option_line('fan_always_on'),
- Slic3r::GUI::OptionsGroup->single_option_line('cooling'),
- {
- label => '',
- full_width => 1,
- widget => sub {
- my ($parent) = @_;
- return $self->{description_line} = Slic3r::GUI::OptionsGroup::StaticTextLine->new($parent);
- },
- },
- ],
- },
- {
- title => 'Fan settings',
- options => [qw(min_fan_speed max_fan_speed bridge_fan_speed disable_fan_first_layers)],
- lines => [
- {
- label => 'Fan speed',
- options => [qw(min_fan_speed max_fan_speed)],
- },
- Slic3r::GUI::OptionsGroup->single_option_line('bridge_fan_speed'),
- Slic3r::GUI::OptionsGroup->single_option_line('disable_fan_first_layers'),
- ],
- },
- {
- title => 'Cooling thresholds',
- label_width => 250,
- options => [qw(fan_below_layer_time slowdown_below_layer_time min_print_speed)],
- },
- ]);
- }
- sub _update_description {
- my $self = shift;
-
- my $config = $self->config;
-
- my $msg = "";
- my $fan_other_layers = $config->fan_always_on
- ? sprintf "will always run at %d%%%s.", $config->min_fan_speed,
- ($config->disable_fan_first_layers > 1
- ? " except for the first " . $config->disable_fan_first_layers . " layers"
- : $config->disable_fan_first_layers == 1
- ? " except for the first layer"
- : "")
- : "will be turned off.";
-
- if ($config->cooling) {
- $msg = sprintf "If estimated layer time is below ~%ds, fan will run at %d%% and print speed will be reduced so that no less than %ds are spent on that layer (however, speed will never be reduced below %dmm/s).",
- $config->slowdown_below_layer_time, $config->max_fan_speed, $config->slowdown_below_layer_time, $config->min_print_speed;
- if ($config->fan_below_layer_time > $config->slowdown_below_layer_time) {
- $msg .= sprintf "\nIf estimated layer time is greater, but still below ~%ds, fan will run at a proportionally decreasing speed between %d%% and %d%%.",
- $config->fan_below_layer_time, $config->max_fan_speed, $config->min_fan_speed;
- }
- $msg .= "\nDuring the other layers, fan $fan_other_layers"
- } else {
- $msg = "Fan $fan_other_layers";
- }
- $self->{description_line}->SetText($msg);
- }
- sub on_value_change {
- my $self = shift;
- my ($opt_key) = @_;
- $self->SUPER::on_value_change(@_);
-
- $self->_update_description;
- }
- package Slic3r::GUI::Tab::Printer;
- use base 'Slic3r::GUI::Tab';
- use Wx qw(:sizer :button :bitmap :misc :id);
- use Wx::Event qw(EVT_BUTTON);
- sub name { 'printer' }
- sub title { 'Printer Settings' }
- sub build {
- my $self = shift;
-
- $self->{extruders_count} = 1;
-
- my $bed_shape_widget = sub {
- my ($parent) = @_;
-
- my $btn = Wx::Button->new($parent, -1, "Set…", wxDefaultPosition, wxDefaultSize, wxBU_LEFT);
- $btn->SetFont($Slic3r::GUI::small_font);
- if ($Slic3r::GUI::have_button_icons) {
- $btn->SetBitmap(Wx::Bitmap->new("$Slic3r::var/cog.png", wxBITMAP_TYPE_PNG));
- }
-
- my $sizer = Wx::BoxSizer->new(wxHORIZONTAL);
- $sizer->Add($btn);
-
- EVT_BUTTON($self, $btn, sub {
- my $dlg = Slic3r::GUI::BedShapeDialog->new($self, $self->{config}->bed_shape);
- if ($dlg->ShowModal == wxID_OK) {
- my $value = $dlg->GetValue;
- $self->{config}->set('bed_shape', $value);
- $self->on_value_change('bed_shape', $value);
- }
- });
-
- return $sizer;
- };
-
- $self->add_options_page('General', 'printer_empty.png', optgroups => [
- {
- title => 'Size and coordinates',
- options => [qw(bed_shape z_offset)],
- lines => [
- {
- label => 'Bed shape',
- widget => $bed_shape_widget,
- options => ['bed_shape'],
- },
- Slic3r::GUI::OptionsGroup->single_option_line('z_offset'),
- ],
- },
- {
- title => 'Firmware',
- options => [qw(gcode_flavor use_relative_e_distances)],
- },
- {
- class => 'Slic3r::GUI::OptionsGroup',
- title => 'Capabilities',
- options => [
- {
- opt_key => 'extruders_count',
- label => 'Extruders',
- tooltip => 'Number of extruders of the printer.',
- type => 'i',
- min => 1,
- default => 1,
- on_change => sub { $self->{extruders_count} = $_[0] },
- },
- ],
- },
- {
- title => 'Advanced',
- options => [qw(use_firmware_retraction vibration_limit)],
- },
- ]);
-
- $self->add_options_page('Custom G-code', 'cog.png', optgroups => [
- {
- title => 'Start G-code',
- no_labels => 1,
- options => [qw(start_gcode)],
- },
- {
- title => 'End G-code',
- no_labels => 1,
- options => [qw(end_gcode)],
- },
- {
- title => 'Layer change G-code',
- no_labels => 1,
- options => [qw(layer_gcode)],
- },
- {
- title => 'Tool change G-code',
- no_labels => 1,
- options => [qw(toolchange_gcode)],
- },
- ]);
-
- $self->{extruder_pages} = [];
- $self->_build_extruder_pages;
- }
- sub _extruder_options { qw(nozzle_diameter extruder_offset retract_length retract_lift retract_speed retract_restart_extra retract_before_travel wipe
- retract_layer_change retract_length_toolchange retract_restart_extra_toolchange) }
- sub _build_extruder_pages {
- my $self = shift;
-
- my $default_config = Slic3r::Config::Full->new;
-
- foreach my $extruder_idx (@{$self->{extruder_pages}} .. $self->{extruders_count}-1) {
- # extend options
- foreach my $opt_key ($self->_extruder_options) {
- my $values = $self->{config}->get($opt_key);
- if (!defined $values) {
- $values = [ $default_config->get_at($opt_key, 0) ];
- } else {
- # use last extruder's settings for the new one
- my $last_value = $values->[-1];
- $values->[$extruder_idx] //= $last_value;
- }
- $self->{config}->set($opt_key, $values)
- or die "Unable to extend $opt_key";
- }
-
- # build page
- $self->{extruder_pages}[$extruder_idx] = $self->add_options_page("Extruder " . ($extruder_idx + 1), 'funnel.png', optgroups => [
- {
- title => 'Size',
- options => ['nozzle_diameter#' . $extruder_idx],
- },
- {
- title => 'Position (for multi-extruder printers)',
- options => ['extruder_offset#' . $extruder_idx],
- },
- {
- title => 'Retraction',
- options => [
- map "${_}#${extruder_idx}",
- qw(retract_length retract_lift retract_speed retract_restart_extra retract_before_travel retract_layer_change wipe)
- ],
- },
- {
- title => 'Retraction when tool is disabled (advanced settings for multi-extruder setups)',
- options => [
- map "${_}#${extruder_idx}",
- qw(retract_length_toolchange retract_restart_extra_toolchange)
- ],
- },
- ]);
- $self->{extruder_pages}[$extruder_idx]{disabled} = 0;
- }
-
- # remove extra pages
- if ($self->{extruders_count} <= $#{$self->{extruder_pages}}) {
- splice @{$self->{extruder_pages}}, $self->{extruders_count};
- }
-
- # remove extra config values
- foreach my $opt_key ($self->_extruder_options) {
- my $values = $self->{config}->get($opt_key);
- splice @$values, $self->{extruders_count} if $self->{extruders_count} <= $#$values;
- $self->{config}->set($opt_key, $values)
- or die "Unable to truncate $opt_key";
- }
-
- # rebuild page list
- @{$self->{pages}} = (
- (grep $_->{title} !~ /^Extruder \d+/, @{$self->{pages}}),
- @{$self->{extruder_pages}}[ 0 .. $self->{extruders_count}-1 ],
- );
- }
- sub on_value_change {
- my $self = shift;
- my ($opt_key) = @_;
- $self->SUPER::on_value_change(@_);
-
- if ($opt_key eq 'extruders_count') {
- # add extra pages or remove unused
- $self->_build_extruder_pages;
-
- # update page list and select first page (General)
- $self->update_tree(0);
- }
- }
- # this gets executed after preset is loaded and before GUI fields are updated
- sub on_preset_loaded {
- my $self = shift;
-
- # update the extruders count field
- {
- # update the GUI field according to the number of nozzle diameters supplied
- $self->set_value('extruders_count', scalar @{ $self->{config}->nozzle_diameter });
-
- # update extruder page list
- $self->on_value_change('extruders_count');
- }
- }
- sub load_config_file {
- my $self = shift;
- $self->SUPER::load_config_file(@_);
-
- Slic3r::GUI::warning_catcher($self)->(
- "Your configuration was imported. However, Slic3r is currently only able to import settings "
- . "for the first defined filament. We recommend you don't use exported configuration files "
- . "for multi-extruder setups and rely on the built-in preset management system instead.")
- if @{ $self->{config}->nozzle_diameter } > 1;
- }
- package Slic3r::GUI::Tab::Page;
- use Wx qw(:misc :panel :sizer);
- use base 'Wx::ScrolledWindow';
- sub new {
- my $class = shift;
- my ($parent, $title, $iconID, %params) = @_;
- my $self = $class->SUPER::new($parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL);
- $self->{optgroups} = [];
- $self->{title} = $title;
- $self->{iconID} = $iconID;
-
- $self->SetScrollbars(1, 1, 1, 1);
-
- $self->{vsizer} = Wx::BoxSizer->new(wxVERTICAL);
- $self->SetSizer($self->{vsizer});
-
- if ($params{optgroups}) {
- $self->append_optgroup(
- %$_,
- config => $parent->{config},
- on_change => $params{on_change},
- ) for @{$params{optgroups}};
- }
-
- return $self;
- }
- sub append_optgroup {
- my $self = shift;
- my %params = @_;
-
- my $class = $params{class} || 'Slic3r::GUI::ConfigOptionsGroup';
- my $optgroup = $class->new(
- parent => $self,
- config => $self->GetParent->{config},
- label_width => 200,
- %params,
- );
- $self->{vsizer}->Add($optgroup->sizer, 0, wxEXPAND | wxALL, 5);
- push @{$self->{optgroups}}, $optgroup;
- }
- sub set_value {
- my $self = shift;
- my ($opt_key, $value) = @_;
-
- my $changed = 0;
- foreach my $optgroup (@{$self->{optgroups}}) {
- $changed = 1 if $optgroup->set_value($opt_key, $value);
- }
- return $changed;
- }
- package Slic3r::GUI::SavePresetWindow;
- use Wx qw(:combobox :dialog :id :misc :sizer);
- use Wx::Event qw(EVT_BUTTON EVT_TEXT_ENTER);
- use base 'Wx::Dialog';
- sub new {
- my $class = shift;
- my ($parent, %params) = @_;
- my $self = $class->SUPER::new($parent, -1, "Save preset", wxDefaultPosition, wxDefaultSize);
-
- my @values = grep $_ ne '- default -', @{$params{values}};
-
- my $text = Wx::StaticText->new($self, -1, "Save " . lc($params{title}) . " as:", wxDefaultPosition, wxDefaultSize);
- $self->{combo} = Wx::ComboBox->new($self, -1, $params{default}, wxDefaultPosition, wxDefaultSize, \@values,
- wxTE_PROCESS_ENTER);
- my $buttons = $self->CreateStdDialogButtonSizer(wxOK | wxCANCEL);
-
- my $sizer = Wx::BoxSizer->new(wxVERTICAL);
- $sizer->Add($text, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, 10);
- $sizer->Add($self->{combo}, 0, wxEXPAND | wxLEFT | wxRIGHT, 10);
- $sizer->Add($buttons, 0, wxEXPAND | wxBOTTOM | wxLEFT | wxRIGHT, 10);
-
- EVT_BUTTON($self, wxID_OK, \&accept);
- EVT_TEXT_ENTER($self, $self->{combo}, \&accept);
-
- $self->SetSizer($sizer);
- $sizer->SetSizeHints($self);
-
- return $self;
- }
- sub accept {
- my ($self, $event) = @_;
- if (($self->{chosen_name} = $self->{combo}->GetValue)) {
- if ($self->{chosen_name} !~ /^[^<>:\/\\|?*\"]+$/i) {
- Slic3r::GUI::show_error($self, "The supplied name is not valid; the following characters are not allowed: <>:/\|?*\"");
- } elsif ($self->{chosen_name} eq '- default -') {
- Slic3r::GUI::show_error($self, "The supplied name is not available.");
- } else {
- $self->EndModal(wxID_OK);
- }
- }
- }
- sub get_name {
- my $self = shift;
- return $self->{chosen_name};
- }
- 1;
|