PrusaSlicer-NonPlainar/lib/Slic3r/GUI/Preferences.pm

87 lines
3.5 KiB
Perl
Raw Normal View History

2013-01-02 19:30:48 +00:00
package Slic3r::GUI::Preferences;
2014-06-14 17:59:59 +00:00
use Wx qw(:dialog :id :misc :sizer :systemsettings wxTheApp);
2013-01-02 19:30:48 +00:00
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, "Preferences", wxDefaultPosition, [500,200]);
2013-01-03 14:49:20 +00:00
$self->{values};
2013-01-02 19:30:48 +00:00
my $optgroup = Slic3r::GUI::OptionsGroup->new(
parent => $self,
title => 'General',
options => [
{
opt_key => 'mode',
type => 'select',
label => 'Mode',
tooltip => 'Choose between a simpler, basic mode and an expert mode with more options and more complicated interface.',
labels => ['Simple','Expert'],
values => ['simple','expert'],
2013-01-03 14:49:20 +00:00
default => $Slic3r::GUI::Settings->{_}{mode},
2013-01-02 19:30:48 +00:00
},
2013-04-27 18:55:43 +00:00
{
opt_key => 'version_check',
type => 'bool',
label => 'Check for updates',
tooltip => 'If this is enabled, Slic3r will check for updates daily and display a reminder if a newer version is available.',
default => $Slic3r::GUI::Settings->{_}{version_check} // 1,
2014-06-14 17:59:59 +00:00
readonly => !wxTheApp->have_version_check,
2013-04-27 18:55:43 +00:00
},
{
opt_key => 'remember_output_path',
type => 'bool',
label => 'Remember output directory',
tooltip => 'If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files.',
default => $Slic3r::GUI::Settings->{_}{remember_output_path},
},
{
opt_key => 'autocenter',
type => 'bool',
label => 'Auto-center parts',
tooltip => 'If this is enabled, Slic3r will auto-center objects around the configured print center.',
default => $Slic3r::GUI::Settings->{_}{autocenter},
},
{
opt_key => 'background_processing',
type => 'bool',
label => 'Background processing',
tooltip => 'If this is enabled, Slic3r will pre-process objects as soon as they\'re loaded in order to save time when exporting G-code.',
default => $Slic3r::GUI::Settings->{_}{background_processing},
readonly => !$Slic3r::have_threads,
},
2013-01-02 19:30:48 +00:00
],
2013-01-03 14:49:20 +00:00
on_change => sub { $self->{values}{$_[0]} = $_[1] },
2013-01-02 19:30:48 +00:00
label_width => 100,
);
my $sizer = Wx::BoxSizer->new(wxVERTICAL);
$sizer->Add($optgroup->sizer, 0, wxEXPAND | wxBOTTOM | wxLEFT | wxRIGHT, 10);
my $buttons = $self->CreateStdDialogButtonSizer(wxOK | wxCANCEL);
2013-01-03 14:49:20 +00:00
EVT_BUTTON($self, wxID_OK, sub { $self->_accept });
2013-01-02 19:30:48 +00:00
$sizer->Add($buttons, 0, wxEXPAND | wxBOTTOM | wxLEFT | wxRIGHT, 10);
$self->SetSizer($sizer);
$sizer->SetSizeHints($self);
return $self;
}
2013-01-03 14:49:20 +00:00
sub _accept {
my $self = shift;
if ($self->{values}{mode}) {
Slic3r::GUI::warning_catcher($self)->("You need to restart Slic3r to make the changes effective.");
}
$Slic3r::GUI::Settings->{_}{$_} = $self->{values}{$_} for keys %{$self->{values}};
2014-06-14 17:59:59 +00:00
wxTheApp->save_settings;
$self->EndModal(wxID_OK);
$self->Close; # needed on Linux
2013-01-03 14:49:20 +00:00
}
2013-01-02 19:30:48 +00:00
1;