App-GUI-Harmonograph
view release on metacpan or search on metacpan
lib/App/GUI/Harmonograph/Frame.pm view on Meta::CPAN
$self->{'btn'}{'save_next'} = Wx::Button->new( $self, -1, '&Save', [-1,-1],[$btnw, $btnh] );
$self->{'txt'}{'file_bdir'} = Wx::TextCtrl->new( $self,-1, $self->{'config'}->get_value('file_base_dir'), [-1,-1], [185, -1] );
$self->{'txt'}{'file_bname'}= Wx::TextCtrl->new( $self,-1, $self->{'config'}->get_value('file_base_name'), [-1,-1], [100, -1] );
$self->{'txt'}{'file_bnr'} = Wx::TextCtrl->new( $self,-1, $self->{'config'}->get_value('file_base_counter'), [-1,-1], [ 36, -1], &Wx::wxTE_READONLY );
$self->{'btn'}{'dir'}->SetToolTip('select directory to save file series in');
$self->{'btn'}{'write_next'}->SetToolTip('save current image settings into text file with name seen in text field with added number and file ending .ini');
$self->{'btn'}{'draw'}->SetToolTip('redraw the harmonographic image');
$self->{'btn'}{'save_next'}->SetToolTip('save current image into SVG file with name seen in text field with added number and file ending .svg');
$self->{'txt'}{'file_bname'}->SetToolTip("file base name (without ending) for a series of files you save (settings and images)");
$self->{'txt'}{'file_bnr'}->SetToolTip("index of file base name,\nwhen pushing Next button, image or settings are saved under Dir + File + Index + Ending");
# Events
Wx::Event::EVT_TEXT_ENTER( $self, $self->{'txt'}{'file_bname'}, sub { $self->update_base_name });
Wx::Event::EVT_KILL_FOCUS( $self->{'txt'}{'file_bname'}, sub { $self->update_base_name });
Wx::Event::EVT_BUTTON( $self, $self->{'btn'}{'dir'}, sub { $self->change_base_dir }) ;
Wx::Event::EVT_BUTTON( $self, $self->{'btn'}{'write_next'}, sub {
my $settings = $self->get_settings;
my $path = $self->base_path . '.ini';
$self->write_settings_file( $path);
$self->{'config'}->add_setting_file( $path );
});
Wx::Event::EVT_BUTTON( $self, $self->{'btn'}{'save_next'}, sub {
my $settings = $self->get_settings;
my $path = $self->base_path . '.' . $self->{'config'}->get_value('file_base_ending');
$self->write_image( $path );
});
Wx::Event::EVT_BUTTON( $self, $self->{'btn'}{'draw'}, sub { draw( $self ) });
Wx::Event::EVT_CLOSE( $self, sub {
$self->{'tab'}{'color'}->update_config;
$self->{'config'}->save();
$self->{'dialog'}{'about'}->Destroy();
$_[1]->Skip(1)
});
# Menu
my $settings_menu = $self->{'setting_menu'} = Wx::Menu->new();
$settings_menu->Append( 11100, "&Init\tCtrl+I", "put all settings to default" );
$settings_menu->Append( 11200, "&Open\tCtrl+O", "load settings from an INI file" );
$settings_menu->Append( 11400, "&Write\tCtrl+W", "store curent settings into an INI file" );
$settings_menu->AppendSeparator();
$settings_menu->Append( 11500, "&Quit\tAlt+Q", "save configs and close program" );
my $image_size_menu = Wx::Menu->new();
for (1 .. 20) {
my $size = $_ * 100;
$image_size_menu->AppendRadioItem(12100 + $_, $size, "set image size to $size x $size");
Wx::Event::EVT_MENU( $self, 12100 + $_, sub {
my $size = 100 * ($_[1]->GetId - 12100);
$self->{'config'}->set_value('image_size', $size);
});
}
$image_size_menu->Check( 12100 +($self->{'config'}->get_value('image_size') / 100), 1);
my $image_format_menu = Wx::Menu->new();
$image_format_menu->AppendRadioItem(12201, 'PNG', "set default image format to PNG");
$image_format_menu->AppendRadioItem(12202, 'JPEG', "set default image format to JPEG");
$image_format_menu->AppendRadioItem(12203, 'SVG', "set default image format to SVG");
Wx::Event::EVT_MENU( $self, 12201, sub { $self->{'config'}->set_value('file_base_ending', 'png') });
Wx::Event::EVT_MENU( $self, 12202, sub { $self->{'config'}->set_value('file_base_ending', 'jpg') });
Wx::Event::EVT_MENU( $self, 12203, sub { $self->{'config'}->set_value('file_base_ending', 'svg') });
$image_format_menu->Check( 12201, 1 ) if $self->{'config'}->get_value('file_base_ending') eq 'png';
$image_format_menu->Check( 12202, 1 ) if $self->{'config'}->get_value('file_base_ending') eq 'jpg';
$image_format_menu->Check( 12203, 1 ) if $self->{'config'}->get_value('file_base_ending') eq 'svg';
my $image_menu = Wx::Menu->new();
$image_menu->Append( 12300, "&Draw\tCtrl+D", "complete a sketch drawing" );
$image_menu->Append( 12100, "S&ize", $image_size_menu, "set image size" );
$image_menu->Append( 12200, "&Format", $image_format_menu, "set default image formate" );
$image_menu->Append( 12400, "&Save\tCtrl+S", "save currently displayed image" );
my $help_menu = Wx::Menu->new();
$help_menu->Append( 13300, "&About\tAlt+A", "Dialog with general information about the program" );
my $menu_bar = Wx::MenuBar->new();
$menu_bar->Append( $settings_menu, '&Settings' );
$menu_bar->Append( $image_menu, '&Image' );
$menu_bar->Append( $help_menu, '&Help' );
$self->SetMenuBar($menu_bar);
Wx::Event::EVT_MENU( $self, 11100, sub { $self->init });
Wx::Event::EVT_MENU( $self, 11200, sub { $self->open_settings_dialog });
Wx::Event::EVT_MENU( $self, 11400, sub { $self->write_settings_dialog });
Wx::Event::EVT_MENU( $self, 11500, sub { $self->Close });
Wx::Event::EVT_MENU( $self, 12300, sub { $self->draw });
Wx::Event::EVT_MENU( $self, 12400, sub { $self->save_image_dialog });
Wx::Event::EVT_MENU( $self, 13300, sub { $self->{'dialog'}{'about'}->ShowModal });
# GUI layout assembly
my $std_attr = &Wx::wxALIGN_LEFT|&Wx::wxGROW|&Wx::wxALIGN_CENTER_HORIZONTAL;
my $vert_attr = $std_attr | &Wx::wxTOP;
my $vset_attr = $std_attr | &Wx::wxTOP| &Wx::wxBOTTOM;
my $horiz_attr = $std_attr | &Wx::wxLEFT;
my $all_attr = &Wx::wxALIGN_LEFT | &Wx::wxALIGN_CENTER_VERTICAL |&Wx::wxGROW| &Wx::wxALL;
my $line_attr = $std_attr | &Wx::wxLEFT | &Wx::wxRIGHT ;
my $linear_sizer = Wx::BoxSizer->new(&Wx::wxVERTICAL);
$linear_sizer->AddSpacer(10);
$linear_sizer->Add( $self->{'pendulum'}{'x'}, 0, $std_attr| &Wx::wxLEFT, 15);
$linear_sizer->Add( Wx::StaticLine->new( $self->{'tab'}{'linear'}, -1, [-1,-1], [ 135, 2] ), 0, $vert_attr, 10);
$linear_sizer->AddSpacer(10);
$linear_sizer->Add( $self->{'pendulum'}{'y'}, 0, $std_attr| &Wx::wxLEFT, 15);
$linear_sizer->Add( 0, 1, &Wx::wxEXPAND | &Wx::wxGROW);
$self->{'tab'}{'linear'}->SetSizer( $linear_sizer );
my $circular_sizer = Wx::BoxSizer->new(&Wx::wxVERTICAL);
$circular_sizer->AddSpacer(10);
$circular_sizer->Add( $self->{'pendulum'}{'w'}, 0, $std_attr| &Wx::wxLEFT, 15);
$circular_sizer->Add( Wx::StaticLine->new( $self->{'tab'}{'circular'}, -1, [-1,-1], [ 135, 2] ), 0, $vert_attr, 10);
$circular_sizer->AddSpacer(10);
$circular_sizer->Add( $self->{'pendulum'}{'r'}, 0, $std_attr| &Wx::wxLEFT, 15);
$circular_sizer->Add( 0, 1, &Wx::wxEXPAND | &Wx::wxGROW);
$self->{'tab'}{'circular'}->SetSizer( $circular_sizer );
my $epi_sizer = Wx::BoxSizer->new(&Wx::wxVERTICAL);
$epi_sizer->AddSpacer(10);
$epi_sizer->Add( $self->{'pendulum'}{'e'}, 0, $std_attr| &Wx::wxLEFT, 15);
$epi_sizer->Add( Wx::StaticLine->new( $self->{'tab'}{'epicycle'}, -1, [-1,-1], [ 135, 2] ), 0, $vert_attr, 10);
$epi_sizer->AddSpacer(10);
$epi_sizer->Add( $self->{'pendulum'}{'f'}, 0, $std_attr| &Wx::wxLEFT, 15);
$epi_sizer->Add( 0, 1, &Wx::wxEXPAND | &Wx::wxGROW);
$self->{'tab'}{'epicycle'}->SetSizer( $epi_sizer );
lib/App/GUI/Harmonograph/Frame.pm view on Meta::CPAN
}
sub set_settings {
my ($self, $settings) = @_;
return unless ref $settings eq 'HASH';
$self->{'pendulum'}{$_}->set_settings( $settings->{$_} ) for @{$self->{'pendulum_names'}};
$self->{'tab'}{$_}->set_settings( $settings->{$_} ) for @{$self->{'tab_names'}};
$self->{'tab'}{'color'}->set_active_color_count( $settings->{'visual'}{'colors_used'} );
}
sub draw {
my ($self) = @_;
$self->SetStatusText( "drawing .....", 0 );
my @colors = $self->{'tab'}{'color'}->get_all_colors;
$self->{'progress_bar'}->set_start_color( $colors[0]->values( ) );
$self->{'board'}->draw( $self->get_settings, $self->{'progress_bar'} );
#$self->{'progress_bar'}->paint;
$self->SetStatusText( "done complete drawing", 0 );
}
sub sketch {
my ($self) = @_;
$self->SetStatusText( "sketching a preview .....", 0 );
$self->{'progress_bar'}->reset();
$self->{'board'}->sketch( $self->get_settings, $self->{'progress_bar'} );
$self->SetStatusText( "done sketching a preview", 0 );
if ($self->{'saved'}){
$self->inc_base_counter();
$self->set_settings_save(0);
}
}
sub write_image {
my ($self, $file) = @_;
$self->{'board'}->save_file( $file, $self->get_settings, $self->{'progress_bar'} );
$file = App::GUI::Harmonograph::Settings::shrink_path( $file );
$self->SetStatusText( "saved image under: $file", 0 );
$self->set_settings_save(1);
}
sub set_settings_save {
my ($self, $status) = @_;
$self->{'saved'} = $status;
$self->SetTitle( $self->{'title'} .($self->{'saved'} ? '': ' *'));
}
sub update_base_name {
my ($self) = @_;
my $file = $self->{'txt'}{'file_bname'}->GetValue;
$self->{'config'}->set_value('file_base_name', $file);
$self->{'config'}->set_value('file_base_counter', 1);
$self->inc_base_counter();
}
sub inc_base_counter {
my ($self, $type) = @_;
my $dir = $self->{'config'}->get_value('file_base_dir');
$dir = App::GUI::Harmonograph::Settings::expand_path( $dir );
my $base = File::Spec->catfile( $dir, $self->{'config'}->get_value('file_base_name') );
my $cc = $self->{'config'}->get_value('file_base_counter');
while (1){
last unless -e $base.'_'.$cc.'.svg'
or -e $base.'_'.$cc.'.png'
or -e $base.'_'.$cc.'.jpg'
or -e $base.'_'.$cc.'.gif'
or -e $base.'_'.$cc.'.ini';
$cc++;
}
$self->{'txt'}{'file_bnr'}->SetValue( $cc );
$self->{'config'}->set_value('file_base_counter', $cc);
}
sub change_base_dir {
my $self = shift;
my $dialog = Wx::DirDialog->new ( $self, "Select a directory to store a series of files", $self->{'config'}->get_value('file_base_dir'));
return if $dialog->ShowModal == &Wx::wxID_CANCEL;
my $new_dir = $dialog->GetPath;
$new_dir = App::GUI::Harmonograph::Settings::shrink_path( $new_dir ) . '/';
$self->{'txt'}{'file_bdir'}->SetValue( $new_dir );
$self->{'config'}->set_value('file_base_dir', $new_dir);
$self->update_base_name();
}
sub base_path {
my ($self) = @_;
my $dir = $self->{'config'}->get_value('file_base_dir');
$dir = App::GUI::Harmonograph::Settings::expand_path( $dir );
File::Spec->catfile( $dir, $self->{'config'}->get_value('file_base_name') )
.'_'.$self->{'config'}->get_value('file_base_counter');
}
sub open_settings_dialog {
my ($self) = @_;
my $dialog = Wx::FileDialog->new ( $self, "Select a settings file to load", $self->{'config'}->get_value('open_dir'), '',
( join '|', 'INI files (*.ini)|*.ini', 'All files (*.*)|*.*' ), &Wx::wxFD_OPEN );
return if $dialog->ShowModal == &Wx::wxID_CANCEL;
my $path = $dialog->GetPath;
my $ret = $self->open_setting_file ( $path );
if (not ref $ret) { $self->SetStatusText( $ret, 0) }
else {
my $dir = App::GUI::Harmonograph::Settings::extract_dir( $path );
$self->{'config'}->set_value('open_dir', $dir);
$self->SetStatusText( "loaded settings from ".$dialog->GetPath, 1);
}
}
sub write_settings_dialog {
my ($self) = @_;
my $dialog = Wx::FileDialog->new ( $self, "Select a file name to store data",$self->{'config'}->get_value('write_dir'), '',
( join '|', 'INI files (*.ini)|*.ini', 'All files (*.*)|*.*' ), &Wx::wxFD_SAVE );
return if $dialog->ShowModal == &Wx::wxID_CANCEL;
my $path = $dialog->GetPath;
$path .= '.ini' unless lc substr ($path, -4) eq '.ini';
$path = substr ($path, 0, -4) if lc substr ($path, -4) eq '.ini';
return if -e $path and
Wx::MessageDialog->new( $self, "\n\nReally overwrite the settings file?", 'Confirmation Question',
&Wx::wxYES_NO | &Wx::wxICON_QUESTION )->ShowModal() != &Wx::wxID_YES;
$self->write_settings_file( $path );
my $dir = App::GUI::Harmonograph::Settings::extract_dir( $path );
$self->{'config'}->set_value('write_dir', $dir);
}
sub save_image_dialog {
my ($self) = @_;
my @wildcard = ( 'SVG files (*.svg)|*.svg', 'PNG files (*.png)|*.png', 'JPEG files (*.jpg)|*.jpg');
my $wildcard = '|All files (*.*)|*.*';
my $default_ending = $self->{'config'}->get_value('file_base_ending');
$wildcard = ($default_ending eq 'jpg') ? ( join '|', @wildcard[2,1,0]) . $wildcard :
($default_ending eq 'png') ? ( join '|', @wildcard[1,0,2]) . $wildcard :
( join '|', @wildcard[0,1,2]) . $wildcard ;
my @wildcard_ending = ($default_ending eq 'jpg') ? (qw/jpg png svg/) :
($default_ending eq 'png') ? (qw/png svg jpg/) :
(qw/svg jpg png/) ;
my $dialog = Wx::FileDialog->new ( $self, "select a file name to save image", $self->{'config'}->get_value('save_dir'), '', $wildcard, &Wx::wxFD_SAVE );
return if $dialog->ShowModal == &Wx::wxID_CANCEL;
my $path = $dialog->GetPath;
return if -e $path and
Wx::MessageDialog->new( $self, "\n\nReally overwrite the image file?", 'Confirmation Question',
&Wx::wxYES_NO | &Wx::wxICON_QUESTION )->ShowModal() != &Wx::wxID_YES;
my $file_ending = lc substr ($path, -4);
unless ($dialog->GetFilterIndex == 3 or # filter set to all endings
($file_ending eq '.jpg' or $file_ending eq '.png' or $file_ending eq '.svg')){
$path .= '.' . $wildcard_ending[$dialog->GetFilterIndex];
}
my $ret = $self->write_image( $path );
if ($ret){ $self->SetStatusText( $ret, 0 ) }
else { $self->{'config'}->set_value('save_dir', App::GUI::Harmonograph::Settings::extract_dir( $path )) }
}
sub open_setting_file {
my ($self, $file ) = @_;
my $settings = App::GUI::Harmonograph::Settings::load( $file );
if (ref $settings) {
$self->set_settings( $settings );
$self->draw;
my $dir = App::GUI::Harmonograph::Settings::extract_dir( $file );
$self->{'config'}->set_value('open_dir', $dir);
$self->SetStatusText( "loaded settings from ".$file, 1) ;
$self->{'config'}->add_setting_file( $file );
$self->update_recent_settings_menu();
$self->set_settings_save( 1 );
return $settings;
} else {
$self->SetStatusText( $settings, 0);
}
}
sub write_settings_file {
my ($self, $file) = @_;
$file .= '.ini' unless lc substr ($file, -4) eq '.ini';
my $ret = App::GUI::Harmonograph::Settings::write( $file, $self->get_settings );
if ($ret){ $self->SetStatusText( $ret, 0 ) }
else {
$self->{'config'}->add_setting_file( $file );
$self->update_recent_settings_menu();
$self->SetStatusText( "saved settings into file $file", 1 );
$self->set_settings_save( 1 );
}
}
1;
( run in 0.637 second using v1.01-cache-2.11-cpan-df04353d9ac )