Overview
Comment: | Added xMTT to menubar. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d892e06ada51ac9ee2ac607fe95e6099 |
User & Date: | geraint@users.sourceforge.net on 2002-07-12 15:18:55 |
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: ae9d5867bb user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-07-12
| ||
15:18:55 | Added xMTT to menubar. check-in: d892e06ada 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: 22d10f4c89 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 | .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.quit -text "Quit" -relief flat -command exit pack .menubar.file -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 } | > > | 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 } |
︙ | ︙ |