- Timestamp:
- Dec 6, 2011 2:40:30 PM (11 years ago)
- Location:
- branches/sandbox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/sandbox/addcmds.tcl
r1163 r1182 1056 1056 $np.d1.m2 config -text {} 1057 1057 $np.b1 config -state disabled 1058 $np.b1a config -state disabled 1058 1059 grid forget $np.l3 $np.e3 $np.cb3 $np.cb4 $np.cb5 $np.bank $np.f6a 1059 1060 grid $np.dl1 -column 0 -row 18 … … 1097 1098 } 1098 1099 $np.b1 config -state normal 1100 $np.b1a config -state normal 1099 1101 grid $np.bank -column 2 -row 3 -columnspan 7 -sticky ew 1100 1102 grid $np.f6a -column 4 -row 18 -rowspan 3 -
branches/sandbox/dumpexp.tcl
r930 r1182 121 121 grab . 122 122 focus . 123 set phase {} 123 124 tkwait variable phase 124 125 } -
branches/sandbox/expgui
r1173 r1182 541 541 loadexp $newexpfile 542 542 543 # switch to the appropriate 1st page544 #StageTabUse545 SetStartPanel546 547 543 # reset the phase selection 548 544 set expgui(curPhase) {} … … 554 550 set expgui(curhist) {} 555 551 } 556 # if {[CountHistory] > 100} { 557 # DeleteHistoryRecords "This .EXP file has [CountHistory] history records\nErasing most will speed EXPGUI" 558 # } 552 # switch to the appropriate 1st page 553 #StageTabUse 554 SetStartPanel 559 555 } 560 556 … … 841 837 } 842 838 set ans [ReloadExpMsg [file tail $expgui(expfile)] $expgui(changed)] 843 839 # did a load already occur while we were waiting for an answer? 840 if {[file mtime $expgui(expfile)] == $expgui(expModifiedLast)} { 841 return 842 } 844 843 if {$ans == 0} { 845 844 loadexp $expgui(expfile) -
branches/sandbox/gsascmds.tcl
r1172 r1182 604 604 } 605 605 606 # for use in debugging -- how did I get here! 607 proc ShowCallStack {} { 608 puts "\n================== ShowCallStack ===============" 609 set n [info level] 610 incr n -1 611 while {$n > 0} { 612 puts "level $n: [info level $n]" 613 incr n -1 614 } 615 } 606 616 #------------------------------------------------------------------------------ 607 617 # profile/symmetry routines … … 2787 2797 2788 2798 proc ExplainEXPerror {parent message file} { 2799 #ShowCallStack 2789 2800 if {$parent == "."} { 2790 2801 set w .experr -
branches/sandbox/liveplot
r1180 r1182 626 626 tkwait window $bx 627 627 afterputontop 628 plotdata 629 } 630 631 proc SetHistTitle {} { 632 set ::plot_title [histinfo $::hst file] 628 633 plotdata 629 634 } … … 2338 2343 .a.file.menu add command -label "Set Plot Title" \ 2339 2344 -command SetTitle 2345 .a.file.menu add command -label "Set Plot Title to data file" \ 2346 -command SetHistTitle 2340 2347 .a.file.menu add cascade -label "Export plot" -menu .a.file.menu.export 2341 2348 menu .a.file.menu.export
Note: See TracChangeset
for help on using the changeset viewer.