/usr/lib/puredata/tcl/pdtk_text.tcl is in puredata-gui 0.46.7-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 | package provide pdtk_text 0.1
# these procs are currently all in the global namespace because all of them
# are used by 'pd' and therefore need to be in the global namespace.
# create a new text object (ie. obj, msg, comment)
proc pdtk_text_new {tkcanvas tags x y text font_size color} {
$tkcanvas create text $x $y -tags $tags -text $text -fill $color \
-anchor nw -font [get_font_for_size $font_size]
set mytag [lindex $tags 0]
$tkcanvas bind $mytag <Home> "$tkcanvas icursor $mytag 0"
$tkcanvas bind $mytag <End> "$tkcanvas icursor $mytag end"
# select all
$tkcanvas bind $mytag <Triple-ButtonRelease-1> \
"pdtk_text_selectall $tkcanvas $mytag"
if {$::windowingsystem eq "aqua"} { # emacs bindings for Mac OS X
$tkcanvas bind $mytag <Control-a> "$tkcanvas icursor $mytag 0"
$tkcanvas bind $mytag <Control-e> "$tkcanvas icursor $mytag end"
}
}
# change the text in an existing text box
proc pdtk_text_set {tkcanvas tag text} {
$tkcanvas itemconfig $tag -text $text
}
# paste into an existing text box by literally "typing" the contents of the
# clipboard, i.e. send the contents one character at a time via 'pd key'
proc pdtk_pastetext {tkcanvas} {
if { [catch {set pdtk_pastebuffer [clipboard get]}] } {
# no selection... do nothing
} else {
for {set i 0} {$i < [string length $pdtk_pastebuffer]} {incr i 1} {
set cha [string index $pdtk_pastebuffer $i]
scan $cha %c keynum
pdsend "[winfo toplevel $tkcanvas] key 1 $keynum 0"
}
}
}
# select all of the text in an existing text box
proc pdtk_text_selectall {tkcanvas mytag} {
if {$::editmode([winfo toplevel $tkcanvas])} {
$tkcanvas select from $mytag 0
$tkcanvas select to $mytag end
}
}
# de/activate a text box for editing based on $editing flag
proc pdtk_text_editing {mytoplevel tag editing} {
set tkcanvas [tkcanvas_name $mytoplevel]
if {$editing == 0} {selection clear $tkcanvas}
$tkcanvas focus $tag
set ::editingtext($mytoplevel) $editing
}
|