Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use feature from psballoon to cleanup |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f867bb4b2d0c28a7839352fa8f42569a |
User & Date: | peter 2018-05-13 06:45:23.093 |
Context
2018-05-13
| ||
07:48 | Refactor fourway code check-in: 2f4c54f97a user: peter tags: trunk | |
06:45 | Use feature from psballoon to cleanup check-in: f867bb4b2d user: peter tags: trunk | |
06:41 | Adjustments to fourway UI. check-in: 9e8a4da8db user: peter tags: trunk | |
Changes
Changes to src/eskil.tcl.
︙ | ︙ | |||
3312 3313 3314 3315 3316 3317 3318 | catch {font delete myfont} font create myfont -family $::Pref(fontfamily) -size $::Pref(fontsize) fileLabel $top.l1 -textvariable ::eskil($top,leftLabel) fileLabel $top.l2 -textvariable ::eskil($top,rightLabel) ttk::label $top.le -textvariable ::widgets($top,eqLabel) -width 1 | > | > | | > | 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 | catch {font delete myfont} font create myfont -family $::Pref(fontfamily) -size $::Pref(fontsize) fileLabel $top.l1 -textvariable ::eskil($top,leftLabel) fileLabel $top.l2 -textvariable ::eskil($top,rightLabel) ttk::label $top.le -textvariable ::widgets($top,eqLabel) -width 1 addBalloon $top.le -fmt { * means external diff is running.\n = means files do not differ.\n ! means a large block is being processed.\n Blank means files differ. } # Main window if {$::eskil($top,view) eq "table"} { # Single frame for contents ttk::frame $top.ft -borderwidth 2 -relief sunken grid $top.l1 $top.le $top.l2 -row 1 -sticky news grid $top.ft - - -row 2 -sticky news |
︙ | ︙ |
Changes to src/plugin.tcl.
︙ | ︙ | |||
501 502 503 504 505 506 507 | lappend pArgv {*}$::eskil($top,pluginargv,$n) } # Look for declarations of command line options set t 0 set ::eskil($top,edit,opts,$n) $pOpts foreach {name flag doc} $pOpts { ttk::label $w.l$t -text $name | | | 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 | lappend pArgv {*}$::eskil($top,pluginargv,$n) } # Look for declarations of command line options set t 0 set ::eskil($top,edit,opts,$n) $pOpts foreach {name flag doc} $pOpts { ttk::label $w.l$t -text $name addBalloon $w.l$t -fmt $doc grid $w.l$t -sticky "w" -padx 3 -pady 3 if {$flag} { # Initialise if given. if {[lsearch -exact $pArgv $name] >= 0} { set ::eskil($top,edit,$name,$n) 1 # Move responsibility from global argv set ix [lsearch -exact $::eskil(argv) $name] |
︙ | ︙ |