Overview
Comment: | Added print dialogue to allow user to select print filename. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
eacde8ae827b5adb835e3eaac0ea76b7 |
User & Date: | geraint@users.sourceforge.net on 2001-10-16 02:15:58 |
Other Links: | branch diff | manifest | tags |
Context
2001-10-26
| ||
01:01:49 | fixcc when rdae_is_dae (-cr). check-in: d7f4d9a527 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-10-16
| ||
02:15:58 | Added print dialogue to allow user to select print filename. check-in: eacde8ae82 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-10-15
| ||
14:29:50 | Added documentaton on [1:N] style port labels check-in: 3c25592597 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2gnuplot_txt2wish from [bbec88ea64] to [083c34c2f1].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + - + + + + + + + + | #!/bin/sh # Next line replaces shell with wish\\ exec wish "\$0" "\$@" ## main window wm title . "MTT Viewer: ${sys}" set parameter "" |
︙ | |||
39 40 41 42 43 44 45 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | - - + + | ## configure scrollbars .cx.sy configure -command ".cx.l yview" .cy.sy configure -command ".cy.l yview" .cx.l configure -yscrollcommand ".cx.sy set" .cy.l configure -yscrollcommand ".cy.sy set" ## bind lists |
︙ | |||
144 145 146 147 148 149 150 | 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 | - - - - - - + + + + + + + + + + + + + + + + + | proc "plot_var" "title column" { exec echo plot \"${dat2}\" using 1:\$column title \"\$title\" with lines > ${tmp} exec echo pause -1 >> ${tmp} exec gnuplot -title "\$title" ${tmp} & } ## print output |