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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
|
# Copyright (C) 1999-2018
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc PanZoomDef {} {
global panzoom
global ipanzoom
global ppanzoom
global tcl_platform
set ipanzoom(top) .pz
set ipanzoom(mb) .pzmb
set ipanzoom(speed) 512
set ipanzoom(x) 0
set ipanzoom(last) {0 0}
set ipanzoom(state) 1
set panzoom(preserve) 0
set panzoom(lock) none
# set via wcs()
set panzoom(system) wcs
set panzoom(sky) fk5
set panzoom(skyformat) degrees
set ppanzoom(preserve) $panzoom(preserve)
# prefs only
set ppanzoom(mode) click
set ppanzoom(wheel) 1
set ppanzoom(wheel,factor) 1.2
# special case
switch -- $tcl_platform(os) {
Darwin {
switch [lindex [split $tcl_platform(osVersion) {.}] 0] {
11 {set ppanzoom(wheel,factor) 1.01}
}
}
}
}
# Pan
proc CenterCurrentFrame {} {
global current
CenterFrame $current(frame)
}
proc CenterAllFrame {} {
global ds9
foreach ff $ds9(frames) {
CenterFrame $ff
}
}
proc CenterFrame {which} {
if {$which != {}} {
$which center
UpdatePan $which
UpdateZoomMenu
}
}
proc PanCanvas {x y} {
global current
if {$current(frame) != {}} {
$current(frame) pan $x $y
UpdatePan $current(frame)
}
}
proc Pan {x y sys sky} {
global current
if {$current(frame) != {}} {
$current(frame) pan $sys $sky $x $y
UpdatePan $current(frame)
}
}
proc PanTo {x y sys sky} {
global current
PanToFrame $current(frame) $x $y $sys $sky
}
proc PanToFrame {which x y sys sky} {
global current
if {$which != {}} {
$which pan to $sys $sky $x $y
UpdatePan $which
}
}
proc PanButton {which x y} {
global ppanzoom
switch -- $ppanzoom(mode) {
click {}
drag {$which pan motion begin $x $y}
panzoom {}
}
}
proc PanMotion {which x y} {
global ppanzoom
switch -- $ppanzoom(mode) {
click {}
drag {$which pan motion $x $y}
panzoom {}
}
}
proc PanRelease {which x y} {
global panzoom
global ipanzoom
global ppanzoom
global current
switch -- $ppanzoom(mode) {
click {$which pan to $x $y}
drag {$which pan motion end $x $y}
panzoom {
if {$ipanzoom(last) != "$x $y"} {
set ipanzoom(state) 1
}
switch -- $ipanzoom(state) {
1 {
$which pan to $x $y
$which update now
set cc [$which get cursor canvas]
set xx [expr int([lindex $cc 0])]
set yy [expr int([lindex $cc 1])]
$which warp to $xx $yy
set ipanzoom(last) "$xx $yy"
set z [$current(frame) get zoom]
if {$z < 2} {
set ipanzoom(state) 2
} elseif {$z < 4} {
set ipanzoom(state) 3
} elseif {$z < 8} {
set ipanzoom(state) 4
} else {
set ipanzoom(state) 5
}
}
2 {
$which zoom to 2 2 about $x $y
set ipanzoom(state) 3
}
3 {
$which zoom to 4 4 about $x $y
set ipanzoom(state) 4
}
4 {
$which zoom to 8 8 about $x $y
set ipanzoom(state) 5
}
5 {
$which zoom to 1 1 about $x $y
set ipanzoom(state) 2
}
}
if {$which == $current(frame)} {
set current(zoom) [$current(frame) get zoom]
}
}
}
UpdatePan $which
}
proc PreservePan {} {
global current
global panzoom
if {$current(frame) != {}} {
$current(frame) pan preserve $panzoom(preserve)
}
}
proc UpdatePan {which} {
LockFrame $which
UpdateGraphAxis $which
UpdatePanZoomDialog
SAMPSendCoordPointAtSkyCmd $which
}
# Zoom
proc ZoomToFit {} {
global current
global grid
if {$current(frame) != {}} {
# we need to update the grid because titles are zoom dependant
if {$grid(view) && $grid(type) == "publication"} {
# recalculate to make room for labels
$current(frame) zoom to fit .8
set current(zoom) [$current(frame) get zoom]
} else {
$current(frame) zoom to fit
set current(zoom) [$current(frame) get zoom]
}
UpdateZoom $current(frame)
}
}
proc ChangeZoom {} {
global current
if {$current(frame) != {}} {
$current(frame) zoom to $current(zoom)
UpdateZoom $current(frame)
}
}
proc ZoomTo {zx zy} {
global current
set current(zoom) "$zx $zy"
ChangeZoom
}
proc Zoom {zx zy} {
global current
if {$current(frame) != {}} {
ZoomFrame $current(frame) $zx $zy
}
}
proc ZoomFrame {which zx zy} {
global current
$which zoom $zx $zy
if {$which == $current(frame)} {
set current(zoom) [$current(frame) get zoom]
}
UpdateZoom $which
}
proc ZoomButton {which x y} {
global current
$which zoom 2 2 about $x $y
if {$current(frame) == $which} {
set current(zoom) [$current(frame) get zoom]
}
UpdateZoom $which
}
proc ZoomShift {which} {
global current
$which zoom .5 .5
if {$current(frame) == $which} {
set current(zoom) [$current(frame) get zoom]
}
UpdateZoom $which
}
proc UpdateZoom {which} {
LockFrame $which
UpdateGraphAxis $which
UpdatePanZoomDialog
GridUpdateZoom
RefreshInfoBox $which
}
# Orient
proc ChangeOrient {} {
global current
if {$current(frame) != {}} {
$current(frame) orient $current(orient)
UpdateRotate $current(frame)
}
}
# Rotate
proc Rotate {value} {
global current
if {$current(frame) != {}} {
$current(frame) rotate $value
set current(rotate) [$current(frame) get rotate]
UpdateRotate $current(frame)
}
}
proc ChangeRotate {} {
global current
if {$current(frame) != {}} {
$current(frame) rotate to $current(rotate)
UpdateRotate $current(frame)
}
}
proc RotateButton {which x y} {
global ipanzoom
$which rotate motion begin
set ipanzoom(x) $x
}
proc RotateMotion {which x y} {
global current
global ipanzoom
global icursor
$which rotate motion [expr double($ipanzoom(x)-$x)/$ipanzoom(speed) * 180.]
if {$current(frame) == $which} {
set current(rotate) [$which get rotate]
}
RefreshInfoBox $which
}
proc RotateRelease {which x y} {
global current
$which rotate motion end
if {$current(frame) == $which} {
set current(rotate) [$which get rotate]
}
UpdateRotate $which
}
proc UpdateRotate {which} {
LockFrame $which
UpdateGraphAxis $which
UpdatePanZoomDialog
RefreshInfoBox $which
}
proc PanZoomDialog {} {
global panzoom
global ipanzoom
global dpanzoom
global ds9
global current
# see if we already have a window visible
if {[winfo exists $ipanzoom(top)]} {
raise $ipanzoom(top)
return
}
# create the window
set w $ipanzoom(top)
set mb $ipanzoom(mb)
Toplevel $w $mb 6 [msgcat::mc {Pan Zoom Rotate Parameters}] \
PanZoomDestroyDialog
# for CoordMenuButton
set panzoom(frame) $current(frame)
$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 {Pan}] -menu $mb.pan
$mb add cascade -label [msgcat::mc {Zoom}] -menu $mb.zoom
$mb add cascade -label [msgcat::mc {Orientation}] -menu $mb.orient
$mb add cascade -label [msgcat::mc {Rotate}] -menu $mb.rotate
menu $mb.file
$mb.file add command -label [msgcat::mc {Apply}] \
-command PanZoomApplyDialog
$mb.file add separator
$mb.file add command -label [msgcat::mc {Close}] \
-command PanZoomDestroyDialog
EditMenu $mb ipanzoom
menu $mb.pan
$mb.pan add command -label [msgcat::mc {Center Image}] \
-command CenterCurrentFrame
$mb.pan add checkbutton -label [msgcat::mc {Align}] \
-variable current(align) -command AlignWCSFrame
menu $mb.zoom
$mb.zoom add command -label [msgcat::mc {Zoom In}] -command {Zoom 2 2}
$mb.zoom add command -label [msgcat::mc {Zoom Out}] -command {Zoom .5 .5}
$mb.zoom add command -label [msgcat::mc {Zoom Fit}] -command ZoomToFit
$mb.zoom add separator
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1/32" \
-variable current(zoom) -value {0.03125 0.03125} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1/16" \
-variable current(zoom) -value {0.0625 0.0625} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1/8" \
-variable current(zoom) -value {0.125 0.125} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1/4" \
-variable current(zoom) -value {0.25 0.25} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1/2" \
-variable current(zoom) -value {0.5 0.5} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 1" \
-variable current(zoom) -value {1 1} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 2" \
-variable current(zoom) -value {2 2} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 4" \
-variable current(zoom) -value {4 4} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 8" \
-variable current(zoom) -value {8 8} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 16" \
-variable current(zoom) -value {16 16} -command ChangeZoom
$mb.zoom add radiobutton -label "[msgcat::mc {Zoom}] 32" \
-variable current(zoom) -value {32 32} -command ChangeZoom
menu $mb.orient
$mb.orient add radiobutton -label [msgcat::mc {None}] \
-variable current(orient) -value none -command ChangeOrient
$mb.orient add radiobutton -label "[msgcat::mc {Invert}] X" \
-variable current(orient) -value x -command ChangeOrient
$mb.orient add radiobutton -label "[msgcat::mc {Invert}] Y" \
-variable current(orient) -value y -command ChangeOrient
$mb.orient add radiobutton -label "[msgcat::mc {Invert}] XY" \
-variable current(orient) -value xy -command ChangeOrient
menu $mb.rotate
$mb.rotate add radiobutton -label "0 [msgcat::mc {Degrees}]" \
-variable current(rotate) -value 0 -command ChangeRotate
$mb.rotate add radiobutton -label "90 [msgcat::mc {Degrees}]" \
-variable current(rotate) -value 90 -command ChangeRotate
$mb.rotate add radiobutton -label "180 [msgcat::mc {Degrees}]" \
-variable current(rotate) -value 180 -command ChangeRotate
$mb.rotate add radiobutton -label "270 [msgcat::mc {Degrees}]" \
-variable current(rotate) -value 270 -command ChangeRotate
# Param
set f [ttk::frame $w.param]
ttk::label $f.zoomtitle -text [msgcat::mc {Zoom}]
ttk::entry $f.zoomx -textvariable dpanzoom(zoom,x) -width 14
ttk::entry $f.zoomy -textvariable dpanzoom(zoom,y) -width 14
ttk::label $f.rottitle -text [msgcat::mc {Rotate}]
ttk::entry $f.rotvalue -textvariable dpanzoom(rotate) -width 14
ttk::label $f.rottitle2 -text [msgcat::mc {Degrees}]
ttk::label $f.pantitle -text [msgcat::mc {Pan}]
ttk::entry $f.panx -textvariable dpanzoom(x) -width 14
ttk::entry $f.pany -textvariable dpanzoom(y) -width 14
set dpanzoom(cb) $f.pansystem
CoordMenuButton $dpanzoom(cb) panzoom system 1 sky skyformat \
UpdatePanZoomDialog
grid $f.zoomtitle $f.zoomx $f.zoomy -padx 2 -pady 2
grid $f.rottitle $f.rotvalue $f.rottitle2 -padx 2 -pady 2 -sticky w
grid $f.pantitle $f.panx $f.pany $f.pansystem -padx 2 -pady 2
# Buttons
set f [ttk::frame $w.buttons]
ttk::button $f.apply -text [msgcat::mc {Apply}] -command PanZoomApplyDialog
ttk::button $f.close -text [msgcat::mc {Close}] \
-command PanZoomDestroyDialog
pack $f.apply $f.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.param -side top -fill both -expand true
$w.param.zoomx select range 0 end
UpdatePanZoomDialog
}
proc PanZoomApplyDialog {} {
global panzoom
global ipanzoom
global dpanzoom
global current
if {$current(frame) != {}} {
set current(zoom) "$dpanzoom(zoom,x) $dpanzoom(zoom,y)"
set current(rotate) $dpanzoom(rotate)
$current(frame) zoom to $current(zoom) about \
$panzoom(system) $panzoom(sky) $dpanzoom(x) $dpanzoom(y)
$current(frame) rotate to $current(rotate)
LockFrameCurrent
UpdateGraphAxis $current(frame)
UpdatePanZoomDialog
GridUpdateZoom
RefreshInfoBox $current(frame)
UpdateZoomMenu
SAMPSendCoordPointAtSkyCmd $current(frame)
}
}
proc PanZoomDestroyDialog {} {
global ipanzoom
global dpanzoom
if {[winfo exists $ipanzoom(top)]} {
destroy $ipanzoom(top)
destroy $ipanzoom(mb)
unset dpanzoom
}
}
proc UpdatePanZoomMenu {} {
# can be changed by wcs
SetCoordSystem panzoom system sky skyformat
}
proc UpdatePanZoomDialog {} {
global panzoom
global ipanzoom
global dpanzoom
global current
global debug
if {$debug(tcl,update)} {
puts stderr "UpdatePanZoomDialog"
}
if {![winfo exists $ipanzoom(top)]} {
return
}
if {$current(frame) != {}} {
set panzoom(frame) $current(frame)
if {[$current(frame) has fits]} {
# now make sure we have the coord systems
AdjustCoordSystem panzoom system
CoordMenuEnable $dpanzoom(cb).menu panzoom system 1 sky skyformat
CoordMenuButtonCmd panzoom system sky {}
} else {
CoordMenuReset $dpanzoom(cb).menu panzoom system 1 sky skyformat
}
}
if {$current(frame) != {}} {
set zz [$current(frame) get zoom]
set dpanzoom(zoom,x) [lindex $zz 0]
set dpanzoom(zoom,y) [lindex $zz 1]
set dpanzoom(rotate) [$current(frame) get rotate]
set coord [$current(frame) get cursor $panzoom(system) \
$panzoom(sky) $panzoom(skyformat)]
set dpanzoom(x) [lindex $coord 0]
set dpanzoom(y) [lindex $coord 1]
} else {
set dpanzoom(zoom,x) {}
set dpanzoom(zoom,y) {}
set dpanzoom(rotate) {}
set dpanzoom(x) {}
set dpanzoom(y) {}
}
}
# Other
proc AlignWCSFrame {} {
global current
global ds9
if {$current(frame) != {}} {
$current(frame) wcs align $current(align)
LockFrameCurrent
UpdateGraphAxis $current(frame)
}
}
proc MatchFrameCurrent {sys} {
global current
if {$current(frame) != {}} {
MatchFrame $current(frame) $sys
}
}
proc MatchFrame {which sys} {
global ds9
global current
# NO-make sure matrices have been updated
# really messes up mousewheel events, just assume all is good
# RealizeDS9
switch -- $sys {
image -
physical -
amplifier -
detector {
set current(align) 0
$which wcs align 0
set pan [$which get cursor $sys]
set zoom [$which get zoom]
set rotate [$which get rotate]
set orient [$which get orient]
foreach ff $ds9(frames) {
if {$ff != $which} {
$ff pan to $sys $pan
$ff zoom to $zoom
$ff rotate to $rotate
$ff orient $orient
$ff wcs align 0
}
}
}
wcs {
set www [$which get wcs]
set sys [lindex $www 0]
set sky [lindex $www 1]
if {[$which has wcs $sys]} {
set current(align) 1
$which wcs align 1
set align [$which get wcs align pointer]
set pan [$which get cursor $sys FK5]
set zoom [$which get zoom]
set rotate [$which get rotate]
set orient [$which get orient]
foreach ff $ds9(frames) {
if {$ff != $which} {
if {[$ff has wcs $sys]} {
$ff pan to $sys FK5 $pan
$ff zoom to $zoom
$ff rotate to $rotate
$ff orient $orient
$ff wcs align $align
}
}
}
}
}
}
}
proc LockFrameCurrent {} {
global current
if {$current(frame) != {}} {
LockFrame $current(frame)
}
}
proc LockFrame {which} {
global panzoom
switch -- $panzoom(lock) {
none {}
default {MatchFrame $which $panzoom(lock)}
}
}
# Backup
proc PanZoomBackup {ch which} {
puts $ch "$which pan preserve [$which get pan preserve]"
puts $ch "$which pan to physical [$which get cursor physical]"
puts $ch "$which zoom to [$which get zoom]"
puts $ch "$which rotate to [$which get rotate]"
puts $ch "$which orient [$which get orient]"
puts $ch "$which wcs align [$which get wcs align]"
}
# Process Cmds
proc ProcessPanCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
ProcessRealizeDS9
pan::YY_FLUSH_BUFFER
pan::yy_scan_string [lrange $var $i end]
pan::yyparse
incr i [expr $pan::yycnt-1]
}
proc ProcessSendPanCmd {proc id param {sock {}} {fn {}}} {
global parse
set parse(proc) $proc
set parse(id) $id
pansend::YY_FLUSH_BUFFER
pansend::yy_scan_string $param
pansend::yyparse
}
proc ProcessZoomCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
ProcessRealizeDS9
zoom::YY_FLUSH_BUFFER
zoom::yy_scan_string [lrange $var $i end]
zoom::yyparse
incr i [expr $zoom::yycnt-1]
}
proc ProcessSendZoomCmd {proc id param {sock {}} {fn {}}} {
global current
set z1 [lindex $current(zoom) 0]
set z2 [lindex $current(zoom) 1]
if {$z1 != $z2} {
$proc $id "$current(zoom)\n"
} else {
$proc $id "$z1\n"
}
}
proc ProcessOrientCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
ProcessRealizeDS9
orient::YY_FLUSH_BUFFER
orient::yy_scan_string [lrange $var $i end]
orient::yyparse
incr i [expr $orient::yycnt-1]
}
proc ProcessSendOrientCmd {proc id param {sock {}} {fn {}}} {
global current
$proc $id "$current(orient)\n"
}
proc ProcessRotateCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
ProcessRealizeDS9
rotate::YY_FLUSH_BUFFER
rotate::yy_scan_string [lrange $var $i end]
rotate::yyparse
incr i [expr $rotate::yycnt-1]
}
proc ProcessSendRotateCmd {proc id param {sock {}} {fn {}}} {
global current
$proc $id "$current(rotate)\n"
}
|