--- capa/capa51/GUITools/gradesubjective.tcl 1999/12/07 19:10:47 1.7 +++ capa/capa51/GUITools/gradesubjective.tcl 1999/12/13 21:38:44 1.9 @@ -20,6 +20,7 @@ proc gradeSubjective {} { gets $fileid aline gets $fileid aline set gSubj(max) [lindex [split $aline {}] [expr $gSubj(quest) - 1]] + set gSubj(keywords) "" createGradeSubjWindow } @@ -128,6 +129,9 @@ proc createGradeSubjWindow {} { pack $gSubj(keyword) $right.scroll -side left pack configure $right.scroll -fill y + bindtags $gSubj(keyword) "$gSubj(keyword) all" + bind $gSubj(keyword) <1> "[bind Text <1>][bind Text ]" + button $left.add -command "subjAddKeyword" -text "Add" button $left2.addsp -command "subjAddKeywordSpelling" -text "Add Sp" button $left.delete -command "subjDeleteKeyword" -text "Delete" @@ -311,6 +315,7 @@ proc subjInit {} { set gSubj(togo) [llength $gSubj(stunums)] subjNext } + subjUpdateKeywords after 300 updateSecCount } @@ -391,6 +396,7 @@ proc subjNext {} { subjInsertIds $gSubj(done.$id.idlist) update idletasks } + subjUpdateResponse subjPicts } @@ -933,11 +939,208 @@ proc subjViewResponse {} { } ########################################################### +# subjUpdateResponse +########################################################### +########################################################### +########################################################### +proc subjUpdateResponse {} { + global gSubj + + $gSubj(response) tag delete keyword + $gSubj(response) tag configure keyword -background green + set startindex 0.0 + set lastindex [$gSubj(response) index end] + while { 1 } { + set endindex [$gSubj(response) index "$startindex wordend"] +# puts "$startindex -> $endindex" + set word [string trim [string toupper [$gSubj(response) get $startindex $endindex]]] + if { $word != "" } { + # puts "Word :$word:" + foreach keyword $gSubj(keywords) { + set keyword [string toupper [lindex $keyword 1]] + if { [lsearch -exact $keyword $word] != -1 } { + $gSubj(response) tag add keyword $startindex $endindex + } + } + # puts [$gSubj(response) index "$endindex+1c"] + # puts [$gSubj(response) index "$endindex wordstart"] + # puts [$gSubj(response) index "$endindex+1c wordstart"] + + # set startindex [$gSubj(response) index "$endindex + 1c"] + } + set startindex $endindex + if { $startindex == $lastindex } { break } + } +} + +########################################################### +# subjUpdateKeywords +########################################################### +########################################################### +########################################################### +proc subjUpdateKeywords {} { + global gSubj + $gSubj(keyword) delete 0.0 end + set lokeyword "" +# puts $gSubj(keywords) + foreach keyword $gSubj(keywords) { lappend lokeyword [lindex $keyword 0] } + if { $lokeyword == "" } { return } + set lokeyword [lsort $lokeyword] + set max 0 + foreach key $lokeyword { + if { [string length $key] > $max } { set max [string length $key] } + } + incr max + set numcol [expr 60/$max] + set end [llength $lokeyword] + set lastline 0 + for { set i 0 } { $i < $end } { incr i } { + set line [expr $i/$numcol] + set col [expr $i%$numcol*$max] +# puts $line.$col + $gSubj(keyword) insert end [format "%-[set max]s" [lindex $lokeyword $i]] + if {($col + (2*$max)) > 60} { +# puts "Putting in newlne" + $gSubj(keyword) insert end "\n" + set lastline $line + } + } + subjUpdateResponse +} + +########################################################### # subjAddKeyword ########################################################### ########################################################### ########################################################### proc subjAddKeyword {} { - global gSubj gUniqueNumber + global gSubj + + if { "" == [set newword [getString [winfo toplevel $gSubj(keyword)] "Enter a new keyword" nospace ]]} { + return + } + set i 0 + foreach keyword $gSubj(keywords) { + if {-1 != [lsearch $keyword $newword]} { break } + incr i + } + if { $i >= [llength $gSubj(keywords)] } { + lappend gSubj(keywords) [list $newword [list $newword]] + subjUpdateKeywords + } +} + +########################################################### +# subjAddKeywordSpelling +########################################################### +########################################################### +########################################################### +proc subjAddKeywordSpelling {} { + global gSubj + + if { [catch {set word [$gSubj(keyword) get sel.first sel.last]}]} { return } + if { "" == [set newspell [getString [winfo toplevel $gSubj(keyword)] "Enter a new spelling for $word" nospace ]]} { + return + } + set i 0 + foreach keyword $gSubj(keywords) { + if {-1 != [lsearch $keyword $word]} { break } + incr i + } + + set gSubj(keywords) [lreplace $gSubj(keywords) $i $i \ + [list $word [concat [lindex $keyword 1] $newspell]]] + subjUpdateKeywords +} + +########################################################### +# subjSeeKeyword +########################################################### +########################################################### +########################################################### +proc subjSeeKeyword {} { + global gSubj gPromptMC + + if { [catch {set word [$gSubj(keyword) get sel.first sel.last]}]} { return } + set i 0 + foreach keyword $gSubj(keywords) { + if {-1 != [lsearch $keyword $word]} { break } + incr i + } + + set which $i + set setWin [toplevel $gSubj(keyword).keyword] + + set msgFrame [frame $setWin.msgFrame] + set valFrame [frame $setWin.valFrame] + set buttonFrame [frame $setWin.buttonFrame] + pack $msgFrame $valFrame $buttonFrame + pack configure $valFrame -expand 1 -fill both + + message $msgFrame.msg -text "Alternate spellings for [lindex $keyword 0]" \ + -aspect 3000 + pack $msgFrame.msg + set maxWidth 1 + foreach choice [lindex $keyword 1] { + if {[string length $choice] > $maxWidth} {set maxWidth [string length $choice]} + } + listbox $valFrame.val -width [expr $maxWidth + 2] \ + -yscrollcommand "$valFrame.scroll set" -selectmode single + scrollbar $valFrame.scroll -command "$valFrame.val yview" + pack $valFrame.val $valFrame.scroll -side left + pack configure $valFrame.val -expand 1 -fill both + pack configure $valFrame.scroll -expand 0 -fill y + foreach choice [lsort [lrange [lindex $keyword 1] 1 end]] { + $valFrame.val insert end $choice + } + + button $buttonFrame.select -text "Delete" -command { set gPromptMC(ok) 1 } + frame $buttonFrame.spacer -width 10 + button $buttonFrame.cancel -text "Dismiss" -command { set gPromptMC(ok) 0 } + pack $buttonFrame.select $buttonFrame.cancel -side left + + bind $setWin "set gPromptMC(ok) 0" + Centre_Dialog $setWin default + update idletasks + focus $setWin + capaRaise $setWin + capaGrab $setWin + while { 1 } { + update idletasks + vwait gPromptMC(ok) + if { $gPromptMC(ok) == 0 } { break } + set select [$valFrame.val curselection] + if { $select != "" } { + $valFrame.val delete $select + } + } + set spellings [lindex $keyword 0] + for {set i 0} {$i < [$valFrame.val index end]} { incr i } { + lappend spellings [$valFrame.val get $i] + } + capaGrab release $setWin + destroy $setWin + + set gSubj(keywords) [lreplace $gSubj(keywords) $which $which \ + [list [lindex $keyword 0] $spellings ]] + + subjUpdateKeywords } + +########################################################### +# subjDeleteKeyword +########################################################### +########################################################### +########################################################### +proc subjDeleteKeyword {} { + global gSubj + + if { [catch {set word [$gSubj(keyword) get sel.first sel.last]}]} { return } + set newkeyword "" + foreach keyword $gSubj(keywords) { + if {-1 == [lsearch $keyword $word]} { lappend newkeyword $keyword } + } + set gSubj(keywords) $newkeyword + subjUpdateKeywords +} \ No newline at end of file