/usr/share/saods9/src/catcmd.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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 | # 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
# Table Commands
proc CATSelectCmd {varname ss rc} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,cat)} {
puts stderr "CATSelectCmd $varname $ss $rc"
}
if {$var(edit)} {
CATSelectEditCmd $varname $ss $rc
} else {
CATSelectBrowseCmd $varname $ss $rc
}
}
proc CATSelectEditCmd {varname ss rc} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,cat)} {
puts stderr "CATSelectEditCmd $varname $rc"
}
if {![$var(frame) has fits]} {
return
}
$var(frame) marker catalog $varname unselect
set last [lindex [split $ss ,] 0]
set next [lindex [split $rc ,] 0]
if {[string is integer -strict $last]} {
CATGenerateUpdate $varname $last
}
if {[string is integer -strict $next]} {
set mk "\{${varname}.${next}\}"
CATPanTo $varname $mk
$var(frame) marker catalog $mk select
}
}
proc CATSelectBrowseCmd {varname ss rc} {
upvar #0 $varname var
global $varname
# starts at 1
global debug
if {$debug(tcl,cat)} {
puts stderr "CATSelectBrowseCmd $varname"
}
global $var(catdb)
if {![CATValidDB $var(catdb)]} {
return
}
if {![$var(frame) has fits]} {
return
}
$var(frame) marker catalog $varname unhighlite
# init timer vars
set var(blink,count) 0
set var(blink,marker) {}
# now see the current selection
set last [lindex [split $ss ,] 0]
set row [lindex [split $rc ,] 0]
# needed for plot, status, samp
# starts at 0
set rowlist {}
foreach sel [$var(tbl) curselection] {
set rr [lindex [split $sel ,] 0]
lappend rowlist $rr
}
set rowlist [lsort -unique $rowlist]
foreach rr $rowlist {
lappend ${varname}(blink,marker) "\{${varname}.${rr}\}"
}
# status
CATStatusRows $varname $rowlist
# plot
if {$var(plot)} {
PlotHighliteElement $var(plot,var) $rowlist
}
# samp
SAMPSendTableRowListCmd $varname $rowlist
# panto
CATPanTo $varname [lindex $var(blink,marker) 0]
# start timer, if needed
if {!$var(blink)} {
set var(blink) 1
CATSelectTimer $varname
}
}
proc CATSelectRows {varname src rowlist} {
upvar #0 $varname var
global $varname
# just in case?
set rowlist [lsort -unique $rowlist]
# rows start at 1
global debug
if {$debug(tcl,cat)} {
puts stderr "CATSelectRows $varname $src $rowlist"
}
if {![info exists ${varname}(top)]} {
return
}
global $var(catdb)
if {![CATValidDB $var(catdb)]} {
return
}
# rowlist can be empty
if {$rowlist == {}} {
if [info exists ${varname}(tbl)] {
$var(tbl) selection clear all
}
$var(frame) marker catalog $varname unhighlite
return
}
if [info exists ${varname}(tbl)] {
$var(tbl) selection clear all
foreach rr $rowlist {
$var(tbl) selection set $rr,1
}
$var(tbl) see [lindex $rowlist 0],1
}
$var(frame) marker catalog $varname unhighlite
# init timer vars
set var(blink,count) 0
set var(blink,marker) {}
foreach rr $rowlist {
lappend ${varname}(blink,marker) "\{${varname}.${rr}\}"
}
# status
CATStatusRows $varname $rowlist
# source of call
switch $src {
samp {
if {$var(plot)} {
PlotHighliteElement $var(plot,var) $rowlist
}
}
plot {
SAMPSendTableRowListCmd $varname $rowlist
}
}
# panto
CATPanTo $varname [lindex $var(blink,marker) 0]
# start timer, if needed
if {!$var(blink)} {
set var(blink) 1
CATSelectTimer $varname
}
}
proc CATPanTo {varname mk} {
upvar #0 $varname var
global $varname
if {![$var(frame) has fits]} {
return
}
# pan to first region
if {$var(panto) && $mk != {}} {
set tt [$var(frame) get marker catalog $mk tag]
if {$tt!={}} {
set cc [$var(frame) get marker catalog $tt center \
$var(psystem) $var(psky)]
PanToFrame $var(frame) [lindex $cc 0] [lindex $cc 1] \
$var(psystem) $var(psky)
}
}
}
proc CATSelectTimer {varname} {
upvar #0 $varname var
global $varname
switch -- $var(blink) {
0 {
set var(blink) 0
set var(blink,count) 0
set var(blink,marker) {}
}
1 {
foreach mm $var(blink,marker) {
if {[$var(frame) has fits]} {
$var(frame) marker catalog $mm highlite
}
}
incr ${varname}(blink,count)
if {$var(blink,count) < 5} {
set var(blink) 2
} else {
set var(blink) 0
}
after 250 [list CATSelectTimer $varname]
}
2 {
foreach mm $var(blink,marker) {
if {[$var(frame) has fits]} {
$var(frame) marker catalog $mm unhighlite
}
}
set var(blink) 1
after 250 [list CATSelectTimer $varname]
}
}
}
# Marker Callbacks
# call backs can't call other procs
proc CATHighliteCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATHighliteCB $tag $id"
}
set t [split $tag .]
set varname [lindex $t 0]
set row [lindex $t 1]
upvar #0 $varname var
global $varname
if {![info exists ${varname}(top)]} {
return
}
if {!$var(blink)} {
if [info exists ${varname}(tbl)] {
$var(tbl) selection set $row,1
$var(tbl) see $row,1
}
}
}
proc CATUnhighliteCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATUnhighliteCB $tag $id"
}
set t [split $tag .]
set varname [lindex $t 0]
set row [lindex $t 1]
upvar #0 $varname var
global $varname
if {![info exists ${varname}(top)]} {
return
}
if {!$var(blink)} {
if [info exists ${varname}(tbl)] {
$var(tbl) selection clear $row,1
}
}
}
proc CATEditCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATEditCB $tag $id"
}
if {![$var(frame) has fits]} {
return
}
set t [split $tag .]
set varname [lindex $t 0]
set row [lindex $t 1]
set szcol [lindex $t 2]
set sz2col [lindex $t 3]
set units [lindex $t 4]
set angcol [lindex $t 5]
upvar #0 $varname var
global $varname
global $var(tbldb)
if {![info exists ${varname}(top)]} {
return
}
# shape
set shape [$var(frame) get marker catalog $id type]
# skyformat
switch -- $units {
degrees -
arcmin -
arcsec {
set skyformat $units
}
default {
set skyformat degrees
}
}
# get center and format
switch $shape {
circle {
if {$szcol>0} {
set rr [$var(frame) get marker catalog $id $shape radius \
$var(psystem) $skyformat]
starbase_set $var(tbldb) $row $szcol $rr
}
}
ellipse -
box {
if {$szcol>0 && $sz2col>0} {
set rr [$var(frame) get marker catalog $id $shape radius \
$var(psystem) $skyformat]
starbase_set $var(tbldb) $row $szcol [lindex $rr 0]
starbase_set $var(tbldb) $row $sz2col [lindex $rr 1]
}
}
vector {
if {$szcol>0} {
set ll [$var(frame) get marker catalog $id $shape length \
$var(psystem) $skyformat]
starbase_set $var(tbldb) $row $szcol $ll
}
if {$angcol>0} {
set ang [$var(frame) get marker catalog $id angle \
$var(psystem) $p(sky)]
starbase_set $var(tbldb) $row $angcol $ang
}
}
default {}
}
}
proc CATMoveCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATMoveCB $tag $id"
}
if {![$var(frame) has fits]} {
return
}
set t [split $tag .]
set varname [lindex $t 0]
set row [lindex $t 1]
upvar #0 $varname var
global $varname
global $var(tbldb)
if {![info exists ${varname}(top)]} {
return
}
# center
set coord [$var(frame) get marker catalog $id center \
$var(psystem) $var(sky) degrees]
starbase_set $var(tbldb) $row [starbase_colnum $var(tbldb) $var(colx)] \
[lindex $coord 0]
starbase_set $var(tbldb) $row [starbase_colnum $var(tbldb) $var(coly)] \
[lindex $coord 1]
}
proc CATRotateCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATRotateCB $tag $id"
}
global debug
if {$debug(tcl,cat)} {
puts stderr "CATMoveCB $tag $id"
}
if {![$var(frame) has fits]} {
return
}
set t [split $tag .]
set varname [lindex $t 0]
set row [lindex $t 1]
set angcol [lindex $t 2]
upvar #0 $varname var
global $varname
global $var(tbldb)
if {![info exists ${varname}(top)]} {
return
}
# shape
set shape [$var(frame) get marker catalog $id type]
# get center and format
switch $shape {
ellipse -
box {
if {$angcol>0} {
set ang [$var(frame) get marker catalog $id angle \
$var(psystem) $var(sky)]
starbase_set $var(tbldb) $row $angcol $ang
}
}
default {}
}
}
proc CATDeleteCB {tag id} {
global debug
if {$debug(tcl,cat)} {
puts stderr "CATDeleteCB $tag $id"
}
}
# Tcl Commands
proc CATButton {which x y} {
global imarker
global debug
if {$debug(tcl,cat)} {
puts stderr "CATButton $which $x $y"
}
# if nothing is loaded, abort
if {![$which has fits]} {
return
}
# see if we are on a handle
set h [$which get marker catalog handle $x $y]
set id [lindex $h 0]
set imarker(handle) [lindex $h 1]
if {$imarker(handle)} {
$which marker catalog $id edit begin $imarker(handle)
set imarker(motion) beginEdit
return
}
# else, see if we are on a segment of a polygon
set h [$which get marker catalog polygon segment $x $y]
set id [lindex $h 0]
set segment [lindex $h 1]
if {$segment} {
$which marker catalog $id create polygon vertex $segment $x $y
$which marker catalog $id edit begin $imarker(handle)
set imarker(handle) [expr 4+$segment+1]
set imarker(motion) beginEdit
return
}
# else, see if we are on a marker
set id [$which get marker catalog id $x $y]
if {$id != 0} {
# select
if {[$which get marker catalog $id property select]} {
$which marker catalog select only $x $y
$which marker catalog move begin $x $y
set imarker(motion) beginMove
return
}
# highlite
if {[$which get marker catalog $id property highlite]} {
$which marker catalog $id highlite only
$which marker catalog $id move back
set imarker(motion) none
return
}
}
# see if any markers are selected
if {[$which get marker catalog select number]>0} {
$which marker catalog unselect all
set imarker(motion) none
return
}
# see if any markers are selected
if {[$which get marker catalog highlite number]>0} {
$which marker catalog unhighlite all
set imarker(motion) none
return
}
set imarker(motion) none
set imarker(handle) -1
}
proc CATShift {which x y} {
global imarker
global debug
if {$debug(tcl,cat)} {
puts stderr "CATShift $which $x $y"
}
# if nothing is loaded, abort
if {![$which has fits]} {
return
}
# see if we are on a handle
set h [$which get marker catalog handle $x $y]
set id [lindex $h 0]
set imarker(handle) [lindex $h 1]
if {$imarker(handle)} {
$which marker catalog $id rotate begin
set imarker(motion) beginRotate
return
}
# else, see if we are on a marker
if {[$which marker catalog select toggle $x $y]} {
$which marker catalog move begin $x $y
set imarker(motion) beginMove
return
}
if {[$which marker catalog highlite toggle $x $y]} {
set imarker(motion) none
return
}
# else, start a region select
$which region catalog select begin $x $y
# $which region catalog highlite begin $x $y
set imarker(motion) shiftregion
}
proc CATMotion {which x y} {
global imarker
global debug
if {$debug(tcl,cat)} {
puts stderr "CATMotion $which $x $y"
}
# if nothing is loaded, abort
if {![$which has fits]} {
return
}
switch -- $imarker(motion) {
none {}
beginMove -
move {
$which marker catalog move motion $x $y
set imarker(motion) move
}
beginEdit -
edit {
$which marker catalog edit motion $x $y $imarker(handle)
set imarker(motion) edit
}
beginRotate -
rotate {
$which marker catalog rotate motion $x $y $imarker(handle)
set imarker(motion) rotate
}
region -
shiftregion {
$which region catalog select motion $x $y
# $which region catalog highlite motion $x $y
}
}
}
proc CATRelease {which x y} {
global imarker
global samp
global debug
if {$debug(tcl,cat)} {
puts stderr "CATRelease $which $x $y"
}
# if nothing is loaded, abort
if {![$which has fits]} {
return
}
switch -- $imarker(motion) {
none {}
beginMove -
beginRotate {}
beginEdit {}
move {$which marker catalog move end}
edit {$which marker catalog edit end}
rotate {$which marker catalog rotate end}
region {
$which region catalog select end
$which region catalog catalog highlite end
}
shiftregion {
$which region catalog select shift end
$which region catalog highlite shift end
}
}
set imarker(motion) none
set imarker(handle) -1
# plot, stats, samp
set rr {}
foreach mm [$which get marker catalog highlite] {
lappend rr [string trim [lindex [$which get marker catalog $mm tag] 1]]
}
if {$rr != {}} {
set rr [lsort $rr]
set varname {}
set rowlist {}
foreach ss $rr {
set tt [split $ss {.}]
set varr [lindex $tt 0]
set row [lindex $tt 1]
if {$varname != $varr} {
# dump what we have
if {$varname != {}} {
upvar #0 $varname var
global $varname
# status
CATStatusRows $varname $rowlist
# plot
if {$var(plot)} {
PlotHighliteElement $var(plot,var) $rowlist
}
# samp
if {[info exists samp]} {
if {$samp(apps,votable) != {}} {
SAMPSendTableRowListCmd $varname $rowlist
}
}
}
# now a new list
set varname $varr
set rowlist {}
}
lappend rowlist $row
}
if {$varname != {}} {
upvar #0 $varname var
global $varname
# status
CATStatusRows $varname $rowlist
#plot
if {$var(plot)} {
PlotHighliteElement $var(plot,var) $rowlist
}
# samp
if {[info exists samp]} {
if {$samp(apps,votable) != {}} {
SAMPSendTableRowListCmd $varname $rowlist
}
}
}
}
}
|