diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /sys/psio/pscenter.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/psio/pscenter.x')
-rw-r--r-- | sys/psio/pscenter.x | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/psio/pscenter.x b/sys/psio/pscenter.x new file mode 100644 index 00000000..818c33cb --- /dev/null +++ b/sys/psio/pscenter.x @@ -0,0 +1,36 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include "psio.h" + + +# PS_CENTER -- Center the string on the page and break. + +procedure ps_center (ps, str) + +pointer ps #I PSIO descriptor +char str[ARB] #I text string + +int mtemp, ps_centerPos() +errchk ps_centerpos, ps_output + +begin + mtemp = PS_CLMARGIN(ps) + PS_CLMARGIN(ps) = ps_centerpos (ps, str) + call ps_output (ps, str, NO) + PS_CLMARGIN(ps) = mtemp +end + + +# PS_CENTERPOS -- Get the X position of the centered string. + +int procedure ps_centerpos (ps, str) + +pointer ps #I PSIO descriptor +char str[ARB] #I string to center + +int ps_textwidth() +errchk ps_textwidth + +begin + return (((PS_PWIDTH(ps) * RESOLUTION)/2) - ps_textwidth (ps, str) / 2) +end |