/usr/share/saods9/src/compass.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 | # 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 CompassDialog {varname} {
upvar #0 $varname var
global $varname
# see if we already have a header window visible
if [winfo exists $var(top)] {
raise $var(top)
return
}
# variables
set arrows [$var(frame) get marker $var(id) compass arrow]
set var(narrow) [lindex $arrows 0]
set var(earrow) [lindex $arrows 1]
set labels [$var(frame) get marker $var(id) compass label]
set var(north) [lindex $labels 0]
set var(east) [lindex $labels 1]
set s [$var(frame) get marker $var(id) compass system]
set var(system) [lindex $s 0]
set var(sky) [lindex $s 1]
set var(skyformat) degrees
# procs
set var(which) compass
set var(proc,apply) CompassApply
set var(proc,close) CompassClose
set var(proc,coordCB) CompassCoordCB
# base
MarkerBaseCenterDialog $varname
set f $var(top).param
# Labels
ttk::label $f.ntitle -text [msgcat::mc {North}]
ttk::entry $f.north -textvariable ${varname}(north) -width 13
ttk::checkbutton $f.narrow -variable ${varname}(narrow) \
-text [msgcat::mc {Arrow}] -command "CompassArrow $varname"
ttk::label $f.etitle -text [msgcat::mc {East}]
ttk::entry $f.east -textvariable ${varname}(east) -width 13
ttk::checkbutton $f.earrow -variable ${varname}(earrow) \
-text [msgcat::mc {Arrow}] -command "CompassArrow $varname"
grid $f.ntitle $f.north $f.narrow -padx 2 -pady 2 -sticky w
grid $f.etitle $f.east $f.earrow -padx 2 -pady 2 -sticky w
}
# actions
proc CompassClose {varname} {
upvar #0 $varname var
global $varname
MarkerBaseCenterClose $varname
}
proc CompassApply {varname} {
upvar #0 $varname var
global $varname
$var(frame) marker $var(id) compass label "\{$var(north)\}" "\{$var(east)\}"
MarkerBaseCenterApply $varname
}
proc CompassArrow {varname} {
upvar #0 $varname var
global $varname
$var(frame) marker $var(id) compass arrow $var(narrow) $var(earrow)
}
# callbacks
proc CompassCoordCB {varname {dummy {}}} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,marker)} {
puts stderr "CompassCoordCB"
}
MarkerBaseCoordCB $varname
MarkerBaseCenterMoveCB $varname
$var(frame) marker $var(id) compass system $var(system) $var(sky)
}
|