blob: 4b1a0ab0896c834aff29b9d55c49034b89bf8955 (
plain)
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
|
# 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 SaveDef {} {
global savefits
set savefits(type) image
set savefits(mosaic) 1
}
proc Save {format fn} {
global savefits
switch -- $format {
fits {SaveFitsFile $savefits(type) $fn}
sfits {}
rgbimage {SaveRGBImageFile $fn}
rgbcube {SaveRGBCubeFile $fn}
srgbcube {}
mecube {SaveMECubeFile $fn}
multiframe {}
mosaicimage -
mosaicimagewcs {SaveMosaicImageWCSFile $fn}
mosaicimageiraf {}
mosaicimagewfpc {}
mosaic -
mosaicwcs {SaveMosaicWCSFile $fn $savefits(mosaic)}
mosaiciraf {}
smosaicwcs {}
smosaiciraf {}
}
}
# Process Cmds
proc ProcessSaveCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
ProcessRealizeDS9
save::YY_FLUSH_BUFFER
save::yy_scan_string [lrange $var $i end]
save::yyparse
incr i [expr $save::yycnt-1]
}
proc SaveCmdLoad {format fn} {
FileLast savefitsfbox $fn
Save $format $fn
}
# Support
proc SaveDialog {format} {
global savefits
global current
set fn [SaveFileDialog savefitsfbox]
set which image
if {$fn != {}} {
set ok 1
if {$current(frame) != {}} {
switch -- $format {
fits {
if {[$current(frame) has fits bin]} {
set ok [SaveParams savefits]
}
}
slice {
set format fits
set savefits(type) slice
}
mosaicwcs -
mosaiciraf {
if {[$current(frame) has fits mosaic]} {
set ok [SaveMosaicParams savefits]
}
}
}
}
if {$ok} {
Save $format $fn
}
}
}
proc SaveParams {varname} {
upvar $varname var
global ed2
set w {.savefits}
set ed2(ok) 0
set ed2(type) $var(type)
DialogCreate $w {Fits} ed2(ok)
# Param
set f [ttk::frame $w.param]
ttk::label $f.tfits -text [msgcat::mc {Fits}]
ttk::radiobutton $f.image -text [msgcat::mc {Image}] \
-variable ed2(type) -value image
ttk::radiobutton $f.table -text {Table} \
-variable ed2(type) -value table
grid $f.tfits $f.image $f.table -padx 2 -pady 2 -sticky w
# Buttons
set f [ttk::frame $w.buttons]
ttk::button $f.ok -text [msgcat::mc {OK}] -command {set ed2(ok) 1} \
-default active
ttk::button $f.cancel -text [msgcat::mc {Cancel}] -command {set ed2(ok) 0}
pack $f.ok $f.cancel -side left -expand true -padx 2 -pady 4
bind $w <Return> {set ed2(ok) 1}
# 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
DialogCenter $w
DialogWait $w ed2(ok)
DialogDismiss $w
if {$ed2(ok)} {
set var(type) $ed2(type)
}
set rr $ed2(ok)
unset ed2
return $rr
}
proc SaveMosaicParams {varname} {
upvar $varname var
global ed2
set w {.savefits}
set ed2(ok) 0
set ed2(mosaic) $var(mosaic)
DialogCreate $w {Mosaic} ed2(ok)
# Param
set f [ttk::frame $w.param]
ttk::label $f.tmosaic -text [msgcat::mc {Mosaic}]
ttk::entry $f.mosaic -textvariable ed2(mosaic) -width 8
grid $f.tmosaic $f.mosaic -padx 2 -pady 2 -sticky w
# Buttons
set f [ttk::frame $w.buttons]
ttk::button $f.ok -text [msgcat::mc {OK}] -command {set ed2(ok) 1} \
-default active
ttk::button $f.cancel -text [msgcat::mc {Cancel}] -command {set ed2(ok) 0}
pack $f.ok $f.cancel -side left -expand true -padx 2 -pady 4
bind $w <Return> {set ed2(ok) 1}
# 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
DialogCenter $w
DialogWait $w ed2(ok)
DialogDismiss $w
if {$ed2(ok)} {
set var(mosaic) $ed2(mosaic)
}
set rr $ed2(ok)
unset ed2
return $rr
}
|