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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
|
package Demeter::UI::Artemis::GDS;
=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 Cwd;
use File::Spec;
use List::MoreUtils qw(uniq any);
use Scalar::Util qw(looks_like_number);
use Demeter::Constants qw($SEPARATOR);
use Const::Fast;
## 0:grab all 1:reset all 2:toggle highlight 4:import 5:export 6:discard all 8:add one
const my $GRAB => 0;
const my $RESET => 1;
const my $HIGHLIGHT => 2;
const my $EVAL => 3;
const my $IMPORT => 5;
const my $EXPORT => 6;
const my $DISCARD => 7;
const my $ADD => 9;
const my $DOC => 11;
const my $PARAM_REGEX => '(guess|def|set|lguess|restrain|after|skip|penalty|merge)';
const my $GUESS => Wx::NewId();
const my $LGUESS => Wx::NewId();
const my $SET => Wx::NewId();
const my $DEF => Wx::NewId();
const my $SKIP => Wx::NewId();
const my $AFTER => Wx::NewId();
const my $RESTRAIN => Wx::NewId();
const my $PENALTY => Wx::NewId();
use Wx qw( :everything );
use Wx::DND;
use Wx::Grid;
use base qw(Wx::Frame);
use Wx::Event qw(EVT_CLOSE EVT_ICONIZE EVT_GRID_CELL_CHANGE
EVT_GRID_CELL_RIGHT_CLICK EVT_MENU
EVT_GRID_LABEL_LEFT_CLICK EVT_GRID_LABEL_RIGHT_CLICK EVT_GRID_RANGE_SELECT
EVT_GRID_SELECT_CELL EVT_GRID_CELL_CHANGE);
use Demeter::UI::Artemis::Close;
use Demeter::UI::Artemis::GDS::Restraint;
use Demeter::UI::Common::ShowText;
use Demeter::StrTypes qw( GDS );
use Demeter::UI::Wx::Colours;
use Demeter::UI::Wx::SpecialCharacters qw($PLUSMN $PLUSMN2);
const my $PM => $PLUSMN2; # see Project.pm line ~36
const my $PMRE => quotemeta($PM) . '\s*.*';
# 0 1 2 3 4 5 6 7 8
my $types = [qw(guess def set lguess skip restrain after penalty merge)];
$types = [qw(guess def set lguess skip after penalty merge)] if Demeter->is_larch;
my %gridcolors = (
guess => Wx::Colour->new(Demeter->co->default('gds','guess_color' )),
def => Wx::Colour->new(Demeter->co->default('gds','def_color' )),
set => Wx::Colour->new(Demeter->co->default('gds','set_color' )),
lguess => Wx::Colour->new(Demeter->co->default('gds','lguess_color' )),
skip => Wx::Colour->new(Demeter->co->default('gds','skip_color' )),
restrain => Wx::Colour->new(Demeter->co->default('gds','restrain_color')),
after => Wx::Colour->new(Demeter->co->default('gds','after_color' )),
penalty => Wx::Colour->new(Demeter->co->default('gds','penalty_color' )),
merge => Wx::Colour->new(Demeter->co->default('gds','merge_color' )),
);
my %explain = (# V
guess => "A parameter that is varied in the fit",
def => "A parameter that is functionally dependent on guess parameter(s) \& is reevaluated throughout the fit",
set => "A parameter that is evaluated at the beginning of the fit and not varied further",
lguess => "A guess parameter that is varied independently for each data set for which it is used",
skip => "A parameter that is ignored in the fit but retained in the project",
restrain => "A parameter expressing prior knowledge of the fit model and added in quadrature to the fitting metric",
after => "A parameter that will be evaluated once the fit is finished and reported in the log file",
penalty => "A parameter that is evaluated and used as a penalty against the happiness of the fit",
merge => "A parameter from a merging of fit projects whose name poses a conflict and which much be resolved",
);
my %hints = (
grab => "Use the best fit values from the last fit as the initial values for all guess parameters",
reset => "Restore all parameters to their initial values in ".Demeter->backend_name,
convert => "Change all guess parameters to set",
discard => "Discard all parameters",
highlight => "Toggle highlighting of parameters which match a regular expression",
eval => "Evaluate and display all parameters",
import => "Import parameters from a text file",
export => "Export parameters to a text file",
addgds => "Add space for one more parameter",
doc => "Show documentation for the GDS window in a browser",
close => "Close GDS window",
);
sub new {
my ($class, $parent) = @_;
my $this = $class->SUPER::new($parent, -1, "Artemis [GDS] Guess, Def, Set parameters",
wxDefaultPosition, [-1,-1], #[725,480],
wxMINIMIZE_BOX|wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|wxRESIZE_BORDER);
$this -> SetBackgroundColour( $wxBGC );
$this->{statusbar} = $this->CreateStatusBar;
$this->{statusbar} -> SetStatusText(q{});
$this->{uptodate} = 1;
EVT_CLOSE($this, \&on_close);
EVT_ICONIZE($this, \&on_close);
my $hbox = Wx::BoxSizer->new( wxHORIZONTAL );
my $grid = Wx::Grid->new($this, -1, wxDefaultPosition, wxDefaultSize, wxALWAYS_SHOW_SB);
$this->{grid} = $grid;
$this->{buffer} = q{};
$grid -> CreateGrid(12,4,wxGridSelectRows);
$grid -> SetColLabelValue (0, 'Type');
$grid -> SetColSize (0, 85);
$grid -> SetColLabelValue (1, 'Name');
$grid -> SetColSize (1, 100);
$grid -> SetColLabelValue (2, 'Math expression');
$grid -> SetColSize (2, 330);
#$grid -> SetColFormatFloat(2, -1, 5);
$grid -> SetColLabelValue (3, 'Evaluated');
$grid -> SetColSize (3, 150);
$grid -> SetRowLabelSize(40);
$grid -> SetDropTarget( Demeter::UI::Artemis::GDS::TextDropTarget->new( $grid, $this ) );
foreach my $row (0 .. $grid->GetNumberRows) {
$this->initialize_row($row);
};
my @accelerator_table = ([wxACCEL_ALT, 103, $GUESS],
[wxACCEL_ALT, 115, $SET],
[wxACCEL_ALT, 100, $DEF],
[wxACCEL_ALT, 107, $SKIP],
[wxACCEL_ALT, 97, $AFTER],
[wxACCEL_ALT, 108, $LGUESS],
[wxACCEL_ALT, 112, $PENALTY],);
push @accelerator_table, [wxACCEL_ALT, 114, $RESTRAIN] if not Demeter->is_larch;
my $accelerator = Wx::AcceleratorTable->new( @accelerator_table );
$grid->SetAcceleratorTable( $accelerator );
EVT_GRID_CELL_CHANGE ($grid, sub{ $this->OnSetType(@_) });
EVT_GRID_CELL_RIGHT_CLICK ($grid, sub{ $this->PostGridMenu(@_, 0)});
EVT_GRID_LABEL_LEFT_CLICK ($grid, sub{ $this->StartDrag(@_) });
EVT_GRID_LABEL_RIGHT_CLICK($grid, sub{ $this->PostGridMenu(@_, 1)});
EVT_MENU ($grid, -1, sub{ $this->OnGridMenu(@_) });
#EVT_GRID_RANGE_SELECT ($grid, sub{ $this->OnRangeSelect(@_) });
EVT_GRID_SELECT_CELL ($grid, sub{ $this->OnRowSelect(@_) });
EVT_GRID_CELL_CHANGE ($grid, sub{ $this->OnCellChange(@_) });
$hbox -> Add($grid, 1, wxGROW|wxALL, 5);
$this->{toolbar} = Wx::ToolBar->new($this, -1, wxDefaultPosition, wxDefaultSize, wxTB_VERTICAL|wxTB_HORZ_LAYOUT|wxTB_TEXT);
$this->{toolbar} -> AddTool(-1, " Use best fit", Demeter::UI::Artemis::icon("bestfit"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{grab} );
$this->{toolbar} -> AddTool(-1, "Reset all", Demeter::UI::Artemis::icon("reset"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{reset} );
$this->{toolbar} -> AddCheckTool($HIGHLIGHT, "Highlight", Demeter::UI::Artemis::icon("highlight"), wxNullBitmap, q{}, $hints{highlight} );
$this->{toolbar} -> AddTool(-1, "Evaluate", Demeter::UI::Artemis::icon("eval"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{eval} );
$this->{toolbar} -> AddSeparator;
$this->{toolbar} -> AddTool(-1, " Import GDS", Demeter::UI::Artemis::icon("import"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{import});
$this->{toolbar} -> AddTool(-1, " Export GDS", Demeter::UI::Artemis::icon("export"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{export});
$this->{toolbar} -> AddTool(-1, "Discard all", Demeter::UI::Artemis::icon("discard"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{discard} );
$this->{toolbar} -> AddSeparator;
$this->{toolbar} -> AddTool(-1, "Add GDS", Demeter::UI::Artemis::icon("addgds"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{addgds} );
$this->{toolbar} -> AddSeparator;
$this->{toolbar} -> AddTool(-1, "About: GDS", Demeter::UI::Artemis::icon("doc"), wxNullBitmap, wxITEM_NORMAL, q{}, $hints{doc} );
$this->{toolbar} -> Realize;
$hbox -> Add($this->{toolbar}, 0, wxALL, 5);
EVT_MENU($this->{toolbar}, -1, sub{ $this->OnToolClick(@_, $grid) } );
$this -> SetSizerAndFit( $hbox );
my ($xx, $yy) = $this->GetSizeWH;
$this -> SetSizeHints($xx, 1.1*$yy, $xx, -1);
#$this -> SetMinSize(Wx::Size->new($xx, 1.1*$yy));
#$this -> SetMaxSize(Wx::Size->new($xx, 1.1*$yy));
return $this;
};
sub noop {};
# sub on_close {
# my ($self) = @_;
# $self->Show(0);
# $self->GetParent->{toolbar}->ToggleTool(1, 0);
# };
sub initialize_row {
my ($parent, $row) = @_;
$parent->{grid} -> SetCellEditor($row, 0, Wx::GridCellChoiceEditor->new($types));
$parent->{grid} -> SetCellValue($row, 0, "guess");
$parent->{grid} -> SetReadOnly($row, 3, 1);
foreach my $c (0 .. $parent->{grid}->GetNumberCols) { $parent->{grid}->SetCellTextColour($row, $c, $gridcolors{guess}) };
};
######## Toolbar section ############################################################
sub OnToolClick {
my ($parent, $toolbar, $event, $grid) = @_;
## 0:grab all 1:reset all 2:toggle highlight 3:evaluate 5:import 6:export 7:discard all 9:add one
my $which = $toolbar->GetToolPos($event->GetId); # || $event->GetId;
SWITCH: {
($which == $GRAB) and do { # grab best fit values
$parent->use_best_fit;
last SWITCH;
};
($which == $RESET) and do { # reset all
$parent->reset_all;
last SWITCH;
};
($which == $HIGHLIGHT) and do { # toggle highlight
$parent->highlight;
last SWITCH;
};
($which == $EVAL) and do { # evaluate and display
$parent->evaluate;
last SWITCH;
};
($which == $IMPORT) and do { # import from text
$parent->import;
last SWITCH;
};
($which == $EXPORT) and do { # export to text
$parent->export;
last SWITCH;
};
($which == $DISCARD) and do { # discard all
$parent->discard_all;
last SWITCH;
};
($which == $ADD) and do { # add a line
$grid->AppendRows(1,1);
$parent->initialize_row( $grid->GetNumberRows - 1 );
$parent->{grid}->ClearSelection;
last SWITCH;
};
($which == $DOC) and do { # add a line
$::app->document('gds');
};
};
};
sub OnMenu {
my ($self, $event) = @_;
my $id = $event->GetId;
print join("|", $event, $id), $/;
};
sub use_best_fit {
my ($parent) = @_;
my $grid = $parent->{grid};
my $count = 0;
foreach my $row (0 .. $grid->GetNumberRows) {
my $type = $grid->GetCellValue($row, 0);
next unless ($type eq 'guess');
my $evaluated = $grid->GetCellValue($row, 3);
next unless ($evaluated !~ m{\A\s*\z});
$evaluated =~ s{$PMRE}{};
$grid->SetCellValue($row, 2, $parent->display_value($evaluated));
$grid->SetCellValue($row, 3, q{});
++$count;
};
if ($count) {
$parent->status("Using best fit values as the new initial guesses.");
$parent->{uptodate} = 0;
return 1;
};
$parent->status("Not using best fit values -- have you done a fit yet?");
return 0;
};
# print join("|", 1, map {$_->group} @{ Demeter->mo->GDS }), $/;
sub reset_all {
my ($parent, $no_ifeffit, $renew) = @_;
$no_ifeffit ||= 0;
$renew ||= 0;
my $grid = $parent->{grid};
my @gds = ();
foreach my $row (0 .. $grid->GetNumberRows) {
my $name = $grid -> GetCellValue($row, 1);
next if ($name =~ m{\A\s*\z});
$name =~ s{\A\s+}{};
$name =~ s{\s+\z}{};
$grid -> SetCellValue($row, 1, $name);
my $type = $grid -> GetCellValue($row, 0);
my $mathexp = $grid -> GetCellValue($row, 2);
my $thisgds;
if ($renew or (not defined $grid->{$name})) {
$thisgds = Demeter::GDS->new();
$grid->SetCellValue($row, 3, q{});
} else {
$thisgds = $grid->{$name};
};
$thisgds -> set(name=>$name, gds=>$type, mathexp=>$mathexp);
$grid->{$name} = $thisgds;
push @gds, $thisgds;
$thisgds->push_ifeffit if (not $no_ifeffit);
};
$parent->{uptodate} = 1;
$parent->status("Reset all parameter values in ".Demeter->backend_name.".") if (not $no_ifeffit);
return \@gds;
};
sub highlight {
my ($parent) = @_;
my $is_down = $parent->{toolbar}->GetToolState($HIGHLIGHT);
($is_down) ? $parent->set_highlight : $parent->clear_highlight;
$parent->status("Cleared all highlights.") if not $is_down;
return $parent;
};
sub set_highlight {
my ($parent, $regex) = @_;
my $grid = $parent->{grid};
if (not $regex) {
my $ted = Wx::TextEntryDialog->new( $parent, "Enter a regular expression", "Highlight parameters matching", q{}, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$parent->status("Parameter highlighting canceled.");
$parent->{toolbar}->ToggleTool($HIGHLIGHT, 0);
return;
};
$regex = $ted->GetValue;
if ($regex =~ m{\A\s*\z}) {
$parent->status("Parameter highlighting canceled (no regular expression provided).");
$parent->{toolbar}->ToggleTool($HIGHLIGHT, 0);
return;
};
};
my $re;
my $is_ok = eval '$re = qr/$regex/i';
if (not $is_ok) {
$parent->status("Oops! \"$regex\" is not a valid regular expression");
$parent->{toolbar}->ToggleTool($HIGHLIGHT, 0);
return;
};
$parent->clear_highlight;
foreach my $row (0 .. $grid->GetNumberRows) {
next if ($grid -> GetCellValue($row, 0) eq 'merge');
my $name = $grid -> GetCellValue($row, 1);
next if ($name =~ m{\A\s*\z});
my $mathexp = $grid -> GetCellValue($row, 2);
if (($name =~ $re) or ($mathexp =~ m{\b$re\b})) {
## set GDS object highlighted attribute to 1 -- do I *really* need to do this...
foreach my $col (0 .. $grid->GetNumberCols) {
$grid->SetCellBackgroundColour($row, $col, Wx::Colour->new(Demeter->co->default('gds','highlight_color')));
};
};
};
$grid -> ForceRefresh;
$parent->status("Highlighted parameters matching /$regex/.") if $parent;
};
sub clear_highlight {
my ($parent) = @_;
my $grid = $parent->{grid};
foreach my $row (0 .. $grid->GetNumberRows) {
next if ($grid -> GetCellValue($row, 0) eq 'merge');
map { $grid->SetCellBackgroundColour($row, $_, $wxBGC)} (0 .. 3);
};
$grid -> ForceRefresh;
};
sub evaluate {
my ($parent) = @_;
my $grid = $parent->{grid};
my $busy = Wx::BusyCursor->new();
my $r_gds = $parent->reset_all;
my ($command, $text) = (q{}, q{});
foreach my $row (0 .. $grid->GetNumberRows) {
my $name = $grid->GetCellValue($row, 1);
next if $name =~ m{\A\s*\z};
my $g = $grid->{$name};
next if ref($g) !~ m{GDS};
$g->evaluate;
$grid -> SetCellValue($row, 3, sprintf("%.5f", $g->bestfit));
};
undef $busy;
};
sub find_next_empty_row {
my ($parent) = @_;
my $grid = $parent->{grid};
my $start = $grid->GetNumberRows;
foreach my $row (reverse(0 .. $grid->GetNumberRows)) {
last if ($grid->GetCellValue($row, 1) or $grid->GetCellValue($row, 2));
$start = $row;
};
return $start;
};
sub put_gds {
my ($parent, $gds) = @_;
$parent->put_param($gds->gds, $gds->name, $gds->mathexp);
$parent->{grid} -> {$gds->name} = $gds;
$parent->{uptodate} = 0;
};
sub put_param {
my ($parent, $type, $name, $mathexp) = @_;
my $grid = $parent->{grid};
$type = 'merge' if $parent->param_present($name);
my $start = $parent->find_next_empty_row;
if ($start >= $grid->GetNumberRows) {
$grid -> AppendRows(1,1);
$parent -> initialize_row( $grid->GetNumberRows - 1 );
};
$grid -> SetCellValue($start, 0, $type);
$grid -> SetCellValue($start, 1, $name);
$grid -> SetCellValue($start, 2, $parent->display_value($mathexp));
$parent -> tie_GDS_to_grid($start);
$parent -> set_type($start);
};
sub param_present {
my ($parent, $name) = @_;
my $grid = $parent->{grid};
foreach my $row (0 .. $grid->GetNumberRows) {
return 1 if (lc($grid->GetCellValue($row, 1)) eq lc($name));
};
return 0;
};
sub display_value {
my ($self, $string) = @_;
my $n = Demeter->co->default("gds", "display_precision");
my $patternf = '%.'.$n.'f';
my $patterne = '%.'.$n.'e';
if (looks_like_number($string)) {
if ($string == 0) {
return 0;
} elsif (abs($string) > 0.00001) {
return sprintf($patternf, $string);
} else {
return sprintf($patterne, $string);
};
} else {
return $string;
};
};
sub import {
my ($parent) = @_;
my $grid = $parent->{grid};
my $fd = Wx::FileDialog->new( $parent, "Import parameters from a text file", cwd, q{},
"Text file|*.txt|All files (*)|*",
wxFD_OPEN|wxFD_FILE_MUST_EXIST|wxFD_CHANGE_DIR|wxFD_PREVIEW,
wxDefaultPosition);
if ($fd -> ShowModal == wxID_CANCEL) {
$parent->status("Parameter import aborted.")
} else {
my $file = $fd->GetPath;
my $comment = qr([!#%]);
my $start = $parent->find_next_empty_row;
my $count = 0;
open(my $PARAM, $file);
foreach my $line (<$PARAM>) {
++$count;
next unless ($line =~ m{\A$PARAM_REGEX});
if ($start >= $grid->GetNumberRows) {
$grid -> AppendRows(1,1);
$parent -> initialize_row( $grid->GetNumberRows - 1 );
};
$line =~ s{$comment.*\z}{}; # strip comments
$line =~ s{\s+\z}{};
my ($gds, $name, @rest) = split(/$SEPARATOR/, $line);
my $mathexp = join(" ", @rest);
if (not is_GDS($gds)) {
my $ok = Wx::MessageDialog->new($parent,
"$gds is not a parameter type at line $count\n($gds $name = $mathexp)",
"Bad parameter type",
wxOK|wxICON_ERROR) -> ShowModal;
next;
};
$parent->put_param($gds, $name, $mathexp);
};
close $PARAM;
};
};
sub export {
my ($parent) = @_;
my $grid = $parent->{grid};
my $fd = Wx::FileDialog->new( $parent, "Export parameters to a text file", cwd, q{},
"Text file|*.txt|All files (*)|*", wxFD_SAVE|wxFD_CHANGE_DIR|wxFD_OVERWRITE_PROMPT,
wxDefaultPosition);
if ($fd -> ShowModal == wxID_CANCEL) {
$parent->status("Parameter export aborted.");
return 0;
} else {
my $file = $fd->GetPath;
#return if $parent->overwrite_prompt($file); # work-around gtk's wxFD_OVERWRITE_PROMPT bug (5 Jan 2011)
open(my $PARAM, '>'.$file);
foreach my $row (0 .. $grid->GetNumberRows-1) {
my $thisgds = $parent->tie_GDS_to_grid($row);
next if not $thisgds;
print $PARAM $thisgds->template("process", "gds_out");
};
close $PARAM;
$parent->status("Exported parameters to \"$file\".")
};
};
sub tie_GDS_to_grid {
my ($parent, $row) = @_;
my $grid = $parent->{grid};
my $name = $grid -> GetCellValue($row, 1);
return 0 if ($name =~ m{\A\s*\z});
my $type = $grid -> GetCellValue($row, 0);
my $mathexp = $grid -> GetCellValue($row, 2);
my $thisgds = $grid->{$name} || Demeter::GDS->new(); # take care to reuse GDS objects whenever possible
$thisgds -> set(name=>$name, gds=>$type, mathexp=>$mathexp);
$grid->{$name} = $thisgds;
return $thisgds;
};
sub discard_all {
my ($parent, $force) = @_;
my $grid = $parent->{grid};
if (not $force) {
my $yesno = Demeter::UI::Wx::VerbDialog->new($parent, -1,
"Really throw away all parameters?",
"Verify action",
"Throw them away");
if ($yesno->ShowModal == wxID_NO) {
$parent->status("Not discarding parameters.");
return 0;
};
};
foreach my $row (0 .. $grid->GetNumberRows-1) {
$parent->discard($row);
};
$parent->status("Discarded all parameters.")
};
sub discard {
my ($parent, $row) = @_;
my $grid = $parent->{grid};
$grid -> SetCellValue($row, 0, 'guess');
$parent->set_type($row);
my $name = $grid->GetCellValue($row, 1);
$grid -> SetCellValue($row, 1, q{});
$grid -> SetCellValue($row, 2, q{});
$grid -> SetCellValue($row, 3, q{});
if ((exists $grid->{$name}) and ($grid->{$name} =~ m{GDS})) {
$grid->{$name}->dispense('process', 'erase', {items=>$grid->{$name}->name});
$grid->{$name}->DEMOLISH;
delete $grid->{$name};
};
};
sub OnSetType {
my ($parent, $self, $event) = @_;
if ($event->GetCol == 0) {
my $row = $event->GetRow;
$parent->set_type($row);
$parent->{grid}->ClearSelection;
};
};
sub set_type {
my ($parent, $row) = @_;
my $grid = $parent->{grid};
my $newval = $grid->GetCellValue($row, 0);
foreach my $c (0 .. $grid->GetNumberCols) {
if ($newval eq 'merge') {
$grid->SetCellBackgroundColour($row, $c, $gridcolors{merge});
$grid->SetCellTextColour($row, $c, wxWHITE);
} else {
$grid->SetCellBackgroundColour($row, $c, $wxBGC);
$grid->SetCellTextColour($row, $c, $gridcolors{$newval});
};
};
};
## show annotation in the status line. this is particularly useful
## after the reset all button is pressed, deleting the contents of
## column 3. with this the annotation from the last fit is shown, so
## the previous best fit value can be known even afetr a reset
sub OnRowSelect {
my ($parent, $self, $event) = @_;
my $row = $event->GetRow;
my $grid = $parent->{grid};
my $name = $grid -> GetCellValue($row, 1);
$event->Skip, return if not $name;
$event->Skip, return if not defined($grid->{$name});
$parent->{statusbar}->SetStatusText($grid->{$name}->note);
$event->Skip;
};
sub OnCellChange {
my ($parent, $self, $event) = @_;
#print join("|", $parent, $self, $event), $/;
$parent->{uptodate} = 0;
$event->Skip;
};
######## Context menu section ############################################################
sub OnRangeSelect { # why is this necessary
my ($parent, $self, $event) = @_;
return unless $event->Selecting;
$parent->{grid}->SelectBlock($event->GetTopLeftCoords, $event->GetBottomRightCoords, 1);
$parent->{grid}->ForceRefresh;
$event->Skip;
};
sub PostGridMenu {
my ($parent, $self, $event, $is_label) = @_;
my $row = $event->GetRow;
return if ($row < 0);
$parent->{clicked_row} = $row;
my $this = $self->GetCellValue($row, 1) || "current row";
if ($is_label) {
$parent->{grid}->ClearSelection;
$parent->{grid}->SelectRow($row);
};
my @sel = grep {$parent->{grid}->IsInSelection($_,0)} (0 .. $parent->{grid}->GetNumberRows-1);
my $which = ($#sel > 0) ? 'selected' : $this;
@sel = sort {$a <=> $b} uniq(@sel, $row);
$parent->{selected} = \@sel;
my $change = Wx::Menu->new(q{});
my $ind = 100;
foreach my $t (@$types) {
next if ($t eq 'merge');
next if (Demeter->is_larch and ($t eq 'restrain'));
$change->Append($ind++, $t);
};
my $explain = Wx::Menu->new(q{});
$ind = 200;
foreach my $t (@$types) {
$explain->Append($ind++, $t);
};
## test for how many are selected
my $menu = Wx::Menu->new(q{});
$menu->Append (0, "Copy $which"); # or selected
$menu->Append (1, "Cut $which"); # or selected
$menu->Append (2, "Paste below $this"); # or selected
$menu->AppendSeparator;
$menu->Append (4, "Insert blank line above $this");
$menu->Append (5, "Insert blank line below $this");
$menu->AppendSeparator;
$menu->AppendSubMenu ($change, "Change $which to"); # or selected
$menu->Append (8, "Grab best fit for $which"); # or selected
$menu->Append (9, "Build restraint from $this");
$menu->Append (10, "Annotate $this");
$menu->AppendSeparator;
$menu->Append (12, "Find where $this is used");
$menu->Append (13, "Rename $this globally");
$menu->AppendSeparator;
$menu->AppendSubMenu ($explain, "Explain");
$self->SelectRow($row, 1);
$menu->Enable(9,0) if Demeter->is_larch;
if (($which =~ m{\A\s*\z}) or ($which eq 'current row')) {
$menu->Enable($_,0) foreach (0, 8, 9, 10, 12, 13);
};
$self->PopupMenu($menu, $event->GetPosition);
};
sub OnGridMenu {
my ($parent, $self, $event) = @_;
my $which = $event->GetId;
if (any {$which == $_} ($GUESS, $SET, $DEF, $LGUESS, $AFTER, $RESTRAIN, $PENALTY, $SKIP)) {
my $t = ($which == $GUESS) ? "guess"
: ($which == $DEF) ? "def"
: ($which == $SET) ? "set"
: ($which == $LGUESS) ? "lguess"
: ($which == $SKIP) ? "skip"
: ($which == $AFTER) ? "after"
: ($which == $RESTRAIN) ? "restrain"
: ($which == $PENALTY) ? "penalty"
: 'skip';
$parent->change($t);
} elsif ($which < 100) {
## 0 1 2 3 4 5 6 7 8 9 10 11 12 13
my @callbacks = qw(copy cut paste noop insert_above insert_below noop set_type grab build_restraint annotate noop find rename_global);
my $cb = $callbacks[$which];
$parent->$cb;
} elsif ($which > 199) { # explain submenu
my $i = $which - 200;
$parent->status($types->[$i] . ": " . $explain{$types->[$i]});
} else { # change type submenu
#++$which if (Demeter->is_larch and ($which >= 105));
my $i = $which - 100;
$parent->change($types->[$i]);
};
};
sub make_copy {
my ($parent) = @_;
my $grid = $parent->{grid};
my @list = ();
foreach my $r (@{ $parent->{selected} }) {
my $name = $grid -> GetCellValue($r, 1);
push @list, $grid->{$name};
};
$grid->{buffer} = \@list;
};
sub copy {
my ($parent) = @_;
my $grid = $parent->{grid};
$parent->make_copy;
my $s = ($#{ $parent->{selected} } > 0) ? q{s} : q{};
$parent->{grid}->ClearSelection;
$parent->status("Copied parameter$s ".join(", ", map {defined($_) and $_->name} @{ $grid->{buffer} }));
};
sub cut {
my ($parent) = @_;
my $grid = $parent->{grid};
$parent->make_copy;
foreach my $r (reverse @{ $parent->{selected} }) {
my $name = $grid -> GetCellValue($r, 1);
$grid->{$name}->dispense('process', 'erase', {items=>$name}) if defined($grid->{$name});
$grid->DeleteRows($r,1,1);
};
foreach my $g (@{ $grid->{buffer} }) { # object name and name in grid may be different
next if not defined($g);
$grid->{$g->name}->dispense('process', 'erase', {items=>$g->name});
$grid->{$g->name}->DEMOLISH;
};
while ($grid->GetNumberRows < 12) {
$grid->AppendRows(1,1);
$parent->initialize_row( $grid->GetNumberRows - 1 );
$parent->{grid}->ClearSelection;
};
my $s = ($#{$grid->{buffer}} > 0) ? q{s} : q{};
$parent->status("Cut parameter$s ".join(", ", map {defined($_) and $_->name} @{$grid->{buffer}}));
};
sub paste {
my ($parent) = @_;
my $row = $parent->{clicked_row};
foreach my $g (@{ $parent->{grid}->{buffer} }) {
next if not defined($g);
my $this = $parent->insert_below;
$parent->{grid} -> SetCellValue($this, 0, $g->gds);
$parent->{grid} -> SetCellValue($this, 1, $g->name);
$parent->{grid} -> SetCellValue($this, 2, $parent->display_value($g->mathexp));
my $text = q{};
if ($g->gds eq 'guess') {
$text = sprintf("%.5f %s %.5f", $g->bestfit, $PM, $g->error);
} elsif ($g->gds =~ m{(?:after|def|penalty|restrain)}) {
$text = sprintf("%.5f", $g->bestfit);
} elsif ($g->gds =~ m{(?:lguess|merge|set|skip)}) {
$text = q{};
};
$parent->{grid} -> SetCellValue($this, 3, $text);
$parent->set_type($this);
};
$parent->{grid}->ClearSelection;
$parent->status("perform paste");
};
sub insert_above {
my ($parent) = @_;
my $row = $parent->{clicked_row};
$parent->{grid}->InsertRows($row,1,1);
$parent->initialize_row($row);
$parent->{grid}->ClearSelection;
$parent->status("Inserted a row above row $row.");
return $row;
};
sub insert_below {
my ($parent) = @_;
my $row = $parent->{clicked_row};
$parent->{grid}->InsertRows($row+1,1,1);
$parent->initialize_row($row+1);
$parent->{grid}->ClearSelection;
$parent->status("Inserted a row below row $row.");
return $row+1;
};
sub grab {
my ($parent) = @_;
my $row = $parent->{clicked_row};
my $type = $parent->{grid}->GetCellValue($row,0);
my $name = $parent->{grid}->GetCellValue($row,1);
$parent->status("Grab aborted -- $name is not a guess parameter."), return if ($type ne 'guess');
my $bestfit = $parent->{grid}->GetCellValue($row,3);
$parent->status("$name does not have a best fit value."), return if ($bestfit =~ m{\A\s*\z});
$bestfit =~ s{$PMRE}{};
$parent->{grid}->SetCellValue($row, 2, $parent->display_value($bestfit));
$parent->{grid}->SetCellValue($row, 3, q{});
$parent->{grid}->ClearSelection;
$parent->{uptodate} = 0;
$parent->status("Using $bestfit as the initial guess for $name.");
};
sub build_restraint {
my ($parent) = @_;
my $row = $parent->{clicked_row};
my $target = $parent->find_next_empty_row;
my $name = $parent->{grid}->GetCellValue($row,1);
if ($name =~ m{\A\s*\z}) {
$parent->status("This row does not have a named parameter.");
return;
};
my $thisgds = $parent->tie_GDS_to_grid($row);
my $restraint_builder = Demeter::UI::Artemis::GDS::Restraint->new($parent, $name);
##$restraint_builder->{scale}->SetValue(2000);
## need to somehow get appropriate values for the three parameters into the dialog
my $result = $restraint_builder -> ShowModal;
if ($result == wxID_CANCEL) {
$parent->status("Building restraint canceled.");
return;
};
my $res = "res_" . $name;
my ($scale, $low, $high) = ($restraint_builder->{scale} -> GetValue,
$restraint_builder->{low} -> GetValue,
$restraint_builder->{high} -> GetValue);
$parent->{grid}->AppendRows(1,1);
$parent->initialize_row($target);
$parent->{grid}->SetCellValue($target, 0, "restrain");
$parent->{grid}->SetCellValue($target, 1, $res);
my $string = "$scale*penalty($name, $low, $high)";
$parent->{grid}->SetCellValue($target, 2, $string);
$parent->{grid}->Update;
$parent->set_type($target);
$parent->status("Set restraint $res = $string");
$parent->{grid}->ClearSelection;
return $parent;
};
sub annotate {
my ($parent) = @_;
my $row = $parent->{clicked_row};
my $thisgds = $parent->tie_GDS_to_grid($row);
$parent->status("Annotation aborted -- this row does not contain a named parameter."), return if not $thisgds;
my $name = $parent->{grid}->GetCellValue($row,1);
my $ted = Wx::TextEntryDialog->new( $parent, "Annotate $name", "Annotate $name", q{}, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$parent->status("Parameter annotation canceled.");
return;
};
my $note = $ted->GetValue;
$thisgds->annotate($note);
$parent->{grid}->ClearSelection;
$parent->{statusbar}->PushStatusText("$name : $note");
};
sub find {
my ($parent) = @_;
my $thisrow = $parent->{clicked_row};
my $this = $parent->{grid}->GetCellValue($thisrow,1);
my $text = $this . " is used\n";
my $count = 0;
## -------- find all GDS parameter math expressions using this parameter
foreach my $row (0 .. $parent->{grid}->GetNumberRows-1) {
next if ($row == $thisrow);
my $me = $parent->{grid}->GetCellValue($row,2);
if ($me =~ m{\b$this\b}) {
++$count;
$text .= sprintf("%4d. in the math expression for %s parameter '%s'\n",
$count,
$parent->{grid}->GetCellValue($row,0),
$parent->{grid}->GetCellValue($row,1));
};
};
## -------- find all path parameter math expressions using this parameter
foreach my $f (keys %Demeter::UI::Artemis::frames) {
next if ($f !~ m{\Adata});
foreach my $p (0 .. $Demeter::UI::Artemis::frames{$f}->{pathlist}->GetPageCount - 1) {
my $page = $Demeter::UI::Artemis::frames{$f}->{pathlist}->GetPage($p);
foreach my $k (qw(s02 e0 delr sigma2 ei third fourth)) {
my $pp = $page->{"pp_$k"}->GetValue;
if ($pp =~ m{\b$this\b}) {
++$count;
my $lab = $page->{idlabel}->GetLabel;
$lab =~ s{\A\(\(\(\s}{};
$lab =~ s{\s+(\)\)\))?\z}{};
$text .= sprintf("%4d. in the %s path parameter for path '%s%s' in data set '%s'\n",
$count, $k, $page->{fefflabel}->GetLabel, $lab,
$Demeter::UI::Artemis::frames{$f}->{name}->GetLabel);
};
};
};
};
## -------- report back
$parent->status("$this is not used in this project"), return if ($count == 0);
Demeter::UI::Common::ShowText->new($Demeter::UI::Artemis::frames{main}, $text, "Found $this") -> Show;
$parent->{grid}->ClearSelection;
};
sub rename_global {
my ($parent) = @_;
my $thisrow = $parent->{clicked_row};
my $this = $parent->{grid}->GetCellValue($thisrow,1);
my $count = 0;
## -------- get new name
my $ted = Wx::TextEntryDialog->new( $parent, "Rename $this to", "Rename $this", q{}, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$parent->status("Parameter renaming canceled.");
return;
};
my $newname = $ted->GetValue;
if ($newname =~ m{\A\s*\z}) {
$parent->status("Parameter renaming canceled.");
return
};
## -------- change this parameter's name
$parent->{grid}->SetCellValue($thisrow,1,$newname);
++$count;
## -------- modify all GDS math expressions containing this parameter
foreach my $row (0 .. $parent->{grid}->GetNumberRows-1) {
next if ($row == $thisrow);
my $me = $parent->{grid}->GetCellValue($row,2);
if ($me =~ m{\b$this\b}) {
$me =~ s{$this}{$newname}g;
$parent->{grid}->SetCellValue($row,2,$me);
++$count;
};
};
## -------- modify all path parameter math expressions containing this parameter
foreach my $f (keys %Demeter::UI::Artemis::frames) {
next if ($f !~ m{\Adata});
foreach my $p (0 .. $Demeter::UI::Artemis::frames{$f}->{pathlist}->GetPageCount - 1) {
my $page = $Demeter::UI::Artemis::frames{$f}->{pathlist}->GetPage($p);
foreach my $k (qw(s02 e0 delr sigma2 ei third fourth)) {
my $pp = $page->{"pp_$k"}->GetValue;
if ($pp =~ m{\b$this\b}) {
$pp =~ s{$this}{$newname}g;
$page->{"pp_$k"}->SetValue($pp);
++$count;
};
};
};
};
$parent->{grid}->ClearSelection;
$parent->status("Replaced $count instances of '$this' with '$newname'");
};
sub change {
my ($parent, $type) = @_;
my $row = $parent->{clicked_row};
foreach my $row (0 .. $parent->{grid}->GetNumberRows-1) {
next if not $parent->{grid}->IsInSelection($row,0);
$parent->{grid}->SetCellValue($row, 0, $type);
$parent->set_type($row);
};
#delete $parent->{clicked_row};
#$parent->{grid}->ClearSelection;
return $parent;
};
######## Other functionality ############################################################
sub StartDrag {
my ($parent, $self, $event) = @_;
my $row = $event->GetRow;
$event->Skip(1), return if ($row < 0);
my $param = $self->GetCellValue($row, 1);
$event->Skip(1), return if ($param =~ m{\A\s*\z});
my $source = Wx::DropSource->new( $self );
my $dragdata = Wx::TextDataObject->new($param);
$source->SetData( $dragdata );
$source->DoDragDrop(1);
};
sub fill_results {
my ($this, @gds) = @_;
my $grid = $this->{grid};
foreach my $row (0 .. $grid->GetNumberRows) {
next if not $grid->GetCellValue($row, 1);
foreach my $g (@gds) {
next if (lc($g->name) ne lc($grid->GetCellValue($row, 1)));
my $text;
if ($g->gds eq 'guess') {
$text = sprintf("%.5f %s %.5f", $g->bestfit, $PM, $g->error);
} elsif ($g->gds =~ m{(?:after|def|penalty|restrain)}) {
$text = sprintf("%.5f", $g->bestfit);
} elsif ($g->gds =~ m{(?:lguess|merge|set|skip)}) {
1;
};
$grid -> SetCellValue($row, 3, $text);
$grid -> Refresh;
};
};
$this->{uptodate} = 1;
};
package Demeter::UI::Artemis::GDS::TextDropTarget;
use strict;
use warnings;
use Wx qw( :everything );
use base qw(Wx::TextDropTarget);
sub new {
my $class = shift;
my $grid = shift;
my $parent = shift;
my $this = $class->SUPER::new( @_ );
$this->{GRID} = $grid;
$this->{PARENT} = $parent;
return $this;
};
sub OnDropText {
my ($this, $x, $y, $text) = @_;
my $grid = $this->{GRID};
my $parent = $this->{PARENT};
my $drop = $grid->YToRow($y) - 1;
($drop = 0) if ($drop < 0);
my $rownum = $drop + 1;
#print join("|", $y, $grid->YToRow($y), $drop, $rownum), $/;
#return 1;
$text =~ s{\A\s+}{}; # leading and training white space
$text =~ s{\s+\z}{};
return 0 if ($text eq $grid -> GetCellValue($drop, 1));
## text with white space
if ($text =~ m{\s}) {
$parent->status("guess/def/set parameters names cannot have white space ($text)");
## text starting with a number
} elsif ($text =~ m{\A\d}) {
$parent->status("guess/def/set parameters names cannot start with numbers ($text)");
## text with unallowed characters
} elsif ($text =~ m{[^a-z0-9_?]}i) {
$parent->status("guess/def/set parameters names can only use [a-z0-9_?] ($text)");
## parameter name already exists
} elsif ($parent->param_present($text)) {
my $ted = Wx::TextEntryDialog->new($parent, "Clone parameter $text as", "Clone parameter", $text, wxOK|wxCANCEL, Wx::GetMousePosition);
if ($ted->ShowModal == wxID_CANCEL) {
$parent->status("Canceling parameter cloning");
};
my $newname = $ted->GetValue;
if ($parent->param_present($newname)) {
$parent->status("A parameter named $text alredy exists");
return 0;
};
my ($type, $mathexp);
foreach my $row (0 .. $grid->GetNumberRows) {
if (lc($grid->GetCellValue($row, 1)) eq lc($text)) {
$type = $grid->GetCellValue($row, 0);
$mathexp = $grid->GetCellValue($row, 2);
last;
};
};
$parent->put_param($type, $newname, $mathexp);
## row already has a parameter in it
} elsif ($grid -> GetCellValue($drop, 1) !~ m{\A\s*\z}) {
my $yesno = Demeter::UI::Wx::VerbDialog->new($parent, -1,
sprintf("Replace %s with %s?", $grid -> GetCellValue($drop, 1), $text),
"Replace parameter?",
"Replace");
if ($yesno->ShowModal == wxID_NO) {
return 0;
} else {
$grid -> SetCellValue($drop, 1, $text);
$grid -> SetCellValue($drop, 2, 0);
$parent->{uptodate} = 0;
$parent->status("Dropped \"$text\" into row $rownum");
};
## just drop it
} else {
$grid -> SetCellValue($drop, 1, $text);
$grid -> SetCellValue($drop, 2, 0);
$parent->{uptodate} = 0;
$parent->status("Dropped \"$text\" into row $rownum");
};
return 1;
}
1;
=head1 NAME
Demeter::UI::Artemis::GDS - A Guess/Def/Set interface for Artemis
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
This module provides a simple grid-based widget for dealing with the
various kinds of GDS parameters. Right click, context menus are
generated appropriately on the grid and a toolbar is included on the
right side of the window.
=head1 CONFIGURATION
=head1 DEPENDENCIES
Demeter's dependencies are in the F<Build.PL> file.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
Finish functionality on context menus and toolbar, including locating
and globally changing parameters.
=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
|