summaryrefslogtreecommitdiffstats
path: root/ds9/library/mask.tcl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-04-24 19:42:03 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-04-24 19:42:03 (GMT)
commitf46f5e4aac83baa513c957a989ba539363632cd8 (patch)
treeec98394a92f7abc0216cd50cabcd7b7a0cb82f02 /ds9/library/mask.tcl
parent61cf33e9c65c578e6fc0c26467eca28faf30cf77 (diff)
downloadblt-f46f5e4aac83baa513c957a989ba539363632cd8.zip
blt-f46f5e4aac83baa513c957a989ba539363632cd8.tar.gz
blt-f46f5e4aac83baa513c957a989ba539363632cd8.tar.bz2
tweak mask GUI
Diffstat (limited to 'ds9/library/mask.tcl')
-rw-r--r--ds9/library/mask.tcl12
1 files changed, 6 insertions, 6 deletions
diff --git a/ds9/library/mask.tcl b/ds9/library/mask.tcl
index 3015a99..07c267a 100644
--- a/ds9/library/mask.tcl
+++ b/ds9/library/mask.tcl
@@ -97,11 +97,12 @@ proc MaskDialog {} {
$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 {Align}] -menu $mb.align
menu $mb.file
- $mb.file add command -label "[msgcat::mc {Open}]..." \
+ $mb.file add command -label "[msgcat::mc {Load}]..." \
-command [list OpenDialog fits mask]
- $mb.file add cascade -label [msgcat::mc {Open as}] \
+ $mb.file add cascade -label [msgcat::mc {Load as}] \
-menu $mb.file.open
$mb.file add separator
$mb.file add cascade -label [msgcat::mc {Import}] \
@@ -132,6 +133,8 @@ proc MaskDialog {} {
EditMenu $mb imask
+ CoordMenu $mb.align mask system 1 {} {} MaskSystem
+
# Param
set f [ttk::frame $w.param]
@@ -237,9 +240,6 @@ proc MaskParamsDialog {} {
# Param
set f [ttk::frame $w.param]
- ttk::label $f.coordtitle -text [msgcat::mc {Coordinate System}]
- CoordMenuButton $f.coordbutton mask system 1 {} {} {}
-
ttk::label $f.colortitle -text [msgcat::mc {Color}]
ColorMenuButton $f.colorbutton ed color {}
@@ -262,7 +262,6 @@ proc MaskParamsDialog {} {
ttk::entry $f.low -textvariable ed(low) -width 13
ttk::entry $f.high -textvariable ed(high) -width 13
- grid $f.coordtitle $f.coordbutton -padx 2 -pady 2 -sticky w
grid $f.colortitle $f.colorbutton -padx 2 -pady 2 -sticky w
grid $f.marktitle $f.markbutton -padx 2 -pady 2 -sticky w
grid $f.rangetitle $f.low $f.high -padx 2 -pady 2 -sticky w
@@ -301,6 +300,7 @@ proc MaskBackup {ch which} {
puts $ch "$which mask color [$which get mask color]"
puts $ch "$which mask mark [$which get mask mark]"
puts $ch "$which mask range [$which get mask range]"
+ puts $ch "$which mask system [$which get mask system]"
puts $ch "$which mask transparency [$which get mask transparency]"
}