aboutsummaryrefslogtreecommitdiff
path: root/sys/gio/cursor/gtrrcur.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/gio/cursor/gtrrcur.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'sys/gio/cursor/gtrrcur.x')
-rw-r--r--sys/gio/cursor/gtrrcur.x32
1 files changed, 32 insertions, 0 deletions
diff --git a/sys/gio/cursor/gtrrcur.x b/sys/gio/cursor/gtrrcur.x
new file mode 100644
index 00000000..495117a3
--- /dev/null
+++ b/sys/gio/cursor/gtrrcur.x
@@ -0,0 +1,32 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <gki.h>
+
+# GTR_READCURSOR -- Read the graphics cursor position in NDC coordinates.
+# By the time we are called the plot has already been drawn and the
+# workstation closed, hence we must reopen the workstation to read the
+# cursor (the graphics terminal will not be in graphics mode otherwise).
+
+int procedure gtr_readcursor (fd, key, sx, sy, raster, rx, ry)
+
+int fd #I graphics stream
+int key #O keystroke value
+real sx, sy #O NDC screen coords of cursor
+int raster #O raster number
+real rx, ry #O NDC raster coords of cursor
+
+int cn
+int m_sx, m_sy
+int m_rx, m_ry
+
+begin
+ call gki_getcursor (fd, 0,
+ cn, key, m_sx, m_sy, raster, m_rx, m_ry)
+
+ sx = real(m_sx) / GKI_MAXNDC
+ sy = real(m_sy) / GKI_MAXNDC
+ rx = real(m_rx) / GKI_MAXNDC
+ ry = real(m_ry) / GKI_MAXNDC
+
+ return (key)
+end