/usr/share/saods9/src/point.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 | # 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 PointDialog {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
}
# procs
set var(proc,apply) PointApply
set var(proc,close) PointClose
set var(proc,coordCB) PointCoordCB
# base
MarkerBaseCenterDialog $varname
# menus
$var(mb) add cascade -label [msgcat::mc {Shape}] -menu $var(mb).shape
menu $var(mb).shape
$var(mb).shape add radiobutton -label [msgcat::mc {Circle}] \
-variable ${varname}(shape) -value circle \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {Box}] \
-variable ${varname}(shape) -value box \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {Diamond}] \
-variable ${varname}(shape) -value diamond \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {Cross}] \
-variable ${varname}(shape) -value cross \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {X}] \
-variable ${varname}(shape) -value x \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {Arrow}] \
-variable ${varname}(shape) -value arrow \
-command "PointShape $varname"
$var(mb).shape add radiobutton -label [msgcat::mc {BoxCircle}] \
-variable ${varname}(shape) -value boxcircle \
-command "PointShape $varname"
# analysis
$var(mb) add cascade -label [msgcat::mc {Analysis}] -menu $var(mb).analysis
menu $var(mb).analysis
# plot3d
MarkerAnalysisPlot3dDialog $varname
# init
set var(shape) [$var(frame) get marker $var(id) point shape]
set var(size) [$var(frame) get marker $var(id) point size]
set f $var(top).param
# size
ttk::label $f.tsize -text [msgcat::mc {Size}]
ttk::entry $f.size -textvariable ${varname}(size) -width 13
ttk::label $f.usize -text [msgcat::mc {Pixels}]
grid $f.tsize $f.size $f.usize -padx 2 -pady 2 -sticky w
}
# actions
proc PointClose {varname} {
upvar #0 $varname var
global $varname
MarkerBaseCenterClose $varname
}
proc PointApply {varname} {
upvar #0 $varname var
global $varname
$var(frame) marker $var(id) point size $var(size)
MarkerBaseCenterApply $varname
}
# callbacks
proc PointCoordCB {varname {dummy {}}} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,marker)} {
puts stderr "PointCoordCB"
}
MarkerAnalysisPlot3dSystem $varname
MarkerBaseCoordCB $varname
MarkerBaseCenterMoveCB $varname
}
# support
proc PointShape {varname} {
upvar #0 $varname var
global $varname
$var(frame) marker $var(id) point shape $var(shape)
}
|