/usr/lib/puredata/tcl/helpbrowser.tcl is in puredata-gui 0.48.1-3.
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 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 | package provide helpbrowser 0.2
namespace eval ::helpbrowser:: {
variable libdirlist
variable helplist
variable reference_count
variable reference_paths
variable doctypes "*.{pd,pat,mxb,mxt,help,txt,htm,html,pdf,c}"
variable maxcols
namespace export open_helpbrowser
namespace export refresh
}
################## help browser and support functions #########################
proc ::helpbrowser::open_helpbrowser {} {
if {[winfo exists .helpbrowser.frame]} {
wm deiconify .helpbrowser
raise .helpbrowser
} else {
toplevel .helpbrowser -class HelpBrowser
wm group .helpbrowser .
wm transient .helpbrowser
wm title .helpbrowser [_ "Help Browser"]
bind .helpbrowser <$::modifier-Key-w> "wm withdraw .helpbrowser"
if {$::windowingsystem eq "aqua"} {
.helpbrowser configure -menu $::dialog_menubar
}
# set the maximum number of child columns to create
set ::helpbrowser::maxcols 5
# TODO wrap frame in a canvas with a horz scrollbar,
# currently we simply add cols to the left until we reach max cols
wm resizable .helpbrowser 0 1
::helpbrowser::make_frame .helpbrowser
# hit up, down, or Tab after browser opens to focus on first listbox
bind .helpbrowser <KeyRelease-Up> "focus .helpbrowser.frame.root0"
bind .helpbrowser <KeyRelease-Down> "focus .helpbrowser.frame.root0"
position_over_window .helpbrowser .pdwindow
}
}
# check for deleting old listboxes
proc ::helpbrowser::check_destroy {level} {
set winlist list
set winlevel 0
foreach child [winfo children .helpbrowser.frame] {
regexp \\d+ $child winlevel
if {$winlevel >= $level} {
lappend winlist $child
}
unset -nocomplain winlevel
}
# check for [file readable]?
# requires Tcl 8.5 but probably deals with special chars better:
# destroy {*}[lrange [winfo children .helpbrowser.frame] [expr {2 * $count}] end]
if {[catch { eval destroy $winlist } errorMessage]} {
::pdwindow::error "helpbrowser: error destroying listbox\n"
}
}
# create the base frame and root listbox, build path references
proc ::helpbrowser::make_frame {mytoplevel} {
frame $mytoplevel.frame
pack $mytoplevel.frame -side top -fill both -expand 1
build_references
make_rootlistbox
}
# make the root listbox of the help browser using the pre-built lists
# set select to true to focus and select first item
proc ::helpbrowser::make_rootlistbox {{select true}} {
variable libdirlist
variable helplist
# exportselection 0 looks good, but selection gets easily out-of-sync
set current_listbox [listbox "[set b .helpbrowser.frame.root0]" -yscrollcommand "$b-scroll set" \
-highlightbackground white -highlightthickness 5 \
-highlightcolor white -selectborderwidth 0 \
-height 20 -width 24 -exportselection 0 -bd 0]
pack $current_listbox [scrollbar "$b-scroll" -command [list $current_listbox yview]] \
-side left -fill both -expand 1
# first show the directories (for easier navigation)
foreach item [lsort $libdirlist] {
$current_listbox insert end $item
}
# then show the (potentially) long list of patches
foreach item [lsort $helplist] {
$current_listbox insert end $item
}
bind $current_listbox <Button-1> \
"::helpbrowser::root_navigate %W %x %y"
bind $current_listbox <Double-ButtonRelease-1> \
"::helpbrowser::root_doubleclick %W %x %y"
bind $current_listbox <Key-Return> \
"::helpbrowser::root_return %W"
bind $current_listbox <Key-Right> \
"::helpbrowser::root_navigate_key %W true"
bind $current_listbox <KeyRelease-Up> \
"::helpbrowser::root_navigate_key %W false; break"
bind $current_listbox <KeyRelease-Down> \
"::helpbrowser::root_navigate_key %W false; break"
bind $current_listbox <$::modifier-Key-o> \
"::helpbrowser::root_doubleclick %W %x %y"
bind $current_listbox <FocusIn> \
"::helpbrowser::root_focusin %W 2"
}
# ask browser to refresh it's contents
proc ::helpbrowser::refresh {} {
variable refresh
if {[winfo exists .helpbrowser]} {
# refresh in place
destroy .helpbrowser.frame
::helpbrowser::make_frame .helpbrowser
if {[winfo viewable .helpbrowser]} {
focus .helpbrowser
}
}
# otherwise naturally refreshes on next open
}
# destroy a column
proc ::helpbrowser::scroll_destroy {window level} {
$window xview 0
check_destroy $level
}
# try to open a file or dir
proc ::helpbrowser::open_path {dir filename} {
if {[file exists [file join $dir $filename]] eq 0} {
return
}
::pdwindow::verbose 0 "menu_doc_open $dir $filename\n"
if { [catch {menu_doc_open $dir $filename} fid] } {
::pdwindow::error "Could not open $dir/$filename\n"
}
}
# navigate from one column to the right or update the second columns content
# set move to false if the cursor should stay in the current column
proc ::helpbrowser::root_navigate_key {window {move true}} {
variable reference_paths
if {[set item [$window get active]] eq {}} {
return
}
set filename $reference_paths($item)
if {[file isdirectory $filename]} {
set lbox [make_liblistbox $filename $move]
if {$move} {focus $lbox}
}
}
# open current file
proc ::helpbrowser::root_return {window} {
variable reference_paths
if {[set item [$window get active]] eq {}} {
return
}
set filename $reference_paths($item)
if {[file isfile $filename]} {
set dir [file dirname $reference_paths($item)]
set filename [file tail $reference_paths($item)]
open_path $dir $filename
}
}
# navigate into a library/directory from the root
proc ::helpbrowser::root_navigate {window x y} {
variable reference_paths
if {[set item [$window get [$window index "@$x,$y"]]] eq {}} {
return
}
set filename $reference_paths($item)
if {[file isdirectory $filename]} {
make_liblistbox $filename false
}
}
# double-click action to open the file or folder
proc ::helpbrowser::root_doubleclick {window x y} {
variable reference_paths
if {[set item [$window get [$window index "@$x,$y"]]] eq {}} {
return
}
set dir [file dirname $reference_paths($item)]
set filename [file tail $reference_paths($item)]
open_path $dir $filename
focus $window
}
# try closing child col & mark selection on first window focus
proc ::helpbrowser::root_focusin {window count} {
::helpbrowser::scroll_destroy $window $count
if {[$window size] != "0" && [$window curselection] == ""} {
$window selection set 0
root_navigate_key $window false
focus $window
}
}
# make the listbox to show the first level contents of a libdir
# set select to true to select first item & create child col
proc ::helpbrowser::make_liblistbox {dir {select true}} {
variable doctypes
check_destroy 1
# exportselection 0 looks good, but selection gets easily out-of-sync
set current_listbox [listbox "[set b .helpbrowser.frame.root1]" -yscrollcommand "$b-scroll set" \
-highlightbackground white -highlightthickness 5 \
-highlightcolor white -selectborderwidth 0 \
-height 20 -width 24 -exportselection 0 -bd 0]
pack $current_listbox [scrollbar "$b-scroll" -command [list $current_listbox yview]] \
-side left -fill both -expand 1
foreach item [lsort -dictionary [glob -directory $dir -nocomplain -types {d} -- *]] {
if {[glob -directory $item -nocomplain -types {f} -- $doctypes] ne "" ||
[glob -directory $item -nocomplain -types {d} -- *] ne ""} {
$current_listbox insert end "[file tail $item]/"
}
}
foreach item [lsort -dictionary [glob -directory $dir -nocomplain -types {f} -- \
*-{help,meta}.pd]] {
$current_listbox insert end [file tail $item]
}
$current_listbox insert end "___________________________"
foreach item [lsort -dictionary [glob -directory $dir -nocomplain -types {f} -- \
*.txt]] {
$current_listbox insert end [file tail $item]
}
bind $current_listbox <Button-1> \
"::helpbrowser::dir_navigate {$dir} 2 %W %x %y"
bind $current_listbox <Double-ButtonRelease-1> \
"::helpbrowser::dir_doubleclick {$dir} 2 %W %x %y"
bind $current_listbox <Key-Return> \
"::helpbrowser::dir_return {$dir} 2 %W"
bind $current_listbox <Key-Right> \
"::helpbrowser::dir_navigate_key {$dir} 2 %W"
bind $current_listbox <Key-Left> \
"::helpbrowser::dir_left 0 %W"
bind $current_listbox <KeyRelease-Up> \
"::helpbrowser::dir_navigate_key {$dir} 2 %W false; break"
bind $current_listbox <KeyRelease-Down> \
"::helpbrowser::dir_navigate_key {$dir} 2 %W false; break"
bind $current_listbox <FocusIn> \
"::helpbrowser::scroll_destroy %W 3"
# select first entry & update next col
if {$select && [$current_listbox size] != "0"} {
$current_listbox selection set 0
dir_navigate_key "$dir" 2 $current_listbox false
}
return $current_listbox
}
# set select to true to select first item & create child col
proc ::helpbrowser::make_doclistbox {dir count {select true}} {
variable doctypes
check_destroy $count
# exportselection 0 looks good, but selection gets easily out-of-sync
set current_listbox [listbox "[set b .helpbrowser.frame.root$count]" \
-yscrollcommand "$b-scroll set" \
-highlightbackground white -highlightthickness 5 \
-highlightcolor white -selectborderwidth 0 \
-height 20 -width 24 -exportselection 0 -bd 0]
pack $current_listbox [scrollbar "$b-scroll" -command "$current_listbox yview"] \
-side left -fill both -expand 1
foreach item [lsort -dictionary [glob -directory $dir -nocomplain -types {d} -- *]] {
$current_listbox insert end "[file tail $item]/"
}
foreach item [lsort -dictionary [glob -directory $dir -nocomplain -types {f} -- \
$doctypes]] {
$current_listbox insert end [file tail $item]
}
incr count
bind $current_listbox <Button-1> \
"::helpbrowser::dir_navigate {$dir} $count %W %x %y"
bind $current_listbox <Double-ButtonRelease-1> \
"::helpbrowser::dir_doubleclick {$dir} $count %W %x %y"
bind $current_listbox <Key-Return> \
"::helpbrowser::dir_return {$dir} $count %W"
bind $current_listbox <Key-Right> \
"::helpbrowser::dir_navigate_key {$dir} $count %W"
bind $current_listbox <Key-Left> \
"::helpbrowser::dir_left [expr $count - 2] %W"
bind $current_listbox <KeyRelease-Up> \
"::helpbrowser::dir_navigate_key {$dir} $count %W false; break"
bind $current_listbox <KeyRelease-Down> \
"::helpbrowser::dir_navigate_key {$dir} $count %W false; break"
bind $current_listbox <FocusIn> \
"::helpbrowser::scroll_destroy %W [expr $count + 1]"
# select first entry & update next col
if {$select && [$current_listbox size] != "0"} {
$current_listbox selection set 0
dir_navigate_key "$dir" $count $current_listbox false
}
return $current_listbox
}
# clear current selection & navigate one column to the left
proc ::helpbrowser::dir_left {count window} {
$window selection clear 0 end
focus .helpbrowser.frame.root$count
}
# navigate from one column to the right or update the second columns content
# set move to false if the cursor should stay in the current column
proc ::helpbrowser::dir_navigate_key {dir count window {move true}} {
variable maxcols
if {[set newdir [$window get active]] eq {}} {
return
}
if {$count > $maxcols} {return}
set dir_to_open [file join $dir $newdir]
if {[file isdirectory $dir_to_open]} {
set lbox [make_doclistbox $dir_to_open $count $move]
if {$move} {focus $lbox}
}
}
# open current file, open directories too if we're on the last col
proc ::helpbrowser::dir_return {dir count window} {
variable maxcols
if {[set newdir [$window get active]] eq {}} {
return
}
set dir_to_open [file join $dir $newdir]
if {$count <= $maxcols} {
if {[file isfile $dir_to_open]} {
open_path $dir $newdir
}
} else {
open_path $dir $newdir
}
}
# navigate into an actual directory
proc ::helpbrowser::dir_navigate {dir count window x y} {
variable maxcols
if {[set newdir [$window get [$window index "@$x,$y"]]] eq {}} {
return
}
if {$count > $maxcols} {return}
set dir_to_open [file join $dir $newdir]
if {[file isdirectory $dir_to_open]} {
make_doclistbox $dir_to_open $count false
}
}
# double-click action to open the file or folder
proc ::helpbrowser::dir_doubleclick {dir count window x y} {
if {[set filename [$window get [$window index "@$x,$y"]]] eq {}} {
return
}
open_path $dir $filename
focus $window
}
#------------------------------------------------------------------------------#
# build help browser trees
# TODO check file timestamp against timestamp of when tree was built
proc ::helpbrowser::findfiles {basedir pattern} {
set basedir [string trimright [file join [file normalize $basedir] { }]]
set filelist {}
# Look in the current directory for matching files, -type {f r}
# means ony readable normal files are looked at, -nocomplain stops
# an error being thrown if the returned list is empty
foreach filename [glob -nocomplain -type {f r} -path $basedir $pattern] {
lappend filelist $filename
}
foreach dirName [glob -nocomplain -type {d r} -path $basedir *] {
set subdirlist [findfiles $dirName $pattern]
if { [llength $subdirlist] > 0 } {
foreach subdirfile $subdirlist {
lappend filelist $subdirfile
}
}
}
return $filelist
}
proc ::helpbrowser::add_entry {reflist entry} {
variable libdirlist
variable helplist
variable reference_paths
variable reference_count
set entryname [file tail $entry]
# if we are checking libdirs, then check to see if there is already a
# libdir with that name that has been discovered in the path. If so, dump
# a warning. The trailing slash on $entryname is added below when
# $entryname is a dir
if {$reflist eq "libdirlist" && [lsearch -exact $libdirlist $entryname/] > -1} {
::pdwindow::error "WARNING: duplicate '$entryname' library found!\n"
::pdwindow::error " '$reference_paths($entryname/)' is active\n"
::pdwindow::error " '$entry' is duplicate\n"
incr reference_count($entryname)
append entryname "/ ($reference_count($entryname))"
} else {
set reference_count($entryname) 1
if {[file isdirectory $entry]} {
append entryname "/"
}
}
lappend $reflist $entryname
set reference_paths($entryname) $entry
}
proc ::helpbrowser::build_references {} {
variable libdirlist {" Pure Data/" "-------- Externals --------"}
variable helplist {}
variable reference_count
variable reference_paths
set searchpaths {}
array set reference_count {}
array set reference_paths [list " Pure Data/" $::sys_libdir/doc \
"-------- Externals --------" "" ]
# sys_staticpath (aka hardcoded)
foreach pathdir $::sys_staticpath {
if { ! [file isdirectory $pathdir]} {continue}
# fix the directory name, this ensures the directory name is in the
# native format for the platform and contains a final dir separator
set dir [string trimright [file join [file normalize $pathdir] { }]]
# add an entry for each subdir of this directory in the root column
foreach filename [glob -nocomplain -type d -path $dir "*"] {
lappend searchpaths $filename
}
# don't add core object references to root column
if {[string match "*doc/5.reference" $pathdir]} {continue}
# find stray help patches
foreach filename [glob -nocomplain -type f -path $dir "*-help.pd"] {
add_entry helplist $filename
}
}
# sys_searchpath (aka preferences)
foreach pathdir $::sys_searchpath {
set dir [string trimright [file normalize $pathdir]]
lappend searchpaths $dir
}
# remove any *exact* duplicates between user search paths and system paths
set searchpaths [lsort -unique $searchpaths]
# now add all search path entries to the Help browser's root column
foreach pathdir $searchpaths {
if { ! [file isdirectory $pathdir]} {continue}
add_entry libdirlist $pathdir
}
}
|