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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
|
# Copyright (C) 1999-2016
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc PrefsDef {} {
global prefs
global iprefs
global ds9
set iprefs(top) .pf
set iprefs(mb) .pfmb
set iprefs(tabs) {}
set prefs(ext) {.prf}
set prefs(version) [lindex $ds9(version) 0]
set prefs(dir) [file join [GetEnvHome] ".$ds9(app)"]
set prefs(fn) [file join $prefs(dir) "$ds9(app).$prefs(version)$prefs(ext)"]
}
proc LoadPrefs {} {
global ds9
global prefs
if {[file exist $prefs(dir)] && [file isdirectory $prefs(dir)]} {
# new style
# look for current version
switch -- [SourceInitFile $prefs(fn)] {
1 {
# success
FixPrefs $prefs(version)
}
0 {
# found and failed to execute
}
-1 {
# look for prev version
set major [lindex [split $prefs(version) {.}] 0]
set minor [lindex [split $prefs(version) {.}] 1]
if {$minor>0} {
set minor [expr $minor-1]
} else {
set major [expr $minor-1]
set minor 9
}
set fn [file join $prefs(dir) "$ds9(app).${major}.${minor}$prefs(ext)"]
if {[SourceInitFile $fn] == 1} {
FixPrefs $prefs(version)
}
}
}
} else {
# ok, try old style
if {[SourceInitFileDir $prefs(ext)]} {
# ok, this is a major kludge to fix a major booboo.
# Beta versions generated prefs with version set to
# something like '7.4b7'. We need to remove the 'b7' part.
set ll [string first {b} $prefs(version)]
if {$ll != -1} {
set ll [expr $ll -1]
set prefs(version) [string range $prefs(version) 0 $ll]
}
FixPrefs $prefs(version)
}
}
}
proc CheckPrefs {} {
global ds9
global prefs
set rr [string compare $prefs(version) [lindex $ds9(version) 0]]
switch $rr {
-1 {
if {[tk_messageBox -type yesno -icon question -message [msgcat::mc {DS9 has detected an older preferences file, do you wish to update?}]] == {yes}} {
SavePrefs
}
}
0 {}
1 {
tk_messageBox -type ok -icon warning -message [msgcat::mc {DS9 has detected a newer version of a preferences file.}]
}
}
}
proc ClearPrefs {} {
global ds9
global prefs
if {[file exist $prefs(dir)] && [file isdirectory $prefs(dir)]} {
# clear new style
if {[file exist $prefs(fn)]} {
catch {file delete -force $prefs(fn)}
}
} else {
# make sure old prefs files are removed
foreach pp {{.} {}} {
set fn $pp$ds9(app)$prefs(ext)
foreach dir [list {.} [GetEnvHome]] {
set ff [file join $dir $fn]
if {[file exist $ff]} {
catch {file delete -force $ff}
return
}
}
}
}
}
proc SavePrefs {} {
global tcl_platform
global ds9
global prefs
ClearPrefs
# new style prefs file
# mkdir if needed
catch {file mkdir $prefs(dir)}
if {![file exist $prefs(dir)] || ![file isdirectory $prefs(dir)]} {
# something is wrong, just bail
Error [msgcat::mc {An error has occurred while saving}]
return
}
# open prefs file
if {[catch {set ch [open $prefs(fn) w]}]} {
Error [msgcat::mc {An error has occurred while saving}]
return
}
switch $tcl_platform(platform) {
unix {file attributes $prefs(fn) -permissions "rw-r--r--"}
windows {}
}
puts $ch "global ds9"
puts $ch "global prefs"
puts $ch "set prefs(version) [lindex $ds9(version) 0]"
# check for wrong prefs
puts $ch "\# this is a check for to ensure a match between the"
puts $ch "\# current ds9 version matches the prefs version"
puts $ch "if {\[string compare \$prefs(version) \[lindex \$ds9(version)\ 0\]] == 1} {"
puts $ch " return"
puts $ch "}"
# Basic
global pds9
puts $ch "global pds9"
puts $ch "array set pds9 \{ [array get pds9] \}"
global current
global pcurrent
puts $ch "global current"
puts $ch "global pcurrent"
puts $ch "array set pcurrent \{ [array get pcurrent] \}"
puts $ch {array set current [array get pcurrent]}
global view
global pview
puts $ch "global view"
puts $ch "global pview"
puts $ch "array set pview \{ [array get pview] \}"
puts $ch {array set view [array get pview]}
global phttp
puts $ch "global phttp"
puts $ch "array set phttp \{ [array get phttp] \}"
global pbuttons
puts $ch "global pbuttons"
puts $ch "array set pbuttons \{ [array get pbuttons] \}"
global ppanner
puts $ch "global ppanner"
puts $ch "array set ppanner \{ [array get ppanner] \}"
global pmagnifier
puts $ch "global pmagnifier"
puts $ch "array set pmagnifier \{ [array get pmagnifier] \}"
# File
global ps
global pps
puts $ch "global ps"
puts $ch "global pps"
puts $ch "array set pps \{ [array get pps] \}"
puts $ch {array set ps [array get pps]}
global pr
global ppr
puts $ch "global pr"
puts $ch "global ppr"
puts $ch "array set ppr \{ [array get ppr] \}"
puts $ch {array set pr [array get ppr]}
# Frame
global blink
global pblink
puts $ch "global blink"
puts $ch "global pblink"
puts $ch "array set pblink \{ [array get pblink] \}"
puts $ch {array set blink [array get pblink]}
global tile
global ptile
puts $ch "global tile"
puts $ch "global ptile"
puts $ch "array set ptile \{ [array get ptile] \}"
puts $ch {array set tile [array get ptile]}
global threed
global pthreed
puts $ch "global threed"
puts $ch "global pthreed"
puts $ch "array set pthreed \{ [array get pthreed] \}"
puts $ch {array set threed [array get pthreed]}
# Bin
global bin
global pbin
puts $ch "global bin"
puts $ch "global pbin"
puts $ch "array set pbin \{ [array get pbin] \}"
puts $ch {array set bin [array get pbin]}
# Zoom
global panzoom
global ppanzoom
puts $ch "global panzoom"
puts $ch "global ppanzoom"
puts $ch "array set ppanzoom \{ [array get ppanzoom] \}"
puts $ch {array set panzoom [array get ppanzoom]}
# Scale
global scale
global pscale
puts $ch "global scale"
puts $ch "global pscale"
puts $ch "array set pscale \{ [array get pscale] \}"
puts $ch {array set scale [array get pscale]}
global minmax
global pminmax
puts $ch "global minmax"
puts $ch "global pminmax"
puts $ch "array set pminmax \{ [array get pminmax] \}"
puts $ch {array set minmax [array get pminmax]}
global zscale
global pzscale
puts $ch "global zscale"
puts $ch "global pzscale"
puts $ch "array set pzscale \{ [array get pzscale] \}"
puts $ch {array set zscale [array get pzscale]}
# Region
global marker
global pmarker
puts $ch "global marker"
puts $ch "global pmarker"
puts $ch "array set pmarker \{ [array get pmarker] \}"
puts $ch {array set marker [array get pmarker]}
# WCS
global wcs
global pwcs
puts $ch "global wcs"
puts $ch "global pwcs"
puts $ch "array set pwcs \{ [array get pwcs] \}"
puts $ch {array set wcs [array get pwcs]}
# Analysis
global ime
global pime
puts $ch "global pime"
puts $ch "array set pime \{ [array get pime] \}"
puts $ch {array set ime [array get pime]}
global graph
global pgraph
puts $ch "global graph"
puts $ch "global pgraph"
puts $ch "array set pgraph \{ [array get pgraph] \}"
puts $ch {array set graph [array get pgraph]}
global pcoord
puts $ch "global pcoord"
puts $ch "array set pcoord \{ [array get pcoord] \}"
global pexamine
puts $ch "global pexamine"
puts $ch "array set pexamine \{ [array get pexamine] \}"
global pixel
global ppixel
puts $ch "global pixel"
puts $ch "global ppixel"
puts $ch "array set ppixel \{ [array get ppixel] \}"
puts $ch {array set pixel [array get ppixel]}
global mask
global pmask
puts $ch "global mask"
puts $ch "global pmask"
puts $ch "array set pmask \{ [array get pmask] \}"
puts $ch {array set mask [array get pmask]}
global contour
global pcontour
puts $ch "global contour"
puts $ch "global pcontour"
puts $ch "array set pcontour \{ [array get pcontour] \}"
puts $ch {array set contour [array get pcontour]}
global grid
global pgrid
puts $ch "global grid"
puts $ch "global pgrid"
puts $ch "array set pgrid \{ [array get pgrid] \}"
puts $ch {array set grid [array get pgrid]}
global block
global pblock
puts $ch "global block"
puts $ch "global pblock"
puts $ch "array set pblock \{ [array get pblock] \}"
puts $ch {array set block [array get pblock]}
global smooth
global psmooth
puts $ch "global smooth"
puts $ch "global psmooth"
puts $ch "array set psmooth \{ [array get psmooth] \}"
puts $ch {array set smooth [array get psmooth]}
global pnres
puts $ch "global pnres"
puts $ch "array set pnres \{ [array get pnres] \}"
global pcat
puts $ch "global pcat"
puts $ch "array set pcat \{ [array get pcat] \}"
global pvo
puts $ch "global pvo"
puts $ch "array set pvo \{ [array get pvo] \}"
global pap
puts $ch "global pap"
puts $ch "array set pap \{ [array get pap] \}"
global panalysis
puts $ch "global panalysis"
puts $ch "array set panalysis \{ [array get panalysis] \}"
# Other
puts $ch ""
puts $ch "\# Colorbar prefs"
global colorbar
global pcolorbar
puts $ch "global colorbar"
puts $ch "global pcolorbar"
puts $ch "array set pcolorbar \{ [array get pcolorbar] \}"
puts $ch {array set colorbar [array get pcolorbar]}
# and close
close $ch
}
# Backward Compatibility
proc FixVar {varname ovarname} {
global aa bb
set aa $varname
set bb $ovarname
uplevel #0 {
if {[info exists $bb]} {
set $aa [expr $$bb]
unset $bb
}
}
}
proc FixVarSet {varname ovarname} {
global aa bb
set aa $varname
set bb $ovarname
uplevel #0 {
if {[info exists $bb]} {
set $aa [expr $$bb]
}
}
}
proc FixVarRm {ovarname} {
global aa
set aa $ovarname
uplevel #0 {
if {[info exists $aa]} {
unset $aa
}
}
}
proc FixFontVar {weightname slantname stylename} {
global aa bb cc
set aa $weightname
set bb $slantname
set cc $stylename
uplevel #0 {
if {[info exists $cc]} {
switch [expr $$cc] {
normal {
set $aa normal
set $bb roman
}
bold {
set $aa bold
set $bb roman
}
italic {
set $aa normal
set $bb italic
}
}
unset $cc
}
}
}
# we only support 6.x and higher
proc FixPrefs {version} {
set major [lindex [split $version {.}] 0]
if {$major == {5}} {
set version 5.x
}
switch $version {
5.x {
FixPrefs5.xto6.0
FixPrefs6.0to6.1
FixPrefs6.1to6.2
FixPrefs6.2to7.0
FixPrefs7.0to7.1
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
6.0 {
FixPrefs6.0to6.1
FixPrefs6.1to6.2
FixPrefs6.2to7.0
FixPrefs7.0to7.1
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
6.1 -
6.1.1 -
6.1.2 {
FixPrefs6.1to6.2
FixPrefs6.2to7.0
FixPrefs7.0to7.1
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
6.2 {
FixPrefs6.2to7.0
FixPrefs7.0to7.1
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
7.0 {
FixPrefs7.0to7.1
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
7.1 {
FixPrefs7.1to7.2
FixPrefs7.2to7.3
}
7.2 {
FixPrefs7.2to7.3
}
7.3 -
7.3.1 -
7.3.2 {
}
7.4 {
}
7.5 {
FixPrefs7.4to7.5
}
}
}
proc FixPrefs7.4to7.5 {} {
FixVarRm pds9(threads)
}
proc FixPrefs7.2to7.3 {} {
global current
if {$current(mode) == {pointer}} {
set current(mode) region
}
FixVar pbuttons(edit,region) pbuttons(edit,pointer)
FixVar pbuttons(frame,match,cube,image) pbuttons(frame,match,cube)
FixVar pbuttons(frame,lock,cube,image) pbuttons(frame,lock,cube)
FixVar pap(axis,x,grid) pap(graph,x,grid)
FixVar pap(axis,x,log) pap(graph,x,log)
FixVar pap(axis,x,flip) pap(graph,x,flip)
FixVar pap(axis,y,grid) pap(graph,y,grid)
FixVar pap(axis,y,log) pap(graph,y,log)
FixVar pap(axis,y,flip) pap(graph,y,flip)
FixVar pap(graph,title,family) pap(titleFont)
FixVar pap(graph,title,size) pap(titleSize)
FixVar pap(graph,title,weight) pap(titleWeight)
FixVar pap(graph,title,slant) pap(titleSlant)
FixVar pap(axis,title,family) pap(textlabFont)
FixVar pap(axis,title,size) pap(textlabSize)
FixVar pap(axis,title,weight) pap(textlabWeight)
FixVar pap(axis,title,slant) pap(textlabSlant)
FixVar pap(axis,font,family) pap(numlabFont)
FixVar pap(axis,font,size) pap(numlabSize)
FixVar pap(axis,font,weight) pap(numlabWeight)
FixVar pap(axis,font,slant) pap(numlabSlant)
FixVar pap(show) pap(linear)
FixVar pap(shape,color) pap(discrete,color)
FixVar pap(shape,fill) pap(discrete,fill)
FixVar pap(width) pap(linear,width)
FixVar pap(color) pap(linear,color)
if {[info exists pap(linear,dash)]} {
set pap(linear,dash) [FromYesNo $pap(linear,dash)]
}
FixVar pap(dash) pap(linear,dash)
if {[info exists pap(discrete)]} {
if {$pap(discrete)} {
FixVar pap(shape,symbol) pap(discrete,symbol)
} else {
FixVarRm pap(discrete,symbol)
}
}
FixVarRm pap(bar)
FixVarRm pap(bar,color)
FixVarRm pap(discrete)
FixVarRm pap(linear,dash)
FixVarRm pap(quadratic)
FixVarRm pap(quadratic,width)
FixVarRm pap(quadratic,color)
FixVarRm pap(quadratic,dash)
FixVarRm pap(step)
FixVarRm pap(step,color)
FixVarRm pap(step,dash)
FixVarRm pap(step,width)
}
proc FixPrefs7.1to7.2 {} {
FixVar pbuttons(file,xpa,info) pbuttons(file,xpa)
FixVar pcurrent(align) pwcs(align)
}
proc FixPrefs7.0to7.1 {} {
global pap
if {[info exists pap(grid)]} {
set pap(grid,x) $pap(grid)
set pap(grid,y) $pap(grid)
switch $pap(grid,log) {
linearlinear {
set pap(grid,xlog) 0
set pap(grid,ylog) 0
}
linearlog {
set pap(grid,xlog) 0
set pap(grid,ylog) 1
}
loglinear {
set pap(grid,xlog) 1
set pap(grid,ylog) 0
}
loglog {
set pap(grid,xlog) 1
set pap(grid,ylog) 1
}
}
unset pap(grid)
unset pap(grid,log)
}
}
proc FixPrefs6.2to7.0 {} {
global ps
global pps
switch $pps(scale) {
scaled -
fixed {
set ps(scale) 100
set pps(scale) 100
}
}
global colorbar
global pcolorbar
set colorbar(map) [string tolower $colorbar(map)]
set pcolorbar(map) [string tolower $pcolorbar(map)]
FixVar pbuttons(frame,match,frame,wcs) pbuttons(frame,matchframe,wcs)
FixVar pbuttons(frame,match,frame,image) pbuttons(frame,matchframe,image)
FixVar pbuttons(frame,match,frame,physical) pbuttons(frame,matchframe,physical)
FixVar pbuttons(frame,match,frame,amplifier) pbuttons(frame,matchframe,amplifier)
FixVar pbuttons(frame,match,frame,detector) pbuttons(frame,matchframe,detector)
FixVar pbuttons(bin,match) pbuttons(frame,matchbin)
FixVar pbuttons(scale,match) pbuttons(frame,matchscale)
FixVar pbuttons(color,match) pbuttons(frame,matchcolor)
FixVar ppanner(compass) ppanner(compass,image)
FixVarRm ppanner(compass,wcs,system)
FixVarRm ppanner(compass,wcs,sky)
global pmarker
FixVarRm pmarker(dialog,system)
FixVarRm pmarker(dialog,sky)
FixVarRm pmarker(dialog,skyformat)
FixVarRm pmarker(dialog,dist,system)
FixVarRm pmarker(dialog,dist,format)
# mousewheel MacOSX Lion
global tcl_platform
global ppanzoom
global pbin
switch -- $tcl_platform(os) {
Darwin {
switch [lindex [split $tcl_platform(osVersion) {.}] 0] {
11 {
set ppanzoom(wheel,factor) 1.01
set pbin(wheel,factor) 1.01
}
}
}
}
global pcoord
FixVarRm pcoord(sky)
FixVarRm pcoord(skyformat)
}
proc FixPrefs6.1to6.2 {} {
FixVar pbuttons(frame,matchframe,wcs) pbuttons(frame,matchframe)
global pds9
switch -- $pds9(font) {
helvetica -
courier -
times {}
default {set pds9(font) helvetica}
}
switch -- $pds9(font,size) {
10 {set pds9(font,size) 9}
}
FixVar pmarker(centroid,auto) pmarker(autocentroid)
FixVarRm marker(autocentroid)
FixFontVar pds9(font,weight) pds9(font,slant) pds9(font,style)
FixFontVar pmarker(font,weight) pmarker(font,slant) pmarker(font,style)
FixFontVar pcolorbar(font,weight) pcolorbar(font,slant) \
pcolorbar(font,style)
}
proc FixPrefs6.0to6.1 {} {
# ds9
FixVar pds9(automarker) ds9(automarker)
FixVar pds9(xpa) ds9(xpa)
FixVar pds9(samp) ds9(samp,auto)
FixVar pds9(confirm) ds9(confirm)
FixVar pds9(bg) ds9(bg,color)
FixVar pds9(nan) ds9(nan,color)
FixVar pds9(dialog) ds9(dialog)
FixVar pds9(language) ds9(language)
FixVar pds9(language,name) ds9(language,name)
FixVar pds9(language,dir) ds9(language,dir)
FixVar pds9(font) ds9(font)
FixVar pds9(font,size) ds9(font,size)
FixVar pds9(font,style) ds9(font,style)
FixVar pcurrent(display) ds9(display,user)
FixVar pcurrent(mode) pds9(mode)
# note: versions 5.3 to 6.0 have array set ds9 [array get pds9]
# which will set following ds9(var), so delete
FixVarRm ds9(samp)
FixVarRm ds9(backup)
FixVarRm ds9(nan)
# which will overwrite the following ds9(var), so reset
global ds9
set ds9(bg) white
# analysis
FixVar panalysis(user) ds9(analysis,user)
FixVar panalysis(user2) ds9(analysis,user2)
FixVar panalysis(user3) ds9(analysis,user3)
FixVar panalysis(user4) ds9(analysis,user4)
global analysis
catch {unset analysis}
# magnifier
FixVar pmagnifier(region) magnifier(region)
FixVar pmagnifier(zoom) magnifier(zoom)
FixVar pmagnifier(cursor) magnifier(cursor)
global magnifier
catch {unset magnifier}
# panner
FixVar ppanner(compass,image) panner(compass,image)
FixVar ppanner(compass,wcs) panner(compass,wcs)
FixVar ppanner(compass,wcs,system) panner(compass,wcs,system)
FixVar ppanner(compass,wcs,sky) panner(compass,wcs,sky)
global panner
catch {unset panner}
# examine
FixVar pexamine(mode) examine(mode)
FixVar pexamine(zoom) examine(zoom)
global examine
catch {unset examine}
# vo
FixVar pvo(server) vo(server)
FixVar pvo(hv) vo(hv)
FixVar pvo(method) vo(method)
FixVar pvo(delay) vo(delay)
global vo
catch {unset vo}
# http
FixVar phttp(proxy) http(proxy)
FixVar phttp(proxy,host) http(proxy,host)
FixVar phttp(proxy,port) http(proxy,port)
FixVar phttp(auth) http(auth)
FixVar phttp(auth,user) http(auth,user)
FixVar phttp(auth,passwd) http(auth,passwd)
global http
catch {unset http}
# nres
FixVar pnres(server) nres(server)
# graph
FixVarSet pgraph(horz,grid) graph(horz,grid)
FixVarSet pgraph(horz,log) graph(horz,log)
FixVarSet pgraph(vert,grid) graph(vert,grid)
FixVarSet pgraph(vert,log) graph(vert,log)
# global graph
# catch {unset graph}
# cat
FixVar pcat(server) cat(server)
FixVar pcat(sym,shape) cat(sym,shape)
FixVar pcat(sym,color) cat(sym,color)
FixVar pcat(vot) cat(vot)
# contour
FixVarRm pcontour(color,msg)
# coords
global coord
catch {unset coord}
# scale
FixVarRm pscale(min)
FixVarRm pscale(max)
FixVarRm pscale(xaxis)
FixVarRm pscale(yaxis)
# marker
FixVarRm pmarker(maxdialog)
FixVarRm pmarker(load)
FixVarRm pmarker(paste,system)
FixVarRm pmarker(paste,sky)
FixVarRm pmarker(system)
FixVarRm pmarker(sky)
FixVarRm pmarker(skyformat)
FixVarRm pmarker(strip)
FixVarRm marker(dialog,system)
FixVarRm marker(dialog,sky)
FixVarRm marker(dialog,skyformat)
FixVarRm marker(dialog,dist,system)
FixVarRm marker(dialog,dist,format)
FixVarRm marker(circle,radius)
FixVarRm marker(annulus,inner)
FixVarRm marker(annulus,outer)
FixVarRm marker(annulus,annuli)
FixVarRm marker(panda,inner)
FixVarRm marker(panda,outer)
FixVarRm marker(panda,annuli)
FixVarRm marker(panda,ang1)
FixVarRm marker(panda,ang2)
FixVarRm marker(panda,angnum)
FixVarRm marker(ellipse,radius1)
FixVarRm marker(ellipse,radius2)
FixVarRm marker(ellipseannulus,radius1)
FixVarRm marker(ellipseannulus,radius2)
FixVarRm marker(ellipseannulus,radius3)
FixVarRm marker(ellipseannulus,annuli)
FixVarRm marker(epanda,radius1)
FixVarRm marker(epanda,radius2)
FixVarRm marker(epanda,radius3)
FixVarRm marker(epanda,annuli)
FixVarRm marker(epanda,ang1)
FixVarRm marker(epanda,ang2)
FixVarRm marker(epanda,angnum)
FixVarRm marker(box,radius1)
FixVarRm marker(box,radius2)
FixVarRm marker(boxannulus,radius1)
FixVarRm marker(boxannulus,radius2)
FixVarRm marker(boxannulus,radius3)
FixVarRm marker(boxannulus,annuli)
FixVarRm marker(bpanda,radius1)
FixVarRm marker(bpanda,radius2)
FixVarRm marker(bpanda,radius3)
FixVarRm marker(bpanda,annuli)
FixVarRm marker(bpanda,ang1)
FixVarRm marker(bpanda,ang2)
FixVarRm marker(bpanda,angnum)
FixVarRm marker(polygon,width)
FixVarRm marker(polygon,height)
FixVarRm marker(projection,thick)
FixVarRm marker(compass,radius)
FixVarRm marker(point,size)
}
proc FixPrefs5.xto6.0 {} {
FixVar pap(grid) prefs(ap,grid)
FixVar pap(grid,log) prefs(ap,grid,log)
FixVar pap(discrete) prefs(ap,discrete)
FixVar pap(discrete,symbol) prefs(ap,discrete,symbol)
FixVar pap(discrete,color) prefs(ap,discrete,color)
FixVar pap(linear) prefs(ap,linear)
FixVar pap(linear,width) prefs(ap,linear,width)
FixVar pap(linear,color) prefs(ap,linear,color)
FixVar pap(linear,dash) prefs(ap,linear,dash)
FixVar pap(step) prefs(ap,step)
FixVar pap(step,width) prefs(ap,step,width)
FixVar pap(step,color) prefs(ap,step,color)
FixVar pap(step,dash) prefs(ap,step,dash)
FixVar pap(quadratic) prefs(ap,quadratic)
FixVar pap(quadratic,width) prefs(ap,quadratic,width)
FixVar pap(quadratic,color) prefs(ap,quadratic,color)
FixVar pap(quadratic,dash) prefs(ap,quadratic,dash)
FixVar pap(error,color) prefs(ap,error,color)
FixVar pap(error,width) prefs(ap,error,width)
FixVar pap(error,style) prefs(ap,error,style)
FixVar pap(titleFont) prefs(ap,titleFont)
FixVar pap(titleSize) prefs(ap,titleSize)
FixVar pap(titleStyle) prefs(ap,titleStyle)
FixVar pap(textlabFont) prefs(ap,textlabFont)
FixVar pap(textlabSize) prefs(ap,textlabSize)
FixVar pap(textlabStyle) prefs(ap,textlabStyle)
FixVar pap(numlabFont) prefs(ap,numlabFont)
FixVar pap(numlabSize) prefs(ap,numlabSize)
FixVar pap(numlabStyle) prefs(ap,numlabStyle)
FixVar pcurrent(zoom) prefs(zoom)
FixVar pcurrent(orient) prefs(orient)
FixVar pcurrent(rotate) prefs(rotate)
FixVar panalysis(log) prefs(analysis,log)
FixVar pds9(mode) prefs(ds9,mode)
FixVar pblink(interval) prefs(blink,interval)
FixVar ptile(mode) prefs(tile,mode)
FixVar pcolorbar(map) prefs(colorbar,map)
FixVar pcolorbar(invert) prefs(colorbar,invert)
FixVar pmarker(shape) prefs(marker,shape)
FixVar pmarker(color) prefs(marker,color)
FixVar pmarker(width) prefs(marker,width)
FixVar pmarker(fixed) prefs(marker,fixed)
FixVar pmarker(edit) prefs(marker,edit)
FixVar pmarker(move) prefs(marker,move)
FixVar pmarker(rotate) prefs(marker,rotate)
FixVar pmarker(delete) prefs(marker,delete)
FixVar pmarker(include) prefs(marker,include)
FixVar pmarker(source) prefs(marker,source)
FixVar pmarker(font) prefs(marker,font)
FixVar pmarker(font,size) prefs(marker,font,size)
FixVar pmarker(font,style) prefs(marker,font,style)
FixVar pmarker(format) prefs(marker,format)
FixVar pmarker(strip) prefs(marker,strip)
FixVar pmarker(system) prefs(marker,system)
FixVar pmarker(sky) prefs(marker,sky)
FixVar pmarker(skyformat) prefs(marker,skyformat)
FixVarRm prefs(marker,wcs)
FixVarRm marker(wcs)
FixVarRm marker(polygon,width)
FixVarRm marker(polygon,height)
FixVar pmarker(dialog,system) marker(dialog,system)
FixVar pmarker(dialog,sky) marker(dialog,sky)
FixVar pmarker(dialog,skyformat) marker(dialog,skyformat)
FixVar pmarker(dialog,dist,system) marker(dialog,dist,system)
FixVar pmarker(dialog,dist,format) marker(dialog,dist,format)
FixVar pmarker(circle,radius) marker(circle,radius)
FixVar pmarker(annulus,inner) marker(annulus,inner)
FixVar pmarker(annulus,outer) marker(annulus,outer)
FixVar pmarker(annulus,annuli) marker(annulus,annuli)
FixVar pmarker(panda,inner) marker(panda,inner)
FixVar pmarker(panda,outer) marker(panda,outer)
FixVar pmarker(panda,annuli) marker(panda,annuli)
FixVar pmarker(panda,ang1) marker(panda,ang1)
FixVar pmarker(panda,ang2) marker(panda,ang2)
FixVar pmarker(panda,angnum) marker(panda,angnum)
FixVar pmarker(ellipse,radius1) marker(ellipse,radius1)
FixVar pmarker(ellipse,radius2) marker(ellipse,radius2)
FixVar pmarker(ellipseannulus,radius1) marker(ellipseannulus,radius1)
FixVar pmarker(ellipseannulus,radius2) marker(ellipseannulus,radius2)
FixVar pmarker(ellipseannulus,radius3) marker(ellipseannulus,radius3)
FixVar pmarker(ellipseannulus,annuli) marker(ellipseannulus,annuli)
FixVar pmarker(epanda,radius1) marker(epanda,radius1)
FixVar pmarker(epanda,radius2) marker(epanda,radius2)
FixVar pmarker(epanda,radius3) marker(epanda,radius3)
FixVar pmarker(epanda,annuli) marker(epanda,annuli)
FixVar pmarker(epanda,ang1) marker(epanda,ang1)
FixVar pmarker(epanda,ang2) marker(epanda,ang2)
FixVar pmarker(epanda,angnum) marker(epanda,angnum)
FixVar pmarker(box,radius1) marker(box,radius1)
FixVar pmarker(box,radius2) marker(box,radius2)
FixVar pmarker(boxannulus,radius1) marker(boxannulus,radius1)
FixVar pmarker(boxannulus,radius2) marker(boxannulus,radius2)
FixVar pmarker(boxannulus,radius3) marker(boxannulus,radius3)
FixVar pmarker(boxannulus,annuli) marker(boxannulus,annuli)
FixVar pmarker(bpanda,radius1) marker(bpanda,radius1)
FixVar pmarker(bpanda,radius2) marker(bpanda,radius2)
FixVar pmarker(bpanda,radius3) marker(bpanda,radius3)
FixVar pmarker(bpanda,annuli) marker(bpanda,annuli)
FixVar pmarker(bpanda,ang1) marker(bpanda,ang1)
FixVar pmarker(bpanda,ang2) marker(bpanda,ang2)
FixVar pmarker(bpanda,angnum) marker(bpanda,angnum)
FixVar pmarker(projection,thick) marker(projection,thick)
FixVar pmarker(point,size) marker(point,size)
# buttons
global buttons
global pbuttons
if {[info exists buttons(file,about)]} {
foreach nn [array names buttons] {
set aa [split $nn ,]
if {[lindex $aa 1] != {}} {
switch [lindex $aa 0] {
file -
edit -
view -
frame -
bin -
zoom -
scale -
color -
region -
wcs -
help {
set pbuttons($nn) $buttons($nn)
unset buttons($nn)
}
}
}
}
FixVar pbuttons(scale,995) buttons(scale,99.5)
FixVar pbuttons(scale,925) buttons(scale,92.5)
FixVar pbuttons(zoom,i32) buttons(zoom,1/32)
FixVar pbuttons(zoom,i16) buttons(zoom,1/16)
FixVar pbuttons(zoom,i8) buttons(zoom,1/8)
FixVar pbuttons(zoom,i4) buttons(zoom,1/4)
FixVar pbuttons(zoom,i2) buttons(zoom,1/2)
FixVarRm pbuttons(scale,92.5)
FixVarRm pbuttons(scale,99.5)
FixVarRm pbuttons(zoom,1/32)
FixVarRm pbuttons(zoom,1/16)
FixVarRm pbuttons(zoom,1/8)
FixVarRm pbuttons(zoom,1/4)
FixVarRm pbuttons(zoom,1/2)
}
}
|