summaryrefslogtreecommitdiffstats
path: root/ds9/library/win32.tcl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 19:01:15 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 19:01:15 (GMT)
commit12166aa342f7c8d905097e43a1f50e0775503069 (patch)
tree73a6e7296fbf9898633a02c2503a3e959789d8c3 /ds9/library/win32.tcl
parentd4d595fa7fb12903db9227d33d48b2b00120dbd1 (diff)
downloadblt-12166aa342f7c8d905097e43a1f50e0775503069.zip
blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.gz
blt-12166aa342f7c8d905097e43a1f50e0775503069.tar.bz2
Initial commit
Diffstat (limited to 'ds9/library/win32.tcl')
-rwxr-xr-xds9/library/win32.tcl27
1 files changed, 27 insertions, 0 deletions
diff --git a/ds9/library/win32.tcl b/ds9/library/win32.tcl
new file mode 100755
index 0000000..32a8a86
--- /dev/null
+++ b/ds9/library/win32.tcl
@@ -0,0 +1,27 @@
+# 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 Win32Print {} {
+ global ds9
+
+ # we need to be realized
+ RealizeDS9
+ # need the colorbar levels updated
+ UpdateColormapLevel
+
+ if {[win32 pm print begin [winfo width $ds9(canvas)] [winfo height $ds9(canvas)] yes]} {
+ foreach f $ds9(frames) {
+ $f win32 print
+ }
+ colorbar win32 print
+ colorbarrgb win32 print
+ win32 pm print end
+ }
+}
+
+proc Win32PageSetup {} {
+ win32 pm pagesetup
+}