/usr/lib/puredata/tcl/pd_guiprefs.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 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 | #
# Copyright (c) 1997-2009 Miller Puckette.
# Copyright (c) 2011 Yvan Volochine.
#(c) 2008 WordTech Communications LLC. License: standard Tcl license, http://www.tcl.tk/software/tcltk/license.html
package provide pd_guiprefs 0.1
namespace eval ::pd_guiprefs:: {
namespace export init
namespace export write_recentfiles
namespace export update_recentfiles
}
# FIXME should these be globals ?
set ::recentfiles_key ""
set ::recentfiles_domain ""
#################################################################
# global procedures
#################################################################
# ------------------------------------------------------------------------------
# init preferences
#
proc ::pd_guiprefs::init {} {
switch -- $::windowingsystem {
"aqua" { init_aqua }
"win32" { init_win }
"x11" { init_x11 }
}
# assign gui preferences
# osx special case for arrays
set arr [expr { $::windowingsystem eq "aqua" }]
set ::recentfiles_list ""
catch {set ::recentfiles_list [get_config $::recentfiles_domain \
$::recentfiles_key $arr]}
}
proc ::pd_guiprefs::init_aqua {} {
# osx has a "Open Recent" menu with 10 recent files (others have 5 inlined)
set ::recentfiles_domain org.puredata
set ::recentfiles_key "NSRecentDocuments"
set ::total_recentfiles 10
}
proc ::pd_guiprefs::init_win {} {
# windows uses registry
set ::recentfiles_domain "HKEY_CURRENT_USER\\Software\\Pure-Data"
set ::recentfiles_key "RecentDocs"
}
proc ::pd_guiprefs::init_x11 {} {
# linux uses ~/.config/pure-data dir
set ::recentfiles_domain "~/.config/pure-data"
set ::recentfiles_key "recentfiles.conf"
prepare_configdir
}
# ------------------------------------------------------------------------------
# write recent files
#
proc ::pd_guiprefs::write_recentfiles {} {
write_config $::recentfiles_list $::recentfiles_domain $::recentfiles_key true
}
# ------------------------------------------------------------------------------
# this is called when opening a document (wheredoesthisshouldgo.tcl)
#
proc ::pd_guiprefs::update_recentfiles {afile} {
# remove duplicates first
set index [lsearch -exact $::recentfiles_list $afile]
set ::recentfiles_list [lreplace $::recentfiles_list $index $index]
# insert new one in the beginning and crop the list
set ::recentfiles_list [linsert $::recentfiles_list 0 $afile]
set ::recentfiles_list [lrange $::recentfiles_list 0 $::total_recentfiles]
::pd_menus::update_recentfiles_menu
}
#################################################################
# main read/write procedures
#################################################################
# ------------------------------------------------------------------------------
# get configs from a file or the registry
#
proc ::pd_guiprefs::get_config {adomain {akey} {arr}} {
switch -- $::windowingsystem {
"aqua" { set conf [get_config_aqua $adomain $akey $arr] }
"win32" { set conf [get_config_win $adomain $akey $arr] }
"x11" { set conf [get_config_x11 $adomain $akey $arr] }
}
return $conf
}
# ------------------------------------------------------------------------------
# write configs to a file or to the registry
# $arr is true if the data needs to be written in an array
#
proc ::pd_guiprefs::write_config {data {adomain} {akey} {arr false}} {
switch -- $::windowingsystem {
"aqua" { write_config_aqua $data $adomain $akey $arr }
"win32" { write_config_win $data $adomain $akey $arr }
"x11" { write_config_x11 $data $adomain $akey }
}
}
#################################################################
# os specific procedures
#################################################################
# ------------------------------------------------------------------------------
# osx: read a plist file
#
proc ::pd_guiprefs::get_config_aqua {adomain {akey} {arr false}} {
if {![catch {exec defaults read $adomain $akey} conf]} {
if {$arr} {
set conf [plist_array_to_tcl_list $conf]
}
} else {
# initialize NSRecentDocuments with an empty array
exec defaults write $adomain $akey -array
set conf {}
}
return $conf
}
# ------------------------------------------------------------------------------
# win: read in the registry
#
proc ::pd_guiprefs::get_config_win {adomain {akey} {arr false}} {
package require registry
if {![catch {registry get $adomain $akey} conf]} {
return [expr {$conf}]
} else {
return {}
}
}
# ------------------------------------------------------------------------------
# linux: read a config file and return its lines splitted.
#
proc ::pd_guiprefs::get_config_x11 {adomain {akey} {arr false}} {
set filename [file join $adomain $akey]
set conf {}
if {
[file exists $filename] == 1
&& [file readable $filename]
} {
set fl [open $filename r]
while {[gets $fl line] >= 0} {
lappend conf $line
}
close $fl
}
return $conf
}
# ------------------------------------------------------------------------------
# osx: write configs to plist file
# if $arr is true, we write an array
#
proc ::pd_guiprefs::write_config_aqua {data {adomain} {akey} {arr false}} {
# FIXME empty and write again so we don't loose the order
if {[catch {exec defaults write $adomain $akey -array} errorMsg]} {
::pdwindow::error "write_config_aqua $akey: $errorMsg"
}
if {$arr} {
foreach filepath $data {
set escaped [escape_for_plist $filepath]
exec defaults write $adomain $akey -array-add "$escaped"
}
} else {
set escaped [escape_for_plist $data]
exec defaults write $adomain $akey '$escaped'
}
}
# ------------------------------------------------------------------------------
# win: write configs to registry
# if $arr is true, we write an array
#
proc ::pd_guiprefs::write_config_win {data {adomain} {akey} {arr false}} {
package require registry
# FIXME: ugly
if {$arr} {
if {[catch {registry set $adomain $akey $data multi_sz} errorMsg]} {
::pdwindow::error "write_config_win $data $akey: $errorMsg"
}
} else {
if {[catch {registry set $adomain $akey $data sz} errorMsg]} {
::pdwindow::error "write_config_win $data $akey: $errorMsg"
}
}
}
# ------------------------------------------------------------------------------
# linux: write configs to USER_APP_CONFIG_DIR
#
proc ::pd_guiprefs::write_config_x11 {data {adomain} {akey}} {
# right now I (yvan) assume that data are just \n separated, i.e. no keys
set data [join $data "\n"]
set filename [file join $adomain $akey]
if {[catch {set fl [open $filename w]} errorMsg]} {
::pdwindow::error "write_config_x11 $data $akey: $errorMsg"
} else {
puts -nonewline $fl $data
close $fl
}
}
#################################################################
# utils
#################################################################
# ------------------------------------------------------------------------------
# linux only! : look for pd config directory and create it if needed
#
proc ::pd_guiprefs::prepare_configdir {} {
if { [catch {
if {[file isdirectory $::recentfiles_domain] != 1} {
file mkdir $::recentfiles_domain
::pdwindow::debug "$::recentfiles_domain was created.\n"
}
}]} {
::pdwindow::error "$::recentfiles_domain was *NOT* created.\n"
}
}
# ------------------------------------------------------------------------------
# osx: handles arrays in plist files (thanks hc)
#
proc ::pd_guiprefs::plist_array_to_tcl_list {arr} {
set result {}
set filelist $arr
regsub -all -- {("?),\s+("?)} $filelist {\1 \2} filelist
regsub -all -- {\n} $filelist {} filelist
regsub -all -- {^\(} $filelist {} filelist
regsub -all -- {\)$} $filelist {} filelist
regsub -line -- {^'(.*)'$} $filelist {\1} filelist
foreach file $filelist {
set filename [regsub -- {,$} $file {}]
lappend result $filename
}
return $result
}
# the Mac OS X 'defaults' command uses single quotes to quote things,
# so they need to be escaped
proc ::pd_guiprefs::escape_for_plist {str} {
return [regsub -all -- {'} $str {\\'}]
}
|