/usr/lib/timidity/misc.tcl is in timidity-interfaces-extra 2.13.2-40.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 | # TiMidity++ -- MIDI to WAVE converter and player
# Copyright (C) 1999-2002 Masanao Izumo <mo@goice.co.jp>
# Copyright (C) 1995 Tuukka Toivonen <tt@cgs.fi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#----------------------------------------------------------------
# Miscellaneous procedures
# written by T.IWAI
#----------------------------------------------------------------
#----------------------------------------------------------------
# tk easy programming
#----------------------------------------------------------------
if [catch {expr $tk_priv(new_tcltk) == 0 || $tk_priv(new_tcltk) == 1}] {
set tk_priv(new_tcltk) 0
if [regexp "(\[0-9\]+\.\[0-9\]+)" $tk_patchLevel cur] {
if {$cur >= 4.0} {
set tk_priv(new_tcltk) 1
}
}
}
#
# get root file name
#
proc retrieve-filename {path} {
set divs [split $path /]
return [lindex $divs [expr [llength $divs] - 1]]
}
#
# sec to time string
#
proc sec2time {sec} {
if {$sec >= 0} {
return [format "%02d:%02d" [expr $sec / 60] [expr $sec % 60]]
} else {
set sec [expr -$sec]
return [format "-%02d:%02d" [expr $sec / 60] [expr $sec % 60]]
}
}
#
# numeric binding:
# only numerical key and some controls are available for input.
#
proc numeric-bind {w} {
bind $w <Any-Key> {
if {"%A" != "" && [regexp "\[0-9\]+" %A]} {
%W insert insert %A
tk_entrySeeCaret %W
} elseif {"%K" == "Return"} {
global tk_priv
focus none
}
}
bind $w <Key-Delete> {tk_entryBackspace %W; tk_entrySeeCaret %W}
bind $w <Key-BackSpace> {tk_entryBackspace %W; tk_entrySeeCaret %W}
bind $w <Control-Key-h> {tk_entryBackspace %W; tk_entrySeeCaret %W}
bind $w <Control-Key-d> {%W delete sel.first sel.last; tk_entrySeeCaret %W}
bind $w <Control-Key-u> {%W delete 0 end}
}
#
# make a listbox
#
proc my-listbox {w title size {dohoriz 1} {multiple 0}} {
global tk_priv
frame $w
label $w.label -text $title -relief flat
pack $w.label -side top -fill x -anchor w
scrollbar $w.yscr -command "$w.list yview"
pack $w.yscr -side right -fill y
if {$tk_priv(new_tcltk)} {
regexp "(\[0-9\]+)x(\[0-9\])" $size foo width height
set lopt [list -width $width -height $height]
if {$multiple} {
lappend lopt -selectmode multiple
}
} else {
set lopt [list -geometry $size]
}
if {$dohoriz} {
scrollbar $w.xscr -command "$w.list xview" -orient horizontal
pack $w.xscr -side bottom -fill x
eval listbox $w.list -relief sunken -setgrid yes $lopt\
[list -yscroll "$w.yscr set"]\
[list -xscroll "$w.xscr set"]
} else {
eval listbox $w.list -relief sunken -setgrid yes $lopt\
[list -yscroll "$w.yscr set"]
}
pack $w.list -side left -fill both -expand yes
return $w.list
}
#----------------------------------------------------------------
# dialog pop-up
#----------------------------------------------------------------
proc my-dialog {w title defbtn canbtn buttons} {
toplevel $w -class Dialog
wm title $w $title
wm iconname $w $title
label $w.title -text $title -relief raised -bd 1
pack $w.title -side top -fill x
frame $w.f -relief raised -bd 1
pack $w.f -side top -fill both
frame $w.buttons -relief raised -bd 1
pack $w.buttons -side bottom -fill both
set i 0
foreach but $buttons {
button $w.buttons.c$i -text [lindex $but 0] -command [lindex $but 1]
if {$defbtn != "" && $i == $defbtn} {
frame $w.buttons.default -relief sunken -bd 1
raise $w.buttons.c$i $w.buttons.default
pack $w.buttons.default -side left -expand 1\
-padx 3m -pady 2m
pack $w.buttons.c$i -in $w.buttons.default -padx 2m -pady 2m \
-ipadx 2m -ipady 1m
bind $w <Return> "$w.buttons.c$i flash; $w.buttons.c$i invoke"
} else {
pack $w.buttons.c$i -side left -expand 1 \
-padx 3m -pady 3m -ipadx 2m -ipady 1m
if {$canbtn != "" && $i == $canbtn} {
bind $w <Key-Escape> "$w.buttons.c$i flash; $w.buttons.c$i invoke"
}
}
incr i
}
return $w.f
}
#----------------------------------------------------------------
# warning/question dialog
#----------------------------------------------------------------
if {$tk_priv(new_tcltk)} {
proc my-message-dialog {w title text bitmap defbtn canbtn args} {
#puts stderr $text
return [eval tk_dialog [list $w $title $text $bitmap $defbtn] $args]
}
} else {
proc my-message-dialog {w title text bitmap defbtn canbtn args} {
#puts stderr $text
global tk_priv
set butlist {}
set num 0
foreach i $args {
lappend butlist [list $i "set tk_priv(button) $num; destroy $w"]
incr num
}
set f [my-dialog $w $title $defbtn $canbtn $butlist]
set num 0
message $f.msg -width 3i -text $text
pack $f.msg -side right -expand 1 -fill both -padx 5m -pady 5m
if {$bitmap != ""} {
label $f.bitmap -bitmap $bitmap
pack $f.bitmap -side left -padx 5m -pady 5m
}
set tk_priv(button) 0
wm withdraw $w
update idletasks
set x [expr [winfo screenwidth $w]/2 - [winfo reqwidth $w]/2 \
- [winfo vrootx [winfo parent $w]]]
set y [expr [winfo screenheight $w]/2 - [winfo reqheight $w]/2 \
- [winfo vrooty [winfo parent $w]]]
wm geom $w +$x+$y
wm deiconify $w
set oldFocus [focus]
grab $w
tkwait window $w
focus $oldFocus
return $tk_priv(button)
}
}
proc warning {message} {
my-message-dialog .warning "Warning" $message warning 0 0 { OK }
}
proc error {message} {
my-message-dialog .error "Error" $message error 0 0 { OK }
}
proc information {message} {
my-message-dialog .info "Information" $message info 0 0 { OK }
}
proc question {message {defrc 1}} {
global tk_priv
if {$defrc} {
set defbtn 0
set canbtn 1
} else {
set defbtn 1
set canbtn 0
}
return [expr ![my-message-dialog .yesno "Question" $message question\
$defbtn $canbtn "Yes" "No"]]
}
#----------------------------------------------------------------
# get the root file name from full path
#----------------------------------------------------------------
proc rootname {path} {
if {$path == "/"} {
return $path
} elseif [regexp "\[^/\]+$" $path base] {
return $base
} elseif [regexp "(\[^/\]+)/$" $path rest base] {
return $base
} else {
return $path
}
}
#----------------------------------------------------------------
# pseudo random routine without TclX
#----------------------------------------------------------------
set pseudo_random [catch {random 1}]
set pseudo_random_next -1
proc my-random {max} {
global pseudo_random pseudo_random_next
if {$pseudo_random} {
set pseudo_random_next [expr $pseudo_random_next * 1103515245 + 12345]
return [expr ($pseudo_random_next/65536) % $max]
# Or, use bash's random routine instead...
# return [expr [exec bash -c {echo $RANDOM}] % $max]
} else {
return [random $max]
}
}
proc init-random {num} {
global pseudo_random pseudo_random_next
if {$pseudo_random} {
set pseudo_random_next $num
} else {
random seed $num
}
}
|