Overview
| Comment: | Added xMTT to menubar. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
1edc1e6509721b5fb1e317d35ea47733 |
| User & Date: | geraint@users.sourceforge.net on 2002-07-12 15:18:55.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-07-14
| ||
| 19:02:51 | Improved handling of new plot windows - multiplot and other options affect the new window instead of always controlling the first. check-in: 1fcf787df7 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-07-12
| ||
| 15:18:55 | Added xMTT to menubar. check-in: 1edc1e6509 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 15:13:17 |
Added the ability to load and save gnuplot instructions to file. Added grid and co-ordinate options. Moved print option into menubar (under File). check-in: 91b064b13c user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2gnuplot_txt2wish
from [f6030bf2a3]
to [81550f7f79].
| ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | + + |
.menubar.file.menu add command -label "Open (Gnuplot plot file)" -command open_plotfile
.menubar.file.menu add command -label "Save (Gnuplot plot file)" -command save_plotfile
.menubar.file.menu add separator
.menubar.file.menu add command -label "Print (PostScript file)" -command print_postscript
.menubar.file.menu add separator
.menubar.file.menu add command -label "Quit" -command exit
button .menubar.xmtt -text "xMTT" -relief flat -command { exec xmtt }
button .menubar.quit -text "Quit" -relief flat -command exit
pack .menubar.file -expand false -fill x -side left
pack .menubar.xmtt -expand false -fill x -side left
pack .menubar.quit -expand false -fill x -side right
# status bar
canvas .statusbar
radiobutton .statusbar.states -text "States" -value states -variable view -relief solid -command { raise .cx }
radiobutton .statusbar.outputs -text "Outputs" -value outputs -variable view -relief solid -command { raise .cy }
|
| ︙ |