/usr/share/saods9/src/mbin.tcl is in saods9-data 7.2+dfsg-4.
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 | # Copyright (C) 1999-2012
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
# Menu
proc BinMainMenu {} {
global ds9
menu $ds9(mb).bin
$ds9(mb).bin add radiobutton -label [msgcat::mc {Average}] \
-variable bin(function) -value average -command ChangeBinFunction
$ds9(mb).bin add radiobutton -label [msgcat::mc {Sum}] \
-variable bin(function) -value sum -command ChangeBinFunction
$ds9(mb).bin add separator
$ds9(mb).bin add command -label [msgcat::mc {Block In}] \
-command {Bin .5 .5}
$ds9(mb).bin add command -label [msgcat::mc {Block Out}] \
-command {Bin 2 2}
$ds9(mb).bin add separator
$ds9(mb).bin add command -label [msgcat::mc {Block to Fit Frame}] \
-command BinToFit
$ds9(mb).bin add separator
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 1" \
-variable bin(factor) -value { 1 1 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 2" \
-variable bin(factor) -value { 2 2 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 4" \
-variable bin(factor) -value { 4 4 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 8" \
-variable bin(factor) -value { 8 8 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 16" \
-variable bin(factor) -value { 16 16 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 32" \
-variable bin(factor) -value { 32 32 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 64" \
-variable bin(factor) -value { 64 64 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 128" \
-variable bin(factor) -value { 128 128 } -command ChangeBinFactor
$ds9(mb).bin add radiobutton -label "[msgcat::mc {Block}] 256" \
-variable bin(factor) -value { 256 256 } -command ChangeBinFactor
$ds9(mb).bin add separator
$ds9(mb).bin add radiobutton -label {128x128} \
-variable bin(buffersize) -value 128 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {256x256} \
-variable bin(buffersize) -value 256 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {512x512} \
-variable bin(buffersize) -value 512 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {1024x1024} \
-variable bin(buffersize) -value 1024 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {2048x2048} \
-variable bin(buffersize) -value 2048 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {4096x4096} \
-variable bin(buffersize) -value 4096 -command ChangeBinBufferSize
$ds9(mb).bin add radiobutton -label {8192x8192} \
-variable bin(buffersize) -value 8192 -command ChangeBinBufferSize
$ds9(mb).bin add separator
$ds9(mb).bin add command -label "[msgcat::mc {Binning Parameters}]..." \
-command BinDialog
}
proc PrefsDialogBinMenu {w} {
set f [ttk::labelframe $w.mbin -text [msgcat::mc {Bin}]]
ttk::menubutton $f.menu -text [msgcat::mc {Menu}] -menu $f.menu.menu
PrefsDialogButtonbarBin $f.buttonbar
grid $f.menu $f.buttonbar -padx 2 -pady 2
set m $f.menu.menu
menu $m
$m add radiobutton -label [msgcat::mc {Average}] \
-variable pbin(function) -value average
$m add radiobutton -label [msgcat::mc {Sum}] \
-variable pbin(function) -value sum
$m add separator
$m add radiobutton -label "[msgcat::mc {Block}] 1" \
-variable pbin(factor) -value { 1 1 }
$m add radiobutton -label "[msgcat::mc {Block}] 2" \
-variable pbin(factor) -value { 2 2 }
$m add radiobutton -label "[msgcat::mc {Block}] 4" \
-variable pbin(factor) -value { 4 4 }
$m add radiobutton -label "[msgcat::mc {Block}] 8" \
-variable pbin(factor) -value { 8 8 }
$m add radiobutton -label "[msgcat::mc {Block}] 16" \
-variable pbin(factor) -value { 16 16 }
$m add radiobutton -label "[msgcat::mc {Block}] 32" \
-variable pbin(factor) -value { 32 32 }
$m add radiobutton -label "[msgcat::mc {Block}] 64" \
-variable pbin(factor) -value { 64 64 }
$m add radiobutton -label "[msgcat::mc {Block}] 128" \
-variable pbin(factor) -value { 128 128 }
$m add radiobutton -label "[msgcat::mc {Block}] 256" \
-variable pbin(factor) -value { 256 256 }
$m add separator
$m add radiobutton -label {128x128} -variable pbin(buffersize) -value 128
$m add radiobutton -label {256x256} -variable pbin(buffersize) -value 256
$m add radiobutton -label {512x512} -variable pbin(buffersize) -value 512
$m add radiobutton -label {1024x1204} -variable pbin(buffersize) -value 1024
$m add radiobutton -label {2048x2048} -variable pbin(buffersize) -value 2048
$m add radiobutton -label {4096x4096} -variable pbin(buffersize) -value 4096
$m add radiobutton -label {8192x8192} -variable pbin(buffersize) -value 8192
pack $f -side top -fill both -expand true
}
proc PrefsDialogBin {} {
global dprefs
set w $dprefs(tab)
$dprefs(list) insert end [msgcat::mc {Bin}]
lappend dprefs(tabs) [ttk::frame $w.bin]
# Mouse
set f [ttk::labelframe $w.bin.mouse -text [msgcat::mc {Mouse Wheel Bin}]]
ttk::checkbutton $f.click -text [msgcat::mc {Enable}] \
-variable pbin(wheel)
ttk::label $f.title2 -text [msgcat::mc {Factor}]
ttk::entry $f.factor -textvariable pbin(wheel,factor) -width 10
grid $f.click $f.title2 $f.factor -padx 2 -pady 2 -sticky w
pack $w.bin.mouse -side top -fill both -expand true
}
# Buttons
proc ButtonsBinDef {} {
global pbuttons
array set pbuttons {
bin,average 0
bin,sum 0
bin,in 1
bin,out 1
bin,fit 1
bin,1 1
bin,2 1
bin,4 1
bin,8 1
bin,16 1
bin,32 1
bin,64 1
bin,128 0
bin,256 0
bin,128x 0
bin,256x 0
bin,512x 0
bin,1024x 0
bin,2048x 0
bin,4096x 0
bin,8192x 0
bin,params 0
}
}
proc CreateButtonsBin {} {
global buttons
global ds9
ttk::frame $ds9(buttons).bin
RadioButton $ds9(buttons).bin.average \
[string tolower [msgcat::mc {Average}]] \
bin(function) average ChangeBinFunction
RadioButton $ds9(buttons).bin.sum \
[string tolower [msgcat::mc {Sum}]] \
bin(function) sum ChangeBinFunction
ButtonButton $ds9(buttons).bin.in {-} {Bin .5 .5}
ButtonButton $ds9(buttons).bin.out {+} {Bin 2 2}
ButtonButton $ds9(buttons).bin.fit \
[string tolower [msgcat::mc {To Fit}]] BinToFit
RadioButton $ds9(buttons).bin.1 \
"[string tolower [msgcat::mc {Block}]] 1" \
bin(factor) { 1 1 } ChangeBinFactor
RadioButton $ds9(buttons).bin.2 \
"[string tolower [msgcat::mc {Block}]] 2" \
bin(factor) { 2 2 } ChangeBinFactor
RadioButton $ds9(buttons).bin.4 \
"[string tolower [msgcat::mc {Block}]] 4" \
bin(factor) { 4 4 } ChangeBinFactor
RadioButton $ds9(buttons).bin.8 \
"[string tolower [msgcat::mc {Block}]] 8" \
bin(factor) { 8 8 } ChangeBinFactor
RadioButton $ds9(buttons).bin.16 \
"[string tolower [msgcat::mc {Block}]] 16" \
bin(factor) { 16 16 } ChangeBinFactor
RadioButton $ds9(buttons).bin.32 \
"[string tolower [msgcat::mc {Block}]] 32" \
bin(factor) { 32 32 } ChangeBinFactor
RadioButton $ds9(buttons).bin.64 \
"[string tolower [msgcat::mc {Block}]] 64" \
bin(factor) { 64 64 } ChangeBinFactor
RadioButton $ds9(buttons).bin.128 \
"[string tolower [msgcat::mc {Block}]] 128" \
bin(factor) { 128 128 } ChangeBinFactor
RadioButton $ds9(buttons).bin.256 \
"[string tolower [msgcat::mc {Block}]] 256" \
bin(factor) { 256 256 } ChangeBinFactor
RadioButton $ds9(buttons).bin.128x {128x128} \
bin(buffersize) 128 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.256x {256x256} \
bin(buffersize) 256 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.512x {512x512} \
bin(buffersize) 512 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.1024x {1024x1024} \
bin(buffersize) 1024 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.2048x {2048x2048} \
bin(buffersize) 2048 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.4096x {4096x4096} \
bin(buffersize) 4096 ChangeBinBufferSize
RadioButton $ds9(buttons).bin.8192x {8192x8192} \
bin(buffersize) 8192 ChangeBinBufferSize
ButtonButton $ds9(buttons).bin.params \
[string tolower [msgcat::mc {Parameters}]] BinDialog
set buttons(bin) "
$ds9(buttons).bin.average pbuttons(bin,average)
$ds9(buttons).bin.sum pbuttons(bin,sum)
$ds9(buttons).bin.in pbuttons(bin,in)
$ds9(buttons).bin.out pbuttons(bin,out)
$ds9(buttons).bin.fit pbuttons(bin,fit)
$ds9(buttons).bin.1 pbuttons(bin,1)
$ds9(buttons).bin.2 pbuttons(bin,2)
$ds9(buttons).bin.4 pbuttons(bin,4)
$ds9(buttons).bin.8 pbuttons(bin,8)
$ds9(buttons).bin.16 pbuttons(bin,16)
$ds9(buttons).bin.32 pbuttons(bin,32)
$ds9(buttons).bin.64 pbuttons(bin,64)
$ds9(buttons).bin.128 pbuttons(bin,128)
$ds9(buttons).bin.256 pbuttons(bin,256)
$ds9(buttons).bin.128x pbuttons(bin,128x)
$ds9(buttons).bin.256x pbuttons(bin,256x)
$ds9(buttons).bin.512x pbuttons(bin,512x)
$ds9(buttons).bin.1024x pbuttons(bin,1024x)
$ds9(buttons).bin.2048x pbuttons(bin,2048x)
$ds9(buttons).bin.4096x pbuttons(bin,4096x)
$ds9(buttons).bin.8192x pbuttons(bin,8192x)
$ds9(buttons).bin.params pbuttons(bin,params)
"
}
proc PrefsDialogButtonbarBin {f} {
global buttons
global pbuttons
ttk::menubutton $f -text [msgcat::mc {Buttonbar}] -menu $f.menu
set m $f.menu
menu $m
$m add checkbutton -label [msgcat::mc {Average}] \
-variable pbuttons(bin,average) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label [msgcat::mc {Sum}] \
-variable pbuttons(bin,sum) -command {UpdateButtons buttons(bin)}
$m add separator
$m add checkbutton -label [msgcat::mc {Block In}] \
-variable pbuttons(bin,in) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label [msgcat::mc {Block Out}] \
-variable pbuttons(bin,out) -command {UpdateButtons buttons(bin)}
$m add separator
$m add checkbutton -label [msgcat::mc {Block to Fit Frame}] \
-variable pbuttons(bin,fit) -command {UpdateButtons buttons(bin)}
$m add separator
$m add checkbutton -label "[msgcat::mc {Block}] 1" \
-variable pbuttons(bin,1) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 2" \
-variable pbuttons(bin,2) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 4" \
-variable pbuttons(bin,4) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 8" \
-variable pbuttons(bin,8) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 16" \
-variable pbuttons(bin,16) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 32" \
-variable pbuttons(bin,32) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 64" \
-variable pbuttons(bin,64) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 128" \
-variable pbuttons(bin,128) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label "[msgcat::mc {Block}] 256" \
-variable pbuttons(bin,256) -command {UpdateButtons buttons(bin)}
$m add separator
$m add checkbutton -label {128x128} \
-variable pbuttons(bin,128x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {256x256} \
-variable pbuttons(bin,256x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {512x512} \
-variable pbuttons(bin,512x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {1024x1204} \
-variable pbuttons(bin,1024x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {2048x2048} \
-variable pbuttons(bin,2048x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {4096x4096} \
-variable pbuttons(bin,4096x) -command {UpdateButtons buttons(bin)}
$m add checkbutton -label {8192x8192} \
-variable pbuttons(bin,8192x) -command {UpdateButtons buttons(bin)}
$m add separator
$m add checkbutton -label "[msgcat::mc {Binning Parameters}]..." \
-variable pbuttons(bin,params) -command {UpdateButtons buttons(bin)}
}
# Support
proc UpdateBinMenu {} {
global ds9
global current
global bin
global debug
if {$debug(tcl,update)} {
puts stderr "UpdateBinMenu"
}
if {$current(frame) != {}} {
if {[$current(frame) has fits]} {
if {[$current(frame) has fits bin]} {
$ds9(mb) entryconfig [msgcat::mc {Bin}] -state normal
} else {
$ds9(mb) entryconfig [msgcat::mc {Bin}] -state disabled
}
} else {
$ds9(mb) entryconfig [msgcat::mc {Bin}] -state normal
}
set bin(function) [$current(frame) get bin function]
set bin(factor) "[$current(frame) get bin factor]"
set bin(depth) [$current(frame) get bin depth]
set bin(buffersize) [$current(frame) get bin buffer size]
} else {
$ds9(mb) entryconfig [msgcat::mc {Bin}] -state disabled
}
}
|