/usr/share/saods9/src/pixel.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 | # 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
proc PixelDef {} {
global pixel
global ipixel
global dpixel
global ppixel
set ipixel(top) .pixel
set ipixel(mb) .pixelmb
set ipixel(max) 13
set pixel(size) 5
array set ppixel [array get pixel]
set dpixel(copy) {}
set dpixel(tbl) {}
}
proc UpdatePixelTableDialog {which x y sys} {
global pixel
global ipixel
global dpixel
if {[winfo exists $ipixel(top)]} {
$which get pixel table $sys $x $y $pixel(size) $pixel(size) dpixel
}
}
proc PixelTableDialog {} {
global pixel
global ipixel
global dpixel
global ds9
if {[winfo exists $ipixel(top)]} {
raise $ipixel(top)
return
}
# create the pixel table window
set w $ipixel(top)
set mb $ipixel(mb)
Toplevel $w $mb 6 [msgcat::mc {Pixel Table}] PixelTableDestroyDialog
$mb add cascade -label [msgcat::mc {File}] -menu $mb.file
$mb add cascade -label [msgcat::mc {Edit}] -menu $mb.edit
$mb add cascade -label [msgcat::mc {Size}] -menu $mb.size
menu $mb.file
$mb.file add command -label "[msgcat::mc {Save}]..." \
-command PixelTableSaveDialog
$mb.file add separator
$mb.file add command -label [msgcat::mc {Close}] \
-command PixelTableDestroyDialog
menu $mb.edit
$mb.edit add command -label [msgcat::mc {Cut}] \
-state disabled -accelerator "${ds9(ctrl)}X"
$mb.edit add command -label [msgcat::mc {Copy}] \
-command PixelTableCopyDialog -accelerator "${ds9(ctrl)}C"
$mb.edit add command -label [msgcat::mc {Paste}] \
-state disabled -accelerator "${ds9(ctrl)}V"
menu $mb.size
for {set ii 3} {$ii<=$ipixel(max)} {incr ii 2} {
$mb.size add radiobutton -label "${ii}x${ii}" -variable pixel(size) \
-value $ii -command PixelTableConfigure
}
set f [ttk::frame $w.tbl]
set dpixel(tbl) [table $f.t \
-state disabled \
-anchor w \
-font [font actual TkDefaultFont] \
-variable dpixel \
-usecommand 0 \
-maxwidth 1200 \
]
$dpixel(tbl) tag col coord 0
$dpixel(tbl) tag row coord 0
$dpixel(tbl) tag configure coord -foreground blue
$dpixel(tbl) tag configure center -foreground red
grid $f.t -sticky news
grid rowconfigure $f 0 -weight 1
grid columnconfigure $f 0 -weight 1
set f [ttk::frame $w.buttons]
ttk::button $w.buttons.close -text [msgcat::mc {Close}] \
-command PixelTableDestroyDialog
pack $w.buttons.close -side left -expand true -padx 2 -pady 4
# Fini
ttk::separator $w.sep -orient horizontal
pack $w.buttons $w.sep -side bottom -fill x
pack $w.tbl -side top -fill both -expand true
selection handle $w PixelTableExportSelection
PixelTableConfigure
# dummy info
for {set jj 0} {$jj<=$pixel(size)} {incr jj} {
for {set ii 0} {$ii<=$pixel(size)} {incr ii} {
set dpixel($ii,$jj) {}
}
}
}
proc PixelTableDestroyDialog {} {
global ipixel
global dpixel
if {[winfo exists $ipixel(top)]} {
destroy $ipixel(top)
destroy $ipixel(mb)
}
if {[info exists dpixel]} {
unset dpixel
}
}
proc PixelTableCopyDialog {} {
global ipixel
global dpixel
set dpixel(copy) [PixelTableRender]
selection own -command PixelTableLostSelection $ipixel(top)
clipboard clear
clipboard append $dpixel(copy)
}
proc PixelTableClearDialog {} {
global pixel
global ipixel
global dpixel
global dpixel
if {[winfo exists $ipixel(top)]} {
for {set jj 0} {$jj<=$pixel(size)} {incr jj} {
for {set ii 0} {$ii<=$pixel(size)} {incr ii} {
set dpixel($ii,$jj) {}
}
}
}
}
proc PixelTableSaveDialog {} {
set filename [SaveFileDialog pixelfbox]
if {$filename != {}} {
set file [open $filename w]
puts -nonewline $file [PixelTableRender]
close $file
}
}
# support
proc PixelTableConfigure {} {
global pixel
global ipixel
global dpixel
set ss [expr $pixel(size)+1]
$dpixel(tbl) configure -rows $ss -cols $ss
for {set ii 1} {$ii<=$ipixel(max)} {incr ii} {
$dpixel(tbl) tag cell {} $ii,$ii
}
set hh [expr int($ss/2.)]
$dpixel(tbl) tag cell center $hh,$hh
}
proc PixelTableRender {} {
global pixel
global dpixel
set rr {}
# col header
append rr " "
for {set ii 1} {$ii<=$pixel(size)} {incr ii} {
set msg [format "%12s" $dpixel(0,${ii})]
append rr "$msg"
}
append rr "\n"
append rr " "
for {set ii 1} {$ii<=$pixel(size)} {incr ii} {
append rr " -----------"
}
append rr "\n"
# body
for {set jj 1} {$jj<=$pixel(size)} {incr jj} {
set msg [format "%10s" $dpixel(${jj},0)]
append rr "$msg |"
for {set ii 1} {$ii<=$pixel(size)} {incr ii} {
set msg [format "%12.11s" $dpixel($jj,$ii)]
append rr "$msg"
}
append rr "\n"
}
return $rr
}
proc PixelTableExportSelection {offset bytes} {
global dpixel
if {$dpixel(copy) != {}} {
return [string range $dpixel(copy) $offset [expr $offset+$bytes]]
}
}
proc PixelTableLostSelection {} {
global dpixel
set dpixel(copy) {}
}
# Process Cmds
proc ProcessPixelTableCmd {varname iname} {
upvar $varname var
upvar $iname i
switch -- [string tolower [lindex $var $i]] {
open -
yes -
true -
on -
1 {PixelTableDialog}
close -
no -
false -
off -
0 {PixelTableDestroyDialog}
default {
PixelTableDialog
incr i -1
}
}
}
proc ProcessSendPixelTableCmd {proc id param sock fn} {
PixelTableDialog
ProcessSend $proc $id $sock $fn {.txt} [PixelTableRender]
}
|