/usr/share/tkrat2.2/addrlist.tcl is in tkrat 1:2.2cvs20100105-true-dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # addrlist.tcl --
#
# This file contains the code which handles the list of possible
# address auto completions.
#
#
# TkRat software and its included text is Copyright 1996-2004 by
# Martin Forssén
#
# The full text of the legal notice is contained in the file called
# COPYRIGHT, included with this distribution.
# Global state variables
set addrlist_loaded 0
# The address list is stored as a simple list like this:
# email1
# name1
# email2
# name2
# ...
# Unknown names are expressed as empty strings.
set addrlist {}
# AddrListAdd --
#
# Add addresses to the list of remembered addresses (if enabled)
#
# Arguments:
# addrs - One or more addresses to add
proc AddrListAdd {addrs} {
global option addrlist_loaded addrlist
if {0 == $option(num_autocomplete_addr)} {
return
}
set alist [RatSplitAdr $addrs]
if {0 == [llength $alist]} {
return
}
if {0 == $addrlist_loaded} {
LoadAddrList
}
set additions {}
foreach al $alist {
set a [RatCreateAddress -nodomain $al]
set name [$a get name]
set i [lsearch -exact $addrlist [$a get mail]]
if {$i != -1} {
if {"" == $name} {
set name [lindex $addrlist [expr $i+1]]
}
set addrlist [lreplace $addrlist $i [expr $i+1]]
}
lappend additions [$a get mail]
lappend additions $name
}
set addrlist [concat $additions [lrange $addrlist 0 [expr ($option(num_autocomplete_addr)-[llength $alist])*2-1]]]
}
# LoadAddrList --
#
# Load the address list from disk
#
# Arguments:
proc LoadAddrList {} {
global addrlist option addrlist_loaded
if {[file readable $option(ratatosk_dir)/addrlist]} {
set fh [open $option(ratatosk_dir)/addrlist r]
fconfigure $fh -encoding utf-8
set data [read $fh]
close $fh
eval $data
}
set addrlist_loaded 1
}
# SaveAddrList --
#
# Save the address list on disk
#
# Arguments:
proc SaveAddrList {} {
global addrlist option
set fh [open $option(ratatosk_dir)/addrlist w]
fconfigure $fh -encoding utf-8
puts $fh "set addrlist [list $addrlist]"
close $fh
}
# GetMatchingAddrs --
#
# Get any addresses whose first characters of the email or name portion
# matches the given argument (non case sensitive match)
#
# Arguments:
# match - String to match
# max - Maximum number of entries to return
proc GetMatchingAddrs {match max} {
global addrlist option addrlist_loaded
if {0 == $addrlist_loaded} {
LoadAddrList
}
return [RatGetMatchingAddrsImpl $addrlist $match $max]
}
############################################################################
# Routines for handling the popup of an autocomplete list
# AddrListInit --
#
# Initialize the popup list stuff
#
# Arguments:
# w - text widget to use
proc AddrListInit {w} {
upvar \#0 _addrList$w hd
set hd(start_pos) {}
set hd(showing) 0
bind $w <KeyRelease> {AddrListHandleKeyRelease %W}
bind $w <Destroy> {+;AddrListHandleDestroy %W}
bind $w <Return> {break}
foreach k {Up Down Return space} {
bind $w <KeyRelease-$k> {if [AddrListHandleListKey %W %K] break}
}
}
# AddrListHandleDestroy --
#
# Clean up when the parent is destroyed
#
# Arguments:
# w - The text widget
proc AddrListHandleDestroy {w} {
upvar \#0 _addrList$w hd
if {[info exists hd(w)]} {
destroy $hd(w)
}
unset hd
}
# AddrListAlias --
#
# Get matching aliases
#
# Arguments:
# match - String to match
# max - Maximum number of entries to return
proc AddrListAlias {match max} {
RatAlias list aliases nocase
set result {}
foreach n [lrange [array names aliases "$match*"] 0 [expr $max - 1]] {
set content [lindex $aliases($n) 2]
if {-1 != [string first "," $content]} {
lappend result $content
} else {
lappend result "[lindex $aliases($n) 1] <$content>"
}
}
return $result
}
# AddrListHandleKeyRelease --
#
# Handle KeyRelease events
#
# Arguments:
# w - The text widget
proc AddrListHandleKeyRelease {w} {
upvar \#0 _addrList$w hd
global option
if {!$option(show_autocomplete)} {
return
}
# Find start of the current address
set start [$w search -backwards "," insert "insert linestart"]
if {"" != $start} {
set start [$w index "$start +1c"]
} else {
set start [$w index "insert linestart"]
}
while {[$w compare $start < end+1c]} {
set c [$w get $start]
if {" " == $c || "\t" == $c} {
set start [$w index $start+1c]
} else {
break
}
}
set hd(end_pos) [$w search "," $start "$start lineend"]
if {"" == $hd(end_pos)} {
set hd(end_pos) [$w index "$start lineend"]
}
set addr [string trim [$w get $start $hd(end_pos)]]
if {"" == $addr} {
if {[info exists hd(w)]} {
wm withdraw $hd(w)
set hd(showing) 0
set hd(start_pos) {}
}
return
}
set matches [GetMatchingAddrs $addr \
$option(automplete_addr_num_suggestions)]
set rem [expr $option(automplete_addr_num_suggestions) - [llength $matches]]
if {$rem > 0} {
foreach a [AddrListAlias $addr $rem] {
lappend matches $a
}
}
if {0 == [llength $matches]} {
if {[info exists hd(w)]} {
wm withdraw $hd(w)
set hd(showing) 0
set hd(start_pos) {}
}
return
}
if {$start != $hd(start_pos)} {
if {![info exists hd(w)]} {
AddrListCreatePopup $w
}
set bbox [$w bbox $start]
set x [expr [lindex $bbox 0] + [winfo rootx $w]]
set y [expr [lindex $bbox 1] + [lindex $bbox 3] + [winfo rooty $w]]
wm geometry $hd(w) +$x+$y
wm deiconify $hd(w)
set hd(showing) 1
}
set hd(start_pos) $start
$hd(list) delete 0 end
foreach m $matches {
$hd(list) insert end $m
}
if {[$hd(list) size] > 10} {
$hd(list) configure -height 10
if {![winfo ismapped $hd(scroll)]} {
pack $hd(scroll) -side right -fill y
}
} else {
$hd(list) configure -height [llength $matches]
if {[winfo ismapped $hd(scroll)]} {
pack forget $hd(scroll)
}
}
}
# AddrListCreatePopup --
#
# Create the popup window
#
# Arguments:
# w - The text widget
proc AddrListCreatePopup {w} {
upvar \#0 _addrList$w hd
global idCnt
set hd(w) .addrlist[incr idCnt]
toplevel $hd(w) -bd 1 -class TkRat
wm overrideredirect $hd(w) 1
wm transient $hd(w) $w
wm positionfrom $hd(w) program
wm withdraw $hd(w)
set hd(list) $hd(w).l
set hd(scroll) $hd(w).s
scrollbar $hd(scroll) \
-relief raised \
-bd 1 \
-highlightthickness 0 \
-command "$hd(list) yview"
listbox $hd(list) \
-width 40 \
-relief raised \
-bd 1 \
-exportselection false \
-selectmode single \
-highlightthickness 0 \
-selectmode single \
-yscroll "$hd(scroll) set"
pack $hd(list) -expand 1 -fill both -side left
bind $hd(w) <FocusIn> [list focus $w]
bind $hd(list) <<ListboxSelect>> [list AddrListSelect $w]
}
# AddrListSelect --
#
# Handle list selection events
#
# Arguments:
# w - The text widget
proc AddrListSelect {w} {
upvar \#0 _addrList$w hd
set sel [$hd(list) curselection]
if {1 != [llength $sel]} {
return
}
$w mark set insert $hd(end_pos)
$w delete $hd(start_pos) $hd(end_pos)
$w insert $hd(start_pos) [$hd(list) get $sel]
$w see insert
wm withdraw $hd(w)
set hd(showing) 0
set hd(start_pos) {}
focus $w
}
# AddrListClose --
#
# Close the popup window. Returns '1' if the close event can be ignored
#
# Arguments:
# w - The text widget
# force - Force closure of address list window
proc AddrListClose {w force} {
upvar \#0 _addrList$w hd
set f [focus]
if {!$force
&& [info exists hd(w)]
&& ($f == $hd(list) || $f == $hd(list) || $f == $hd(list))} {
return 1
}
if {$force
|| ([info exists hd(w)]
&& $f != ""
&& $f != $hd(list)
&& $f != $hd(w)
&& $f != $w)} {
if {[info exists hd(w)]} {
wm withdraw $hd(w)
set hd(showing) 0
}
set hd(start_pos) {}
}
return 0
}
# AddrListHandleListUp --
#
# Handle cursor keys in text widget. If listbox is active move selection.
# Return 1 if the event was handled here
#
# Arguments:
# w - The text widget
# key - Key pressed (Up, Down, Return or space)
proc AddrListHandleListKey {w key} {
upvar \#0 _addrList$w hd
# Do not do anything if popup is not shown
if {!$hd(showing)} {
return 0
}
set sel [$hd(list) curselection]
if {"space" == $key || "Return" == $key} {
AddrListSelect $w
} elseif {"Down" == $key} {
if {"" == $sel} {
set sel 0
} elseif {$sel < [expr [$hd(list) size]-1]} {
$hd(list) selection clear $sel
incr sel
}
$hd(list) selection set $sel
} elseif {"" != $sel} {
$hd(list) selection clear $sel
if {0 != $sel} {
incr sel -1
$hd(list) selection set $sel
}
}
return 1
}
|