- Timestamp:
- Dec 4, 2009 5:00:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/widplt
- Property rcs:date changed from 1999/10/11 19:46:43 to 2000/04/10 20:07:43
- Property rcs:lines changed from +6 -2 to +24 -6
- Property rcs:rev changed from 1.5 to 1.6
r111 r126 713 713 714 714 # create the graph 715 set box [graph .g] 716 Blt_ZoomStack $box 717 Blt_ActiveLegend $box 718 Blt_ClosestPoint $box 715 if [catch { 716 set box [graph .g] 717 } errmsg] { 718 tk_dialog .err "BLT Error" \ 719 "BLT Setup Error: could not create a graph (msg: $errmsg). \ 720 There is a problem with the setup of BLT on your system. 721 See the expgui.html file for more info." \ 722 error 0 "Quit" 723 exit 724 } 725 if [catch { 726 Blt_ZoomStack $box 727 Blt_ActiveLegend $box 728 Blt_ClosestPoint $box 729 } errmsg] { 730 tk_dialog .err "BLT Error" \ 731 "BLT Setup Error: could not access a Blt_ routine (msg: $errmsg). \ 732 The pkgIndex.tcl is probably not loading bltGraph.tcl. 733 See the expgui.html file for more info." \ 734 error 0 "Limp ahead" 735 } 719 736 $box config -title {} 720 737 $box yaxis config -title {FWHM} 721 738 setlegend $box $graph(legend) 739 722 740 #frame .a -bd 8 -relief groove 723 741 frame .a -bd 2 -relief groove
Note: See TracChangeset
for help on using the changeset viewer.