chiark / gitweb /
where-vessels: smash flags - set width of b string
[ypp-sc-tools.main.git] / yarrg / where-vessels
index 2f9e23775adca005210ff23708dc892f52546cd8..f4fee80f5229325a602e9e53b64cc1fc61377b93 100755 (executable)
@@ -449,10 +449,19 @@ proc show-report-decode {code} {
        default { report-set own "?? $notown" }
     }
 
-    if {[string length $xabbrev]} {
-       report-set xabbrev "Notes flags: $xabbrev"
+    global smash_xabbrev_map
+    if {[llength $smash_xabbrev_map]} {
+       if {[string length $xabbrev]} {
+           report-set xabbrev "(Flags: $xabbrev)"
+       } else {
+           report-set xabbrev "(No flags)"
+       }
     } else {
-       report-set xabbrev "No flags in notes"
+       if {[string length $xabbrev]} {
+           report-set xabbrev "Notes flags: $xabbrev"
+       } else {
+           report-set xabbrev "No flags in notes"
+       }
     }
 }
 
@@ -476,13 +485,13 @@ proc begin-control-grid {cw count rows inrow} {
     return $cw
 }
 
-proc make-control-grid-entry {cw kind ix ekind args} {
+proc make-control-grid-elem {cw kind ix ekind args} {
     upvar #0 control_grid_properties($cw) props
     manyset $props rows inrow
 
     set ew $cw.$ix
 
-    debug "MAKE-CONTROL-GRID-ENTRY $cw $kind $ix $ekind $rows $inrow $ew"
+    debug "MAKE-CONTROL-GRID-ELEM $cw $kind $ix $ekind $rows $inrow $ew"
 
     eval [list $ekind $ew] $args
 
@@ -526,7 +535,7 @@ proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues
     for {set ix 0} {$ix < $count} {incr ix} {
        set val [lindex $values $ix]
        set vars($val) [uplevel 1 $default_get]
-       set ew [make-control-grid-entry $cw ix $ix checkbutton \
+       set ew [make-control-grid-elem $cw ix $ix checkbutton \
                    -variable ${varsvn}($val) \
                    -font fixed \
                    -command [list redraw-needed c.-g.-tickbox $cw $val]]
@@ -535,7 +544,7 @@ proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues
            image { $ew configure -height 16 }
        }
     }
-    [make-control-grid-entry $cw final invert button] \
+    [make-control-grid-elem $cw final invert button] \
        configure \
        -text flip -command [list control-tickbox-flip $varsvn $flipvalues] \
        -padx 0 -pady 0
@@ -578,6 +587,9 @@ proc smash-code {code} {
        4 { set lockown 33 }
     }
 
+    global smash_xabbrev_map
+    set xabbrev [string map $smash_xabbrev_map $xabbrev]
+
     return [join [list $inport $smsize $subclass $lockown $xabbrev] _]
 }
 
@@ -593,6 +605,14 @@ proc smash-prepare {} {
        }
        set smash_sizemap($size) $mapto
     }
+
+    global smash_xabbrev_a smash_xabbrev_b smash_xabbrev_map
+    set smash_xabbrev_map {}
+    foreach a [split $smash_xabbrev_a ""] b [split $smash_xabbrev_b ""] {
+       if {![string length $a]} continue
+       lappend smash_xabbrev_map $a $b
+    }
+    debug "SMASH-PREPAE xabbrev_map=[list $smash_xabbrev_map]"
 }
 
 proc make-smasher {sma label ekind} {
@@ -603,7 +623,7 @@ proc make-radio-smasher {sma label variable descs rows inrow} {
     set w [make-smasher $sma $label frame]
     begin-control-grid $w [llength $descs] $rows $inrow
     for {set i 0} {$i < [llength $descs]} {incr i} {
-       make-control-grid-entry $w ix $i \
+       make-control-grid-elem $w ix $i \
            radiobutton \
            -variable $variable -value $i -command redraw-needed \
            -text [lindex $descs $i]
@@ -623,6 +643,18 @@ proc make-smashers {} {
 
     make-radio-smasher owner Owner smash_owner \
        {Show Yours? {For you} Lock Hide} 2 3
+
+    set cw [make-smasher xabbrev "Flags" frame]
+    foreach ix {1 3} ab {a b} width {14 12} {
+       set vn smash_xabbrev_$ab
+       global $vn
+       set $vn {}
+       entry $cw.$ix -textvariable $vn -width $width
+       trace add variable $vn write [list redraw-needed $vn]
+    }
+    set ix 0
+    foreach str {y/ / /d} { label $cw.$ix -text $str; incr ix 2 }
+    eval pack [lsort [winfo children $cw]] -side left
 }
 
 #---------- filtering ----------
@@ -1330,8 +1362,8 @@ proc show-report {islandname code} {
 
     .cp.report.list delete 0 end
 
-    foreach entry $k {
-       manyset $entry vid name owner
+    foreach elem $k {
+       manyset $elem vid name owner
        lappend owned($owner) $name
     }