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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
package Demeter::UI::Atoms::Paths;
use Demeter::StrTypes qw( Element );
use Demeter::UI::Artemis::DND::PathDrag;
use Demeter::UI::Common::ShowText;
use Demeter::UI::Wx::SpecialCharacters qw(:all);
use Const::Fast;
use Cwd;
use File::Spec;
use Wx qw( :everything );
use Wx::DND;
use base 'Wx::Panel';
use Wx::Event qw(EVT_CHOICE EVT_KEY_DOWN EVT_MENU EVT_TOOL_ENTER
EVT_ENTER_WINDOW EVT_LEAVE_WINDOW EVT_LIST_ITEM_RIGHT_CLICK
EVT_LEFT_DOWN EVT_RIGHT_DOWN EVT_LIST_BEGIN_DRAG);
my %hints = (
save => "Save this Feff interpretation to a text file",
plot => "Plot selected paths",
chik => "Plot paths in k space",
chir_mag => "Plot paths as the magnitude of chi(R)",
chir_re => "Plot paths as the real part of chi(R)",
chir_im => "Plot paths as the imaginary part of chi(R)",
doc => "Show the path interpretation documentation in a browser",
rank => "Compare path rankings by the various ranking criteria",
);
sub new {
my ($class, $page, $parent) = @_;
my $self = $class->SUPER::new($page, -1, wxDefaultPosition, wxDefaultSize, wxMAXIMIZE_BOX );
$self->{parent} = $parent;
$self->{statusbar} = $parent->{statusbar};
my $vbox = Wx::BoxSizer->new( wxVERTICAL );
$self->{toolbar} = Wx::ToolBar->new($self, -1, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL|wxTB_TEXT);
EVT_MENU( $self->{toolbar}, -1, sub{my ($toolbar, $event) = @_; OnToolClick($toolbar, $event, $self)} );
$self->{toolbar} -> AddTool(1, "Save", $self->icon("save"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{save});
$self->{toolbar} -> AddSeparator;
$self->{toolbar} -> AddTool(2, "Plot paths", $self->icon("plot"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{plot});
$self->{toolbar} -> AddSeparator;
$self->{toolbar} -> AddRadioTool(3, $CHI.'(k)', $self->icon("chik"), wxNullBitmap, q{}, $hints{chik});
my $this = $self->{toolbar} -> AddRadioTool(4, '|'.$CHI.'(R)|', $self->icon("chirmag"), wxNullBitmap, q{}, $hints{chir_mag});
$self->{toolbar} -> AddRadioTool(5, 'Re['.$CHI.'(R)]', $self->icon("chirre"), wxNullBitmap, q{}, $hints{chir_re});
$self->{toolbar} -> AddRadioTool(6, 'Im['.$CHI.'(R)]', $self->icon("chirim"), wxNullBitmap, q{}, $hints{chir_im});
$self->{toolbar} -> AddSeparator;
my $rank = $self->{toolbar} -> AddTool(8, "Rank", $self->icon("rank"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{rank});
#$self->{toolbar} -> AddTool(9, "Doc", $self->icon("document"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{doc});
$self->{toolbar} -> ToggleTool(3, 0);
$self->{toolbar} -> ToggleTool(4, 1);
$self->{rankid} = $rank->GetId;
$self->{toolbar}->EnableTool($self->{rankid},0);
EVT_TOOL_ENTER( $self, $self->{toolbar}, sub{my ($toolbar, $event) = @_; &OnToolEnter($toolbar, $event, 'toolbar')} );
$self->{toolbar} -> Realize;
$vbox -> Add($self->{toolbar}, 0, wxGROW|wxALL, 5);
my $hh = Wx::BoxSizer->new( wxHORIZONTAL );
$vbox -> Add($hh, 0, wxEXPAND|wxALL, 0);
my $label = Wx::StaticText->new($self, -1, 'Name of this Feff calculation: ', wxDefaultPosition, [-1,-1]);
$self->{name} = Wx::TextCtrl ->new($self, -1, q{}, wxDefaultPosition, [70,-1], wxTE_READONLY);
$hh->Add($label, 0, wxEXPAND|wxALL, 5);
$hh->Add($self->{name}, 1, wxEXPAND|wxALL, 5);
$self->{headerbox} = Wx::StaticBox->new($self, -1, 'Description', wxDefaultPosition, wxDefaultSize);
$self->{headerboxsizer} = Wx::StaticBoxSizer->new( $self->{headerbox}, wxVERTICAL );
$self->{header} = Wx::TextCtrl->new($self, -1, q{}, wxDefaultPosition, [-1,100],
wxTE_MULTILINE|wxALWAYS_SHOW_SB|wxTE_READONLY);
$self->{header} -> SetFont( Wx::Font->new( 9, wxTELETYPE, wxNORMAL, wxNORMAL, 0, "" ) );
$self->{headerboxsizer} -> Add($self->{header}, 0, wxEXPAND|wxALL, 0);
$vbox -> Add($self->{headerboxsizer}, 0, wxEXPAND|wxALL, 5);
$self->{pathsbox} = Wx::StaticBox->new($self, -1, 'Scattering Paths', wxDefaultPosition, wxDefaultSize);
$self->{pathsboxsizer} = Wx::StaticBoxSizer->new( $self->{pathsbox}, wxVERTICAL );
$self->{paths} = Wx::ListView->new($self, -1, wxDefaultPosition, wxDefaultSize, wxLC_REPORT|wxLC_HRULES);
$self->{paths}->InsertColumn( 0, q{} );
$self->{paths}->InsertColumn( 1, "Degen" );
$self->{paths}->InsertColumn( 2, "Reff" );
$self->{paths}->InsertColumn( 3, "Scattering path" );
$self->{paths}->InsertColumn( 4, "Rank" );
$self->{paths}->InsertColumn( 5, "L" );
$self->{paths}->InsertColumn( 6, "Type" );
$self->{paths}->SetColumnWidth( 0, 40 );
$self->{paths}->SetColumnWidth( 1, 50 );
$self->{paths}->SetColumnWidth( 2, 50 );
$self->{paths}->SetColumnWidth( 3, 245 );
$self->{paths}->SetColumnWidth( 4, 50 );
$self->{paths}->SetColumnWidth( 5, 15 );
$self->{paths}->SetColumnWidth( 6, 180 );
$self->{paths}->SetFont(Wx::Font->new( 8, wxTELETYPE, wxNORMAL, wxNORMAL, 0, "" ));
#EVT_LIST_ITEM_RIGHT_CLICK($self, $self->{paths}, sub{OnRightClick(@_)});
EVT_RIGHT_DOWN($self->{paths}, sub{OnRightClick(@_, $self)});
EVT_MENU($self, -1, sub{ $self->OnMenu(@_) });
EVT_LIST_BEGIN_DRAG($self, $self->{paths}, \&OnDrag) if $parent->{component};
$self->{pathsboxsizer} -> Add($self->{paths}, 1, wxEXPAND|wxALL, 0);
$vbox -> Add($self->{pathsboxsizer}, 1, wxEXPAND|wxALL, 5);
$self -> SetSizerAndFit( $vbox );
return $self;
};
sub icon {
my ($self, $which) = @_;
my $icon = File::Spec->catfile($Demeter::UI::Atoms::atoms_base, 'Atoms', 'icons', "$which.png");
return wxNullBitmap if (not -e $icon);
return Wx::Bitmap->new($icon, wxBITMAP_TYPE_ANY)
};
const my $SHOWGEOM => Wx::NewId();
const my $SELR => Wx::NewId();
const my $SELA => Wx::NewId();
const my $SELSS => Wx::NewId();
const my $SELFOR => Wx::NewId();
const my $RANKSEL => Wx::NewId();
const my $RANKALL => Wx::NewId();
sub OnRightClick {
my ($list, $event, $parent) = @_;
foreach my $it (0 .. $list->GetItemCount-1) {
$list->SetItemState($it, 0, wxLIST_STATE_SELECTED);
};
my ($item, $flags) = $list->HitTest($event->GetPosition);
$list->SetItemState($item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
$parent->{rcselected}=$item;
my $menu = Wx::Menu->new(q{});
$menu->Append($SHOWGEOM, "Show geometry for this path");
$menu->AppendSeparator;
$menu->Append($SELA, "Select paths with rank above A");
$menu->Append($SELR, "Select paths shorter than R");
$menu->Append($SELSS, "Select single scattering paths");
$menu->Append($SELFOR, "Select forward scattering paths");
$list->PopupMenu($menu, $event->GetPosition);
};
sub OnMenu {
my ($parent, $p2, $event) = @_;
my $id = $event->GetId;
if ($id == $SHOWGEOM) {
$parent->show_geometry($event);
} else {
$parent->Select($id);
};
}
sub show_geometry {
my ($parent, $event) = @_;
my $list = $parent->{paths};
my @pathlist = @{ $parent->{parent}->{Feff}->{feffobject}->pathlist };
## the ItemData is the index of that path in the Feff objects
## pathslist -- the counting is done correctly, even if not all
## paths are displayed in the path interpretation due to the
## postcrit
my $i = $list->GetItemData($parent->{rcselected});
my $sp = $pathlist[$i-1]; # the ScatteringPath associated with this selected item
my $feff = $parent->{parent}->{Feff}->{feffobject};
my $pd = (($feff->source eq 'aggregate') and ($sp->nleg == 2)) ? $feff->path_geom($sp) : $sp->pathsdat;
## ^^^^^^^^^^^^^^^^^^^^
## fix this once MSPath is working
$pd =~ s{\A\s+\d+}{};
$pd =~ s{index,}{};
my $text = "The path\n\t" . $sp->intrplist . "\nis calculated using these atom positions:\n\n" . $pd;
my $dialog = Demeter::UI::Common::ShowText->new($parent, $text, $sp->intrplist)
-> Show;
};
sub Select {
my ($parent, $id) = @_;
if ($id == $SELR) {
my $ted = Wx::TextEntryDialog->new( $self, "Select paths shorter than this path length:",
"Enter a path length", q{}, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$self->status("Path selection canceled.");
return;
};
my $r = $ted->GetValue;
if ($r !~ m{$NUMBER}) {
$self->status("Oops! That wasn't a number.");
return;
};
foreach my $item (0 .. $parent->{paths}->GetItemCount-1) {
$parent->{paths}->SetItemState($item, 0, wxLIST_STATE_SELECTED);
$parent->{paths}->SetItemState($item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED )
if ($parent->{paths}->GetItem($item, 2)->GetText < $r)
};
} elsif ($id == $SELA) {
my $ted = Wx::TextEntryDialog->new( $self, "Select paths which rank above:",
"Enter a path ranking", q{}, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$self->status("Path selection canceled.");
return;
};
my $a = $ted->GetValue;
if ($a !~ m{$NUMBER}) {
$self->status("Oops! That wasn't a number.");
return;
};
foreach my $item (0 .. $parent->{paths}->GetItemCount-1) {
$parent->{paths}->SetItemState($item, 0, wxLIST_STATE_SELECTED);
$parent->{paths}->SetItemState($item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED )
if ($parent->{paths}->GetItem($item, 4)->GetText > $a)
};
} elsif ($id == $SELSS) {
foreach my $item (0 .. $parent->{paths}->GetItemCount-1) {
$parent->{paths}->SetItemState($item, 0, wxLIST_STATE_SELECTED);
$parent->{paths}->SetItemState($item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED )
if ($parent->{paths}->GetItem($item, 5)->GetText == 2)
};
} elsif ($id == $SELFOR) {
foreach my $item (0 .. $parent->{paths}->GetItemCount-1) {
$parent->{paths}->SetItemState($item, 0, wxLIST_STATE_SELECTED);
$parent->{paths}->SetItemState($item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED )
if ($parent->{paths}->GetItem($item, 6)->GetText =~ m{forward (?:scat|thro)})
};
};
};
sub OnDrag {
my ($parent, $event) = @_;
my $list = $parent->{paths};
my $which = $event->GetIndex;
my @pathlist = @{ $parent->{parent}->{Feff}->{feffobject}->pathlist };
my @data;
my $item = $list->GetFirstSelected;
while ($item ne -1) {
my $p = $list->GetItemData($item)-1;
push @data, $pathlist[$p]->group;
#print $pathlist[$item]->intrpline, $/;
$item = $list->GetNextSelected($item);
};
my $source = Wx::DropSource->new( $list );
my $dragdata = Demeter::UI::Artemis::DND::PathDrag->new(\@data);
$source->SetData( $dragdata );
$source->DoDragDrop(1);
#$event->Skip(1);
};
sub OnToolEnter {
my ($self, $event, $which) = @_;
if ( $event->GetSelection > -1 ) {
$self->{statusbar}->SetStatusText($self->{$which}->GetToolLongHelp($event->GetSelection));
} else {
$self->{statusbar}->SetStatusText(q{});
};
};
sub OnToolClick {
my ($toolbar, $event, $self) = @_;
## Vv---------order of toolbar on the screen------------vV
my @callbacks = qw(save noop plot noop set_plot set_plot set_plot set_plot noop rank); # document
my $closure = $callbacks[$toolbar->GetToolPos($event->GetId)];
$self->$closure($event->GetId);
};
sub noop {
return 1;
};
sub document {
$::app->document('feff.paths');
};
sub rank {
my ($self) = @_;
return if not $self->{paths}->GetItemCount;
$self->{parent}->status("Beginning path rank comparison ...");
my $busy = Wx::BusyCursor->new();
my $text = "# Path rankings\n# ------------------------------\n";
my $feff = $self->{parent}->{Feff}->{feffobject};
my $hash = {kmin=>3, kmax=>12, rmin=>1, rmax=>4,
update=>sub{$self->{parent}->status($_[0], 'nobuffer'); $self->{parent}->Update}};
$feff->rank_paths(\@Demeter::StrTypes::rankings_list, $hash);
$text .= "# index " . sprintf(' %-7s' x ($#Demeter::StrTypes::rankings_list+1), @Demeter::StrTypes::rankings_list) . "\n";
#my $n = $#Demeter::StrTypes::rankings_list x 10 + 21;
#my $dashes = '-' x $n;
#$text .= "# $dashes\n";
my $i=1;
my $format = ' %7.2f' x ($#Demeter::StrTypes::rankings_list+1);
#foreach my $sp (@{ $feff->pathlist }) {
foreach my $item (0 .. $self->{paths}->GetItemCount-1) {
my $data = $self->{paths}->GetItemData($item);
my $sp = $feff->pathlist->[$data-1]; # the ScatteringPath associated with this selected item
$text .= sprintf(" %s " . $format . "\n",
$self->{paths}->GetItem($item,0)->GetText, map {$sp->get_rank($_)} @Demeter::StrTypes::rankings_list);
};
$self->{parent}->status("Path rank comparison ... done!");
undef $busy;
my $dialog = Demeter::UI::Common::ShowText->new($self->{parent}, $text, 'Path rankings') -> Show;
};
sub set_plot {
my ($self, $id) = @_;
## set plotting space
my $space = ($id == 3) ? 'k' : 'r';
$self->{parent}->{Feff}->{feffobject}->po->space($space);
# set part of R space plot
my %pl = (3 => q{}, 4 => 'm', 5 => 'r', 6 => 'i');
$self->{parent}->{Feff}->{feffobject}->po->r_pl($pl{$id}) if $pl{$id};
# sensible status bar message
my %as = (3 => 'chi(k)', 4 => 'the magnitude of chi(R)', 5 => 'the real part of chi(R)', 6 => 'the imaginary part of chi(R)');
$self->{parent}->status("Plotting as $as{$id}");
return $self;
};
#sub clear_all {
# my ($self) = #
#
#};
sub save {
my ($self) = @_;
return if not $self->{paths}->GetItemCount;
my $fd = Wx::FileDialog->new( $self, "Save Feff interpretation", cwd, q{feff.txt},
"TXT (*.txt)|*.txt|All files (*)|*",
wxFD_SAVE|wxFD_CHANGE_DIR|wxFD_OVERWRITE_PROMPT,
wxDefaultPosition);
if ($fd -> ShowModal == wxID_CANCEL) {
$self->{parent}->status("Saving Feff interpretation canceled.")
} else {
my $intrp = $fd->GetPath;
open(my $I, '>', $intrp);
print $I $self->{parent}->{Feff}->{feffobject}->intrp;
close $I;
$self->{parent}->status("Saved Feff interpetation to $intrp.")
};
};
sub plot {
my ($self) = @_;
return if not $self->{paths}->GetItemCount;
my $this = $self->{paths}->GetFirstSelected;
$self->{parent}->status("No paths are selected!") if ($this == -1);
my $busy = Wx::BusyCursor->new();
Demeter->po->start_plot;
Demeter->reset_path_indeces;
my $save = Demeter->po->title;
Demeter->po->title("Feff calculation");
while ($this != -1) {
my $i = $self->{paths}->GetItemData($this);
my $feff = $self->{parent}->{Feff}->{feffobject};
my $sp = $feff->pathlist->[$i-1]; # the ScatteringPath associated with this selected item
my $space = $self->{parent}->{Feff}->{feffobject}->po->space;
$self->{parent}->{Console}->{console}->AppendText($self->now("Feff calculation (".$sp->randstring.") beginning at "));
$self->{parent}->{Console}->{console}->AppendText("(Feff executable: ".
$feff->co->default(qw(feff executable)) .
")\n\n");
Demeter::Path -> new(parent=>$feff, sp=>$sp, name=>$sp->intrplist) -> plot($space);
#my $path_object = Demeter::Path -> new(parent=>$feff_object, sp=>$sp);
#$path_object -> plot("r");
#undef $path_object;
$this = $self->{paths}->GetNextSelected($this);
$self->{parent}->{Console}->{console}->AppendText(join("\n", @{ $feff->iobuffer }));
$self->{parent}->{Console}->{console}->AppendText($self->now("Feff calculation finished at "));
};
Demeter->po->title($save);
undef $busy;
};
sub now {
my ($self, $text, $feff) = @_;
my $string = $/ x 2;
$string .= '********** ' . $text . Demeter->now;
$string .= $/ x 2;
return $string;
};
1;
=head1 NAME
Demeter::UI::Atoms::Paths - Atoms' path organizer utility
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 DESCRIPTION
This class is used to populate the Paths tab in the Wx version of Atoms.
=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
|