2011-10-03 09:55:32 +00:00
|
|
|
package Slic3r::GUI::OptionsGroup;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2011-12-06 21:36:42 +00:00
|
|
|
use Wx qw(:sizer wxSYS_DEFAULT_GUI_FONT);
|
2012-06-18 09:52:45 +00:00
|
|
|
use Wx::Event qw(EVT_TEXT EVT_SPINCTRL EVT_CHECKBOX EVT_CHOICE);
|
2011-10-03 09:55:32 +00:00
|
|
|
use base 'Wx::StaticBoxSizer';
|
|
|
|
|
2011-12-06 21:36:42 +00:00
|
|
|
|
2011-10-05 16:13:47 +00:00
|
|
|
# not very elegant, but this solution is temporary waiting for a better GUI
|
2012-04-30 12:56:01 +00:00
|
|
|
our @reload_callbacks = ();
|
2012-04-11 15:38:56 +00:00
|
|
|
our %fields = (); # $key => [$control]
|
2011-10-05 16:13:47 +00:00
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
sub new {
|
|
|
|
my $class = shift;
|
|
|
|
my ($parent, %p) = @_;
|
|
|
|
|
|
|
|
my $box = Wx::StaticBox->new($parent, -1, $p{title});
|
|
|
|
my $self = $class->SUPER::new($box, wxVERTICAL);
|
|
|
|
|
2012-06-17 21:24:10 +00:00
|
|
|
my $grid_sizer = Wx::FlexGridSizer->new(scalar(@{$p{options}}), 2, ($p{no_labels} ? 1 : 2), 0);
|
2012-06-18 09:26:21 +00:00
|
|
|
$grid_sizer->SetFlexibleDirection(&Wx::wxHORIZONTAL);
|
|
|
|
$grid_sizer->AddGrowableCol($p{no_labels} ? 0 : 1);
|
|
|
|
|
2012-06-17 21:24:10 +00:00
|
|
|
# grab the default font, to fix Windows font issues/keep things consistent
|
2011-12-06 21:36:42 +00:00
|
|
|
my $bold_font = Wx::SystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
|
2011-12-02 16:02:36 +00:00
|
|
|
$bold_font->SetWeight(&Wx::wxFONTWEIGHT_BOLD);
|
2012-06-18 08:19:24 +00:00
|
|
|
my $sidetext_font = Wx::SystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
|
|
|
|
$sidetext_font->SetPointSize(12);
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2011-10-05 16:13:47 +00:00
|
|
|
foreach my $opt_key (@{$p{options}}) {
|
|
|
|
my $opt = $Slic3r::Config::Options->{$opt_key};
|
2012-06-17 21:24:10 +00:00
|
|
|
my $label;
|
|
|
|
if (!$p{no_labels}) {
|
|
|
|
$label = Wx::StaticText->new($parent, -1, "$opt->{label}:", Wx::wxDefaultPosition, [$p{label_width} || 180, -1]);
|
|
|
|
$label->Wrap($p{label_width} || 180) ; # needed to avoid Linux/GTK bug
|
|
|
|
$grid_sizer->Add($label);
|
|
|
|
|
|
|
|
# set the bold font point size to the same size as all the other labels (for consistency)
|
|
|
|
$bold_font->SetPointSize($label->GetFont()->GetPointSize());
|
|
|
|
$label->SetFont($bold_font) if $opt->{important};
|
|
|
|
}
|
2011-12-06 21:36:42 +00:00
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
my $field;
|
2012-02-20 11:50:05 +00:00
|
|
|
if ($opt->{type} =~ /^(i|f|s|s@)$/) {
|
2011-11-13 21:48:21 +00:00
|
|
|
my $style = 0;
|
2012-06-18 08:28:53 +00:00
|
|
|
$style = &Wx::wxTE_MULTILINE if $opt->{multiline};
|
|
|
|
my $size = Wx::Size->new($opt->{width} || -1, $opt->{height} || -1);
|
2011-11-13 21:48:21 +00:00
|
|
|
|
2012-02-20 11:50:05 +00:00
|
|
|
my ($get, $set) = $opt->{type} eq 's@' ? qw(serialize deserialize) : qw(get set);
|
|
|
|
|
2012-06-18 09:52:45 +00:00
|
|
|
if ($opt->{type} eq 'i') {
|
|
|
|
my $value = Slic3r::Config->$get($opt_key);
|
|
|
|
$field = Wx::SpinCtrl->new($parent, -1, $value, Wx::wxDefaultPosition, $size, $style, $opt->{min} || 0, $opt->{max} || 100, $value);
|
|
|
|
EVT_SPINCTRL($parent, $field, sub { Slic3r::Config->$set($opt_key, $field->GetValue) });
|
|
|
|
} else {
|
|
|
|
$field = Wx::TextCtrl->new($parent, -1, Slic3r::Config->$get($opt_key), Wx::wxDefaultPosition, $size, $style);
|
|
|
|
EVT_TEXT($parent, $field, sub { Slic3r::Config->$set($opt_key, $field->GetValue) });
|
|
|
|
}
|
2012-02-20 11:50:05 +00:00
|
|
|
push @reload_callbacks, sub { $field->SetValue(Slic3r::Config->$get($opt_key)) };
|
2011-10-03 09:55:32 +00:00
|
|
|
} elsif ($opt->{type} eq 'bool') {
|
|
|
|
$field = Wx::CheckBox->new($parent, -1, "");
|
2011-10-05 16:13:47 +00:00
|
|
|
$field->SetValue(Slic3r::Config->get($opt_key));
|
|
|
|
EVT_CHECKBOX($parent, $field, sub { Slic3r::Config->set($opt_key, $field->GetValue) });
|
|
|
|
push @reload_callbacks, sub { $field->SetValue(Slic3r::Config->get($opt_key)) };
|
2011-10-03 09:55:32 +00:00
|
|
|
} elsif ($opt->{type} eq 'point') {
|
|
|
|
$field = Wx::BoxSizer->new(wxHORIZONTAL);
|
|
|
|
my $field_size = Wx::Size->new(40, -1);
|
2011-10-05 16:13:47 +00:00
|
|
|
my $value = Slic3r::Config->get($opt_key);
|
2012-06-18 11:49:14 +00:00
|
|
|
my @items = (
|
2011-10-03 09:55:32 +00:00
|
|
|
Wx::StaticText->new($parent, -1, "x:"),
|
2011-10-05 16:13:47 +00:00
|
|
|
my $x_field = Wx::TextCtrl->new($parent, -1, $value->[0], Wx::wxDefaultPosition, $field_size),
|
2011-10-03 09:55:32 +00:00
|
|
|
Wx::StaticText->new($parent, -1, " y:"),
|
2011-10-05 16:13:47 +00:00
|
|
|
my $y_field = Wx::TextCtrl->new($parent, -1, $value->[1], Wx::wxDefaultPosition, $field_size),
|
2011-10-03 09:55:32 +00:00
|
|
|
);
|
2012-06-18 11:49:14 +00:00
|
|
|
$field->Add($_) for @items;
|
|
|
|
if ($opt->{tooltip}) {
|
|
|
|
$_->SetToolTipString($opt->{tooltip}) for @items;
|
|
|
|
}
|
2011-10-05 16:13:47 +00:00
|
|
|
my $set_value = sub {
|
|
|
|
my ($i, $value) = @_;
|
|
|
|
my $val = Slic3r::Config->get($opt_key);
|
|
|
|
$val->[$i] = $value;
|
|
|
|
Slic3r::Config->set($opt_key, $val);
|
|
|
|
};
|
|
|
|
EVT_TEXT($parent, $x_field, sub { $set_value->(0, $x_field->GetValue) });
|
|
|
|
EVT_TEXT($parent, $y_field, sub { $set_value->(1, $y_field->GetValue) });
|
|
|
|
push @reload_callbacks, sub {
|
|
|
|
my $value = Slic3r::Config->get($opt_key);
|
|
|
|
$x_field->SetValue($value->[0]);
|
|
|
|
$y_field->SetValue($value->[1]);
|
|
|
|
};
|
2012-04-11 15:38:56 +00:00
|
|
|
$fields{$opt_key} = [$x_field, $y_field];
|
2011-11-13 17:14:02 +00:00
|
|
|
} elsif ($opt->{type} eq 'select') {
|
2012-06-18 08:24:17 +00:00
|
|
|
$field = Wx::ComboBox->new($parent, -1, "", Wx::wxDefaultPosition, Wx::wxDefaultSize, $opt->{labels} || $opt->{values}, &Wx::wxCB_READONLY);
|
2012-04-11 15:38:56 +00:00
|
|
|
EVT_CHOICE($parent, $field, sub {
|
|
|
|
Slic3r::Config->set($opt_key, $opt->{values}[$field->GetSelection]);
|
|
|
|
});
|
2011-11-13 17:14:02 +00:00
|
|
|
push @reload_callbacks, sub {
|
|
|
|
my $value = Slic3r::Config->get($opt_key);
|
|
|
|
$field->SetSelection(grep $opt->{values}[$_] eq $value, 0..$#{$opt->{values}});
|
|
|
|
};
|
|
|
|
$reload_callbacks[-1]->();
|
2011-10-03 09:55:32 +00:00
|
|
|
} else {
|
|
|
|
die "Unsupported option type: " . $opt->{type};
|
|
|
|
}
|
2012-06-18 11:49:14 +00:00
|
|
|
$label->SetToolTipString($opt->{tooltip}) if $label && $opt->{tooltip};
|
|
|
|
$field->SetToolTipString($opt->{tooltip}) if $opt->{tooltip} && $field->can('SetToolTipString');
|
2012-06-18 08:19:24 +00:00
|
|
|
if ($opt->{sidetext}) {
|
|
|
|
my $sizer = Wx::BoxSizer->new(&Wx::wxHORIZONTAL);
|
|
|
|
$sizer->Add($field);
|
|
|
|
my $sidetext = Wx::StaticText->new($parent, -1, $opt->{sidetext}, Wx::wxDefaultPosition, [-1, -1]);
|
|
|
|
$sidetext->SetFont($sidetext_font);
|
2012-06-18 09:52:45 +00:00
|
|
|
$sizer->Add($sidetext, 0, &Wx::wxLEFT | &Wx::wxALIGN_CENTER_VERTICAL , 4);
|
2012-06-18 08:19:24 +00:00
|
|
|
$grid_sizer->Add($sizer);
|
|
|
|
} else {
|
2012-06-18 09:26:21 +00:00
|
|
|
$grid_sizer->Add($field, 0, $opt->{full_width} ? &Wx::wxEXPAND : 0);
|
2012-06-18 08:19:24 +00:00
|
|
|
}
|
2012-04-11 15:38:56 +00:00
|
|
|
$fields{$opt_key} ||= [$field];
|
2011-10-03 09:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$self->Add($grid_sizer, 0, wxEXPAND);
|
|
|
|
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|