1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
|
# Copyright (C) 1998, DGA - part of the Transcriber program
# distributed under the GNU General Public License (see COPYING file)
################################################################
namespace eval topic {
proc init {} {
variable nb 1
variable recent {}
variable list
catch {unset list}
}
# Register existing topics
proc register {} {
variable list
variable nb
global v
init
foreach topics [$v(trans,root) getChilds "element" "Topics"] {
foreach topic [$topics getChilds "element"] {
set name [$topic getAttr "desc"]
set id [$topic getAttr "id"]
set list($name) $id
incr nb
}
}
}
# Suppress ids without reference
proc purge {} {
variable list
variable recent
foreach {name id} [array get list] {
if {[llength [::xml::dtd::id::get_refs $id]] == 0} {
[::xml::dtd::id::get $id] delete
unset list($name)
lsuppress recent $id
}
}
DoModif "PURGE"
}
# Find id for existing topic name or returns ""
proc search_id {name} {
variable list
if {[catch {
set id $list($name)
}]} {
set id ""
}
return $id
}
# Create a new topic inside "Topics" sub-tree
# and returns its id, or find an already existing topic
proc create {name} {
variable nb
variable list
# Avoid empty name => empty ID
if {$name == ""} {
return ""
}
# Returns id of existing topic
if {![catch {
set id $list($name)
}]} {
return $id
}
# Search for a free id
while {1} {
set id "to$nb"
incr nb
if {[catch {::xml::dtd::id::get $id}]} break
}
# Create new topic inside sub-tree
global v
set topics [lindex [$v(trans,root) getChilds "element" "Topics"] 0]
if {$topics == ""} {
set topics [::xml::element "Topics" {} -begin $v(trans,root)]
}
::xml::element "Topic" [list "id" $id "desc" $name] -in $topics
# Keep list of topic names with associated id
set list($name) $id
return $id
}
# set/returns description for given topic
proc get_atts {id} {
return [[::xml::dtd::id::get $id] getAttr "desc"]
}
proc set_atts {id name} {
variable list
set item [::xml::dtd::id::get $id]
# Unregister previous name
set previous [$item getAttr "desc"]
DoModif [list "TOPIC" $id $previous]
if {$name != $previous} {
if {$name != ""} {
if {[info exists list($name)]} {
tk_messageBox -message "This name already exists" -type ok -icon error
error
}
set list($name) $id
}
if {$previous != ""} {
unset list($previous)
}
$item setAttr "desc" $name
# Update new name in editor and segmentation
foreach section [::xml::dtd::id::get_refs $id] {
if {[$section getType] == "Section"} {
::section::update $section
}
}
}
}
# Sorted list of all registred names
proc all_names {} {
variable list
return [lsort -dictionary [array names list]]
}
# Keep 5 most recently used ids
proc most_recent {id} {
variable recent
lsuppress recent $id
set recent [lrange [concat $id $recent] 0 4]
}
# Find topic from list
proc find {} {
variable id1 ""
variable occur ""
set w .tpc
catch {destroy $w}
toplevel $w
wm title $w [Local "Find topic"]
#
set w1 [frame $w.top -relief raised -bd 1]
pack $w1 -side top -fill both -expand true
variable lst [ListFrame $w1.lst [all_names]]
label $w1.lab -textvariable ::topic::occur -font $::v(font,mesg)
pack $w1.lab -side top -padx 3m -expand true
bind $lst <ButtonRelease-1> "::topic::find_lst"
#
set w2 [frame $w.bot -relief raised -bd 1]
pack $w2 -side bottom -fill both
button $w2.fin -text [Local "Find next"] -command {::topic::find_next} -default active
#button $w2.imp -text [Local "Import from file"] -command {::topic::import; ::topic::find_refr}
#button $w2.pur -text [Local "Remove unused"] -command {::topic::purge; ::topic::find_refr}
button $w2.clo -text [Local "Close"] -command "destroy $w"
pack $w2.fin $w2.clo -side left -padx 3m -pady 3m -fill x -expand true
bind $w <Return> "tkButtonInvoke $w2.fin"
bind $w <Escape> "tkButtonInvoke $w2.clo"
# Toplevel windows do not inherit '.' bindings
bind $w <Tab> "PlayOrPause; break"
bind $w <Control-Down> "::topic::find_next; break"
bind $w <Control-Up> "::topic::find_next -1; break"
variable idx ""
CenterWindow $w
}
proc find_refr {} {
variable lst
#purge
$lst delete 0 end
eval $lst insert end [all_names]
}
proc find_next {{dir 1}} {
variable id1
if {$id1 != ""} {
TextNextSection $dir $id1
}
}
proc find_lst {} {
variable lst
set idx [$lst curselection]
if {$idx == ""} return
variable id1 [search_id [$lst get $idx]]
if {$id1 == ""} {
$lst delete 0 end
eval $lst insert end [all_names]
} else {
set nb [llength [::xml::dtd::id::get_refs $id1]]
variable occur "$nb reference(s)"
}
}
# Import topics from another XML file
proc import {{filename ""}} {
# Get filename through dialog box
if {$filename == ""} {
global v
set types {
{"XML format" {.xml .trs .tpc}}
{"All files" {*}}
}
set filename [tk_getOpenFile -filetypes $types \
-initialdir $v(trans,path) -title "Import topics from file"]
if {$filename == ""} return
}
# Read topic file (with complex trick to avoid collision of ids)
set pref "import_"
::xml::dtd::id::set_prefix $pref
if {[catch {
set tpctree [::xml::parser::read_file $filename -keepdtd 1]
} err]} {
::xml::dtd::id::set_prefix ""
return -code error -errorinfo $::errorInfo "Couldn't import topics from $filename"
}
::xml::dtd::id::set_prefix ""
# Transform into list
set tpclst {}
foreach topic [$tpctree getElementChilds "Topic"] {
set name [$topic getAttr "desc"]
if {$name != "" && [search_id $name] == ""} {
lappend tpclst $name
}
}
$tpctree deltree
set tpclst [lsort -dictionary $tpclst]
# Select items from list
set f .imp
CreateModal $f "Import topic"
set w1 [frame $f.top -relief raised -bd 1]
pack $w1 -side top -fill both -expand true
variable lst2 [ListFrame $w1.lst $tpclst]
$lst2 selection set 0 end
#set w2 [frame $w1.but -relief raised -bd 1]
#pack $lst2 $w2 -side left -fill both -expand true
button $w1.all -text [Local "Select all"] -command "$lst2 selection set 0 end"
button $w1.no -text [Local "Deselect all"] -command "$lst2 selection clear 0 end"
pack $w1.all $w1.no -side left -padx 3m -pady 3m -fill x -expand true
$lst2 conf -selectmode multiple
global dial
OkCancelFrame $f.bot dial(result)
$f.bot.ok conf -command "set dial(sel) \[$lst2 curselection]; [$f.bot.ok cget -command]"
WaitForModal $f $f dial(result)
if {$dial(result) == "OK"} {
foreach i $dial(sel) {
create [lindex $tpclst $i]
}
}
return
}
}
namespace eval section {
variable list_atts {"type" "topic"}
proc get_atts {item} {
variable list_atts
foreach attr $list_atts {
lappend vals [$item getAttr $attr]
}
return $vals
}
proc short_name {section} {
foreach {type topic} [get_atts $section] {}
if {$topic != ""} {
return "[::topic::get_atts $topic]"
} else {
return "$type"
}
}
proc long_name {section} {
foreach {type topic} [get_atts $section] {}
if {$topic != ""} {
return "$type - [::topic::get_atts $topic]"
} else {
return "$type"
}
}
# Set attributes as a list for the given section
# and update display and undo infos
proc set_atts {section vals} {
# Register old section attributes for undo
DoModif [list "SECTION" $section [get_atts $section]]
# Modify transcription
variable list_atts
foreach attr $list_atts val $vals {
$section setAttr $attr $val
}
# Refresh display
update $section
}
proc update {section} {
global v
# Update segmentation
set name [short_name $section]
set nb [SearchSegmtId seg2 $section]
SetSegmtField seg2 $nb -text $name
# Update editor button
set name [long_name $section]
set button $v(tk,edit).[namespace tail $section]
$button config -text $name -width [max 20 [string length $name]]
}
# Called from menu or button : choose topic for given or current section
proc edit {{section ""}} {
global v
if {$section == ""} {
if {![info exist v(segmt,curr)]} return
set turn [[GetSegmtId $v(segmt,curr)] getFather]
set section [$turn getFather]
}
catch {
set_atts $section [choose [get_atts $section] $section]
}
}
# Let user choose a topic between existing ones
# called from ::section::edit; ChangeSegType
proc choose {atts {section ""}} {
variable id1 ""
variable nam
variable typ ""
variable state
variable ::topic::recent
foreach {typ id1} $atts {}
#
set w [CreateModal .sect "Edit section attributes"]
#
RadioFrame $w.type "Type" ::section::typ {"report" "filler" "nontrans"}
#
set w0 [frame $w.topic -relief raised -bd 1]
pack $w0 -side top -fill both -expand true
#
set w1 [frame $w0.choose]
pack $w1 -side top -fill both -expand true
#
set w2 [frame $w0.edit]
pack $w2 -side bottom -fill both -expand true
#
set w11 [frame $w1.rec]
pack $w11 -side left -fill both
set w111 [frame $w11.mid]
pack $w111 -side top -fill x
radiobutton $w111.none -text [Local "no topic"] -variable ::section::nam -value "" -command {::section::choose_empty}
pack $w111.none -side left -padx 3m -pady 3m
if {[llength $recent] > 0} {
label $w11.lab -text [Local "Recent topics"]
pack $w11.lab -side top -padx 3m -anchor w
foreach i [lrange $recent 0 2] {
radiobutton $w11.$i -text [string range [::topic::get_atts $i] 0 20] -variable ::section::id1 -value $i -command "::section::choose_recent $i"
pack $w11.$i -side top -anchor w -padx 3m
}
}
#
set w12 [frame $w1.lst]
pack $w12 -side right -fill both -expand 1
variable lst [ListFrame $w12.lst [::topic::all_names]]
$lst conf -height 6
bind $lst <ButtonRelease-1> "::section::choose_lst"
#
set w21 [frame $w2.lst]
pack $w21 -side top -fill both -expand 1
button $w21.new -text [Local "New topic"] -command {::section::choose_new}
variable edit [button $w21.edit -text [Local "Modify topic"] -command {::section::choose_edit}]
pack $w21.new $w21.edit -side left -padx 3m -pady 3m -expand true
variable ent [EntryFrame $w2.nam "Topic" ::section::nam]
variable watt $w2.nam
# Detect normal keypress when entry is disabled
foreach key {Control-Key Alt-Key Meta-Key Return Escape Tab} {
bind $ent <$key> {continue}
}
bind $ent <KeyPress> {set k %A; if {$k != "" && $::section::state == "choose"} {::section::choose_new}}
choose_recent $id1
if {$section != ""} {
set buttons {"OK" "Destroy" "Cancel"}
} else {
set buttons {"OK" "Cancel"}
}
set result [OkCancelModal $w $ent $buttons]
if {$result != "OK"} {
if {$result == "Destroy"} {
JoinTransTags 2 $section
}
return -code error cancel
}
if {$state == "new"} {
set id1 [::topic::create $nam]
} elseif {$state == "edit"} {
::topic::set_atts $id1 $nam
}
::topic::most_recent $id1
return [list $typ $id1]
}
proc choose_new {} {
variable id1 ""
variable nam ""
variable state "new"
variable edit
$edit conf -state disabled
variable lst
$lst selection clear 0 end
variable watt
FrameState $watt 1
variable ent
variable ::topic::nb
$ent insert insert "topic\#$nb"
$ent select range 0 end
focus $ent
}
proc choose_lst {} {
variable lst
catch {
choose_id [::topic::search_id [$lst get [$lst curselection]]]
}
}
proc choose_empty {} {
choose_recent ""
}
proc choose_recent {id} {
variable lst
if {$id != ""} {
set index [lsearch [::topic::all_names] [::topic::get_atts $id]]
$lst selection clear 0 end
$lst selection set $index
$lst see $index
} else {
$lst selection clear 0 end
}
choose_id $id
}
proc choose_edit {} {
variable state "edit"
variable watt
FrameState $watt 1
}
proc choose_id {id} {
variable id1 $id
variable nam ""
variable state "choose"
variable edit
if {$id != ""} {
set nam [::topic::get_atts $id]
$edit conf -state normal
} else {
$edit conf -state disabled
}
variable watt
FrameState $watt 0
}
}
|