1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
package Demeter::UI::Common::Prj;
=for Copyright
.
Copyright (c) 2006-2019 Bruce Ravel (http://bruceravel.github.io/home).
All rights reserved.
.
This file is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See The Perl
Artistic License.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
use strict;
use warnings;
use Wx qw( :everything );
use base qw(Wx::Dialog);
use Wx::Event qw(EVT_CLOSE EVT_LISTBOX EVT_BUTTON EVT_RADIOBOX);
use Demeter::UI::Wx::SpecialCharacters qw(:all);
use Wx::Perl::TextValidator;
use List::MoreUtils qw{firstidx minmax};
use Scalar::Util qw(looks_like_number);
sub new {
my ($class, $parent, $file, $style, $choice) = @_;
my $gui = ($style eq 'single') ? 'Artemis' : 'Athena';
my $this = $class->SUPER::new($parent, -1, "$gui: Import from Athena project file",
wxDefaultPosition, wxDefaultSize,
wxMINIMIZE_BOX|wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|wxSTAY_ON_TOP
);
my $prj;
if (Demeter->is_prj($file)) {
$prj = Demeter::Data::Prj->new(file=>$file);
} elsif (Demeter->is_json($file)) {
require "Demeter/Data/JSON.pm";
$prj = Demeter::Data::JSON->new(file=>$file);
} else {
die "That wasn't either a prj file or a json file! How did that happen?!?\n"
};
my ($names, $entries, $positions) = $prj -> plot_as_chi; # used by Artemis
##print join("|", @$names, @$entries, @$positions), $/;
if ($style ne 'single') { # used by Athena
$names = [$prj->allnames(0)];
$entries = $prj->entries;
$positions = [0 .. $#{$names}];
};
$this->{prj} = $prj;
$this->{record} = -1;
my $hbox = Wx::BoxSizer->new( wxHORIZONTAL );
my $left = Wx::BoxSizer->new( wxVERTICAL );
$hbox -> Add($left, 1, wxGROW|wxALL, 0);
my $sty = ($style eq 'single') ? wxLB_SINGLE : wxLB_EXTENDED;
##Demeter->pjoin($this, wxDefaultPosition, $names, $sty);
$this->{grouplist} = Wx::ListBox->new($this, -1, wxDefaultPosition, [125,500], $names, $sty);
$left -> Add($this->{grouplist}, 1, wxGROW|wxALL, 5);
EVT_LISTBOX( $this, $this->{grouplist}, sub{plot_selection(@_, $prj, $names, $positions)} );
my $right = Wx::BoxSizer->new( wxVERTICAL );
$hbox -> Add($right, 2, wxGROW|wxALL, 0);
my $journalbox = Wx::StaticBox->new($this, -1, 'Data group title lines', wxDefaultPosition, wxDefaultSize);
my $journalboxsizer = Wx::StaticBoxSizer->new( $journalbox, wxVERTICAL );
$this->{journal} = Wx::TextCtrl->new($this, -1, q{}, wxDefaultPosition, wxDefaultSize,
wxHSCROLL|wxTE_READONLY|wxTE_MULTILINE|wxTE_RICH);
$journalboxsizer -> Add($this->{journal}, 1, wxGROW|wxALL, 1);
$right -> Add($journalboxsizer, 1, wxGROW|wxALL, 5);
$this->{plotas} = Wx::RadioBox->new($this, -1, "Plot as", wxDefaultPosition, wxDefaultSize,
["$MU(E)", "|$CHI(R)|", "Re[$CHI(R)]", "Im[$CHI(R)]", "$CHI(k)", "|$CHI(q)|", "Re[$CHI(q)]", "Im[$CHI(q)]"],
4, wxRA_SPECIFY_ROWS);
$right -> Add($this->{plotas}, 0, wxGROW|wxALL, 5);
($style eq 'single') ? $this->{plotas}->SetSelection(1) : $this->{plotas}->SetSelection(0);
EVT_RADIOBOX($this, $this->{plotas}, sub{OnPlotAs(@_, $prj, $names, $positions)});
if ($style eq 'single') { # importing into Artemis
$this->{params} = Wx::RadioBox->new($this, -1, "Take parameters from", wxDefaultPosition, wxDefaultSize,
['Project file', 'Artemis defaults', 'Current values'],
3, wxRA_SPECIFY_ROWS);
$right -> Add($this->{params}, 0, wxGROW|wxALL, 5);
} else { # importing into Athena
my $selectionbox = Wx::BoxSizer->new( wxHORIZONTAL );
$this->{all} = Wx::Button->new($this, -1, "Select all", wxDefaultPosition, wxDefaultSize, 0,);
$this->{none} = Wx::Button->new($this, -1, "Select none", wxDefaultPosition, wxDefaultSize, 0,);
$this->{invert} = Wx::Button->new($this, -1, "Invert", wxDefaultPosition, wxDefaultSize, 0,);
$selectionbox -> Add($this->{all}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
$selectionbox -> Add($this->{none}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
$selectionbox -> Add($this->{invert}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
EVT_BUTTON($this, $this->{all}, sub{set_selection(@_, 'all')});
EVT_BUTTON($this, $this->{none}, sub{set_selection(@_, 'none')});
EVT_BUTTON($this, $this->{invert}, sub{set_selection(@_, 'invert')});
$right->Add($selectionbox, 0, wxGROW|wxALL, 5);
my $skipbox = Wx::BoxSizer->new( wxHORIZONTAL );
$this->{skip} = Wx::Button->new($this, -1, "Select every", wxDefaultPosition, wxDefaultSize, 0,);
$this->{every} = Wx::TextCtrl->new($this, -1, "2", wxDefaultPosition, [30,-1]);
$this->{start} = Wx::TextCtrl->new($this, -1, "1", wxDefaultPosition, [30,-1]);
$skipbox -> Add($this->{skip}, 0, wxLEFT|wxRIGHT, 2);
$skipbox -> Add($this->{every}, 0, wxLEFT|wxRIGHT, 2);
$skipbox -> Add(Wx::StaticText->new($this, -1, "th starting at #"), 0, wxALL, 2);
$skipbox -> Add($this->{start}, 0, wxLEFT|wxRIGHT, 2);
EVT_BUTTON($this, $this->{skip}, sub{set_selection(@_, 'skip')});
$this->{every} -> SetValidator( Wx::Perl::TextValidator->new( qr([0-9]) ) );
$this->{start} -> SetValidator( Wx::Perl::TextValidator->new( qr([0-9]) ) );
$right->Add($skipbox, 0, wxGROW|wxALL, 5);
my $matchbox = Wx::BoxSizer->new( wxHORIZONTAL );
$this->{match} = Wx::Button->new($this, -1, "Select matching", wxDefaultPosition, wxDefaultSize, 0,);
$this->{regex} = Wx::TextCtrl->new($this, -1, q{});
$this->{case} = Wx::CheckBox->new($this, -1, q{Match case});
$matchbox -> Add($this->{match}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
$matchbox -> Add($this->{regex}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
$matchbox -> Add($this->{case}, 0, wxGROW|wxLEFT|wxRIGHT, 2);
EVT_BUTTON($this, $this->{match}, sub{set_selection(@_, 'match')});
$this->{case} -> SetValue(1);
$right->Add($matchbox, 0, wxGROW|wxALL, 5);
};
$this->{import} = Wx::Button->new($this, wxID_OK, "Import selected data", wxDefaultPosition, wxDefaultSize, 0,);
$right -> Add($this->{import}, 0, wxGROW|wxALL, 5);
$this->{cancel} = Wx::Button->new($this, wxID_CANCEL, "Cancel", wxDefaultPosition, wxDefaultSize);
$right -> Add($this->{cancel}, 0, wxGROW|wxALL, 5);
$this -> SetSizerAndFit( $hbox );
if ($style eq 'single') {
$choice ||= 1;
$this->{grouplist}->SetSelection($choice-1);
#$this->do_plot($prj,$positions->[0]+1);
$this->do_plot($prj,$choice); # this works because choice was set AFTER non-chi data was weeded out
};
return $this;
};
sub on_close {
my ($self) = @_;
$self->SetReturnCode(wxID_CANCEL);
};
sub ShouldPreventAppExit {
0
};
sub OnPlotAs {
my ($this, $event, $prj, $names, $positions) = @_;
return if ($this->{grouplist}->GetSelections < 0);
my ($sel) = $this->{grouplist}->GetSelections;
#print ">>>>>>>>>", $sel, $/;
$this -> do_plot($prj, $positions->[$sel]+1);
};
sub plot_selection {
my ($this, $event, $prj, $names, $positions) = @_;
$this->Refresh;
my ($sel) = $this->{grouplist}->GetSelections;
$this->{record} = $positions->[$sel];
#my $index = firstidx {$_ eq $event->GetString } @$names;
$this -> do_plot($prj, $positions->[$sel]+1);
};
sub do_plot {
my ($this, $prj, $record) = @_;
my $busy = Wx::BusyCursor->new();
my @save = ($prj->po->r_pl, $prj->po->q_pl);
$this->{record} = $record;
my $data = $prj->record($record);
if ($data->datatype =~ m{(?:detector|background|xanes)}) {
$this->{plotas}->Enable(0, 1);
$this->{plotas}->Enable($_, 0) foreach (1..7);
$this->{plotas}->SetSelection(0);
} elsif ($data->datatype eq 'chi') {
$this->{plotas}->Enable(0, 0);
$this->{plotas}->Enable($_, 1) foreach (1..7);
$this->{plotas}->SetSelection(4) if $this->{plotas}->GetSelection == 0;
} else {
$this->{plotas}->Enable($_, 1) foreach (0..7);
};
my $ref;
return if not defined($data);
if ($data->bkg_stan ne 'None') {
foreach my $i (0 .. $#{$prj->entries}) {
if ($prj->entries->[$i]->[1] eq $data->bkg_stan) {
$ref = $prj->record($i+1);
$data->bkg_stan($ref->group);
$ref->_update('fft');
};
};
};
$this->{journal}->SetValue(join($/, @{$data->titles}));
$prj->po->start_plot;
my $plotas = $this->{plotas}->GetSelection;
my $space = ($plotas == 0) ? 'E'
: ($plotas == 4) ? 'k'
: ($plotas < 4) ? 'r'
: 'q';
if ($plotas == 0) {
$data->po->set(e_mu=>1, e_markers=>1, e_bkg=>0, e_pre=>0, e_post=>0, e_norm=>0, e_der=>0, e_sec=>0, e_i0=>0, e_signal=>0);
};
$prj->po->r_pl('m') if ($plotas == 1);
$prj->po->r_pl('r') if ($plotas == 2);
$prj->po->r_pl('i') if ($plotas == 3);
$prj->po->q_pl('m') if ($plotas == 5);
$prj->po->q_pl('r') if ($plotas == 6);
$prj->po->q_pl('i') if ($plotas == 7);
$prj->po->kweight(2);
$data -> plot($space);
$prj->po->r_pl($save[0]);
$prj->po->q_pl($save[1]);
$data -> DESTROY;
undef $busy;
};
sub set_selection {
my ($this, $event, $how) = @_;
foreach my $i (0 .. $this->{grouplist}->GetCount-1) {
if ($how eq 'skip') { # select every Nth record starting at record J
my $start = $this->{start}->GetValue - 1;
($start = 0) if ($start < 0);
my $j = $i - $start;
my $n = $this->{every}->GetValue;
my $select = not ($j % $n);
($select = 0) if ($i < $start);
$this->{grouplist}->SetSelection($i, $select);
} elsif ($how eq 'match') { # select records with names matching ...
my $regex = $this->{regex}->GetValue;
return if ($regex =~ m{\A\s*\z});
my $re;
my $is_ok = ($this->{case}->GetValue) ? eval {local $SIG{__DIE__} = q{}; $re = qr/$regex/} :
eval {local $SIG{__DIE__} = q{}; $re = qr/$regex/i};
return if not $is_ok;
my $matches = $this->{grouplist}->GetString($i) =~ m{$re};
$this->{grouplist}->SetSelection($i, $matches);
} else { # select all, select none, or invert selection
my $val = ($how eq 'all') ? 1
: ($how eq 'none') ? 0
: ($how eq 'invert') ? (not $this->{grouplist}->IsSelected($i))
: $this->{grouplist}->IsSelected($i);
$this->{grouplist}->SetSelection($i, $val);
};
};
};
1;
=head1 NAME
Demeter::UI::Common::Prj - An Athena project selection dialog
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
This module provides a window for displaying and selecting from the
contents of an Athena project file.
=head1 CONFIGURATION
=head1 DEPENDENCIES
Demeter's dependencies are in the F<Build.PL> file.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
B<Write this documentation!> (Selection options, Athena vs. Artemis
differences)
=back
Please report problems to the Ifeffit Mailing List
(L<http://cars9.uchicago.edu/mailman/listinfo/ifeffit/>)
Patches are welcome.
=head1 AUTHOR
Bruce Ravel (L<http://bruceravel.github.io/home>)
L<http://bruceravel.github.io/demeter/>
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2006-2019 Bruce Ravel (L<http://bruceravel.github.io/home>). All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlgpl>.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
|