blob: 87617b81bef0c1c238791ddc8e72e0f8736d0eb8 (
plain) (
blame)
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
|
#!/usr/local/bin/obmsh
#
# XIMTOOL.GUI -- Default GUI for the Ximtool image display server.
#
# Version 1.3 -- EXPORT VERSION
set Version "NOAO/IRAF XImtool Version 1.3EXPORT"
reset-server
set Objects(ximtool) { \
toplevel Layout display \
\
display Group menuGroup\
menuGroup Layout menubar\
menubar MenuButton fileButton \
menubar MenuButton viewButton \
menubar MenuButton optionsButton \
menubar Label imageTitle \
menubar Toggle controlButton \
menubar Toggle xflipButton \
menubar Toggle yflipButton \
menubar Command prevButton \
menubar MenuButton frameButton \
menubar Command nextButton \
menubar Toggle helpButton \
\
display Frame imageFrame\
imageFrame Gterm imagewin\
display Frame cbarFrame\
cbarFrame Gterm colorbar\
display Toggle hcut\
display Toggle vcut\
display Frame hcutFrame\
hcutFrame Gterm hcutPlot\
display Frame vcutFrame\
vcutFrame Gterm vcutPlot\
\
display Group plotOpts\
plotOpts Layout poptsLayout\
poptsLayout TextToggle plotSpeed\
poptsLayout TextToggle plotAccurate\
poptsLayout TextToggle plotImgPix\
poptsLayout Frame optLine\
poptsLayout TextToggle curJump\
poptsLayout TextToggle curSmooth\
poptsLayout TextToggle curTrack\
}
|