annotate docs/basic09/gfx2.appendix @ 2569:d139f4b0b123

Copied from coco3 bootlists
author boisy
date Sun, 03 Apr 2011 16:12:55 +0000
parents 07a25643d033
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
973
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1 <appendix>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
2 <title>GFX2: CoCo3 Graphics Subroutine Module</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
3
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
4 <refentry id='arc'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
5 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
6 <refname>arc</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
7 <refpurpose>Draw an arc.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
8 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
9
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
10 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
11 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
12 <command>RUN GFX2 ( [path,] "ARC" [,mx, my], xrad, yrad, xcor1, ycor1,
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
13 xcor2, ycor2)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
14 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
15 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
16
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
17 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
18 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
19
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
20 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
21 <replaceable>mx, my</replaceable> X &amp; Y coordinates for the center of the arc.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
22 <replaceable>xrad</replaceable> Radius of the arcs width.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
23 <replaceable>yrad</replaceable> Radius of the arcs height.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
24 <replaceable>xcor1, ycor1</replaceable> Beginning and ending coordinates for an imaginary
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
25 <replaceable>xcor2, ycor2</replaceable> line relative to the center of the arc (0, 0) that
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
26 GFX2 uses for drawing the arc. Drawing starts at
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
27 the point of the arc closest to xcor1, ycor1.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
28 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
29 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
30 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
31 <refentry id='bar'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
32 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
33 <refname>bar</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
34 <refpurpose>Draws a filled in rectangle.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
35 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
36
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
37
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
38 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
39 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
40 <command>RUN GFX2 ( [path,] "BAR" [,xcor1, ycor1], xcor2, ycor2)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
41 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
42 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
43
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
44 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
45 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
46
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
47 <replaceable>path</replaceable> Route to the window to draw in.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
48 <replaceable>xcor1, ycor1</replaceable> Beginning coordinates of the rectangle.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
49 <replaceable>xcor2, ycor2</replaceable> Ending coordinates of the rectangle.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
50 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
51 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
52 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
53 <refentry id='bell'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
54 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
55 <refname>bell</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
56 <refpurpose>Produce a beep through the terminal's speaker.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
57 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
58
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
59
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
60 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
61 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
62 <command>RUN GFX2 ("BELL")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
63 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
64 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
65
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
66 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
67 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
68 None
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
69 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
70 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
71 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
72 <refentry id='blnkoff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
73 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
74 <refname>blnkoff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
75 <refpurpose>Turn off blinking for characters being sent to a text window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
76 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
77
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
78
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
79 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
80 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
81 <command>RUN GFX2 ( [path,] "BLNKOFF")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
82 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
83 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
84
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
85 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
86 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
87
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
88 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
89 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
90 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
91 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
92 <refentry id='blnkon'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
93 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
94 <refname>blnkon</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
95 <refpurpose>Turn on blinking for characters being sent to a text window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
96 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
97
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
98
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
99 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
100 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
101 <command>RUN GFX2 ( [path,] "BLNKON")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
102 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
103 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
104
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
105 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
106 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
107
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
108 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
109 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
110 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
111 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
112 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
113 Does not work on a graphics window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
114 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
115 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
116 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
117 <refentry id='boldsw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
118 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
119 <refname>boldsw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
120 <refpurpose>Turn bold printing on or off for characters being printed.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
121 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
122
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
123 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
124 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
125 <command>RUN GFX2 ( [path,] "BOLDSW", "switch")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
126 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
127 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
128
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
129 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
130 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
131
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
132 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
133 <replaceable>switch</replaceable> "ON" to turn bold on. "OFF" to turn bold off.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
134 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
135 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
136 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
137 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
138 Only works on a graphics window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
139 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
140 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
141 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
142 <refentry id='border'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
143 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
144 <refname>border</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
145 <refpurpose>Set the border color palette.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
146 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
147
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
148
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
149 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
150 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
151 <command>RUN GFX2 ( [path,] "BORDER", color)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
152 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
153 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
154
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
155 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
156 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
157
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
158 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
159 <replaceable>color</replaceable> Palette number to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
160 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
161 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
162 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
163 <refentry id='box'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
164 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
165 <refname>box</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
166 <refpurpose>Draw a rectangle on a graphics window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
167 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
168
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
169
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
170 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
171 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
172 <command>RUN GFX2 ( [path,] "BOX" [,xcor1, ycor1], xcor2, ycor2)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
173 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
174 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
175
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
176 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
177 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
178
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
179 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
180 <replaceable>xcor1, ycor1</replaceable> Beginning coordinates for the box.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
181 <replaceable>xcor2, ycor2</replaceable> Ending coordinates for the box.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
182 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
183 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
184 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
185 <refentry id='circle'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
186 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
187 <refname>circle</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
188 <refpurpose>Draw a circle on a graphics window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
189 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
190
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
191
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
192 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
193 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
194 <command>RUN GFX2 ( [path,] "CIRCLE" [,xcor, ycor], radius)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
195 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
196 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
197
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
198 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
199 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
200
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
201 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
202 <replaceable>xcor, ycor</replaceable> Coordinates to use as the center point.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
203 <replaceable>radius</replaceable> Radius of the circle.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
204 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
205 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
206 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
207 <refentry id='clear'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
208 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
209 <refname>clear</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
210 <refpurpose>Clear the screen.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
211 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
212
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
213
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
214 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
215 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
216 <command>RUN GFX2 ( [path,] "CLEAR")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
217 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
218 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
219
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
220 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
221 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
222
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
223 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
224 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
225 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
226 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
227 <refentry id='color'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
228 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
229 <refname>color</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
230 <refpurpose>Set the window colors.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
231 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
232
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
233
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
234 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
235 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
236 <command>RUN GFX2 ( [path,] "COLOR", foreground [,background] [,border] )</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
237 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
238 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
239
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
240 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
241 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
242
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
243 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
244 <replaceable>foreground</replaceable> Register number to use for the foreground color.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
245 <replaceable>background</replaceable> Register number to use for the background color.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
246 <replaceable>border</replaceable> Register number to use for the border color.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
247 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
248 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
249 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
250 <refentry id='crrtn'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
251 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
252 <refname>crrtn</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
253 <refpurpose>Sends a carriage return to the window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
254 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
255
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
256
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
257 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
258 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
259 <command>RUN GFX2 ( [path,] "CRRTN")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
260 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
261 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
262
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
263 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
264 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
265
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
266 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
267 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
268 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
269 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
270 <refentry id='curdwn'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
271 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
272 <refname>curdwn</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
273 <refpurpose>Moves the cursor down one text line.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
274 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
275
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
276
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
277 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
278 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
279 <command>RUN GFX2 ( [path,] "CURDWN")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
280 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
281 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
282
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
283 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
284 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
285
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
286 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
287 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
288 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
289 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
290 <refentry id='curhome'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
291 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
292 <refname>curhome</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
293 <refpurpose>Move the text cursor to the top left corner of the window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
294 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
295
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
296
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
297 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
298 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
299 <command>RUN GFX2 ( [path,] "CURHOME")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
300 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
301 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
302
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
303 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
304 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
305
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
306 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
307 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
308 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
309 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
310 <refentry id='curlft'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
311 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
312 <refname>curlft</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
313 <refpurpose>Move the text cursor one character to the left.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
314 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
315
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
316
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
317 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
318 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
319 <command>RUN GFX2 ( [path,] "CURLFT")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
320 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
321 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
322
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
323 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
324 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
325
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
326 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
327 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
328 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
329 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
330 <refentry id='curoff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
331 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
332 <refname>curoff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
333 <refpurpose>Make the cursor invisible.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
334 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
335
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
336
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
337 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
338 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
339 <command>RUN GFX2 ( [path,] "CUROFF")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
340 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
341 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
342
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
343 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
344 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
345
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
346 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
347 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
348 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
349 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
350 <refentry id='curon'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
351 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
352 <refname>curon</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
353 <refpurpose>Makes the text cursor visible.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
354 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
355
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
356
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
357 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
358 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
359 <command>RUN GFX2 ( [path,] "CURON")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
360 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
361 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
362
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
363 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
364 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
365
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
366 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
367 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
368 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
369 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
370 <refentry id='currgt'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
371 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
372 <refname>currgt</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
373 <refpurpose>Moves the text cursor one character to the right.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
374 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
375
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
376
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
377 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
378 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
379 <command>RUN GFX2 ( [path,] "CURRGT")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
380 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
381 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
382
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
383 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
384 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
385
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
386 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
387 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
388 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
389 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
390 <refentry id='curup'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
391 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
392 <refname>curup</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
393 <refpurpose>Move the text cursor up one line.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
394 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
395
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
396
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
397 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
398 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
399 <command>RUN GFX2 ( [path,] "CURUP")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
400 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
401 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
402
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
403 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
404 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
405
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
406 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
407 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
408 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
409 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
410 <refentry id='curxy'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
411 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
412 <refname>curxy</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
413 <refpurpose>Move the text cursor to X column and Y row.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
414 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
415
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
416
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
417 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
418 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
419 <command>RUN GFX2 ( [path,] "CURXY", column, row)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
420 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
421 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
422
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
423 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
424 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
425
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
426 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
427 <replaceable>column</replaceable> Horizontal position on the window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
428 <replaceable>row</replaceable> Vertical position on the window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
429
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
430 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
431 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
432 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
433 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
434 column and row are limited to the text size of the current window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
435 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
436 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
437 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
438 <refentry id='cwarea'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
439 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
440 <refname>cwarea</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
441 <refpurpose>Changes/sets the working area on the window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
442 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
443
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
444
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
445 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
446 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
447 <command>RUN GFX2 ( [path,] "CWAREA", xcor, ycor, sizex, sizey)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
448 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
449 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
450
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
451 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
452 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
453
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
454 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
455 <replaceable>xcor, ycor</replaceable> Upper left corner of the new working area, relative to
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
456 the original window. Coordinates are based on character
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
457 positions - not graphics locations.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
458 <replaceable>sizex</replaceable> Number of character positions wide for the new area.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
459 <replaceable>sizey</replaceable> Number of rows down for the new area.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
460 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
461 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
462 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
463 <refentry id='defbuff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
464 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
465 <refname>defbuff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
466 <refpurpose>Define a buffer for get/put operations.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
467 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
468
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
469
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
470 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
471 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
472 <command>RUN GFX2 ("DEFBUFF", group, buffer, size)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
473 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
474 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
475
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
476 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
477 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
478
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
479 <replaceable>group</replaceable> A reference number you select. Range 1-199.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
480 <replaceable>buffer</replaceable> A number you assign to this buffer. Range 1-255.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
481 <replaceable>size</replaceable> Size of this buffer. Range 1-8192 depending on how
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
482 much memory is available in this group.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
483 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
484 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
485 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
486 <refentry id='defcol'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
487 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
488 <refname>defcol</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
489 <refpurpose>Set palette registers to the default values.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
490 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
491
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
492
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
493 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
494 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
495 <command>RUN GFX2 ( [path,] "DEFCOL")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
496 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
497 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
498
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
499 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
500 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
501
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
502 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
503 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
504 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
505 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
506 <refentry id='dellin'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
507 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
508 <refname>dellin</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
509 <refpurpose>Delete the line of text the cursor is on.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
510 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
511
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
512
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
513 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
514 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
515 <command>RUN GFX2 ( [path,] "DELLIN")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
516 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
517 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
518
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
519 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
520 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
521
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
522 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
523 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
524 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
525 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
526 <refentry id='draw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
527 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
528 <refname>draw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
529 <refpurpose>Draw a polyline figure based on information in an option list.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
530 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
531
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
532
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
533 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
534 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
535 <command>RUN GFX2 ( [path,] "DRAW", option list)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
536 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
537 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
538
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
539 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
540 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
541
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
542 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
543 <replaceable>option list</replaceable> A string containing the draw options/instructions.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
544
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
545 Options:
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
546 Nnum North (up) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
547 Snum South (down) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
548 Enum East (right) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
549 Wnum West (left) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
550 NEnum NorthEast (up &amp; right) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
551 NWnum NorthWest (up &amp; left) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
552 SEnum SouthEast (down &amp; right) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
553 SWnum SouthWest (down &amp; left) num units.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
554 Aval Axis for north. 0=top 1=right 2=bottom 3=left
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
555 Uxcor, ycor Draw a line to x &amp; y coordinates relative to the
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
556 current draw pointer position.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
557 Bxcor, ycor Blank move to x &amp; y coordinates relative to the current
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
558 draw pointer position.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
559 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
560 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
561 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
562 <refentry id='dwend'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
563 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
564 <refname>dwend</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
565 <refpurpose>Deallocates (ends) a device window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
566 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
567
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
568
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
569 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
570 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
571 <command>RUN GFX2 ( [path,] "DWEND")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
572 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
573 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
574
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
575 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
576 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
577
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
578 <replaceable>path</replaceable> Route to the window you want to end.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
579 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
580 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
581 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
582 <refentry id='dwprotsw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
583 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
584 <refname>dwprotsw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
585 <refpurpose>Protect/unprotect a device window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
586 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
587
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
588
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
589 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
590 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
591 <command>RUN GFX2 ( [path,] "DWPROTSW", "switch")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
592 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
593 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
594
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
595 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
596 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
597
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
598 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
599 <replaceable>switch</replaceable> "ON" to protect a window. "OFF" to unprotect.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
600
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
601 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
602 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
603 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
604 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
605 Unprotected windowscan be covered by another window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
606 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
607 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
608 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
609 <refentry id='dwset'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
610 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
611 <refname>dwset</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
612 <refpurpose>Define a device window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
613 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
614
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
615
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
616 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
617 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
618 <command>RUN GFX2 ( [path,] "DWSET", format, xcor, ycor, width, length,
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
619 foreground, background, border)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
620 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
621 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
622
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
623 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
624 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
625
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
626 <replaceable>path</replaceable> Route to the window you want to define.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
627 <replaceable>format</replaceable> Code for the type of screen to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
628 <replaceable>xcor, ycor</replaceable> Coordinates for the upper left corner of the window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
629 <replaceable>width</replaceable> Width of the window, in characters.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
630 <replaceable>length</replaceable> Length of the window, in rows.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
631 <replaceable>foreground,</replaceable> Palettes to use for foreground, background, and
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
632 <replaceable>background,</replaceable> border colors.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
633 <replaceable>border</replaceable>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
634 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
635 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
636 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
637 <refentry id='ellipse'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
638 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
639 <refname>ellipse</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
640 <refpurpose>Draws an ellipse.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
641 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
642
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
643
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
644 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
645 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
646 <command>RUN GFX2 ( [path,] "ELLIPSE" [,xcor, ycor], xrad, yrad)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
647 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
648 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
649
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
650 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
651 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
652
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
653 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
654 <replaceable>xcor, ycor</replaceable> Coordinates for the center of the ellipse.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
655 <replaceable>xrad, yrad</replaceable> Radii of the ellipse's length and height.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
656 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
657 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
658 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
659 <refentry id='ereoline'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
660 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
661 <refname>ereoline</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
662 <refpurpose>Erase from the cursor to the end of the line.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
663 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
664
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
665
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
666 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
667 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
668 <command>RUN GFX2 ( [path,] "EREOLINE")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
669 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
670 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
671
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
672 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
673 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
674
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
675 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
676 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
677 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
678 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
679 <refentry id='ereowndw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
680 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
681 <refname>ereowndw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
682 <refpurpose>Erase from the line the cursor is on to the end of the window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
683 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
684
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
685
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
686 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
687 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
688 <command>RUN GFX2 ( [path,] "EREOWNDW")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
689 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
690 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
691
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
692 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
693 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
694
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
695 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
696 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
697 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
698 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
699 <refentry id='erline'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
700 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
701 <refname>erline</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
702 <refpurpose>Delete the line of text the cursor is on.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
703 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
704
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
705
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
706 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
707 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
708 <command>RUN GFX2 ( [path,] "ERLINE")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
709 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
710 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
711
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
712 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
713 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
714
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
715 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
716 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
717 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
718 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
719 <refentry id='fill'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
720 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
721 <refname>fill</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
722 <refpurpose>Fill (paint) a window, or a portion of it.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
723 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
724
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
725
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
726 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
727 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
728 <command>RUN GFX2 ( [path,] "FILL" [,xcor, ycor])</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
729 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
730 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
731
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
732 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
733 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
734
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
735 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
736 <replaceable>xcor, ycor</replaceable> X &amp; Y coordinates to start the fill at.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
737
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
738 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
739 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
740 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
741 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
742 Paints with the current foreground color. Only fills the area that's the
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
743 same color as the point where it starts.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
744 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
745 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
746 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
747 <refentry id='font'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
748 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
749 <refname>font</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
750 <refpurpose>Defines which buffer is to be used for graphic text characters.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
751 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
752
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
753
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
754 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
755 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
756 <command>RUN GFX2 ( [path,] "FONT", group, buffer)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
757 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
758 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
759
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
760 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
761 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
762
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
763 <replaceable>path</replaceable> Route to the window to be tied to the selected buffer.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
764 <replaceable>group</replaceable> Group number that contains the selected buffer.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
765 <replaceable>buffer</replaceable> Buffer number to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
766 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
767 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
768 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
769 <refentry id='gcset'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
770 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
771 <refname>gcset</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
772 <refpurpose>Select which graphics cursor to use.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
773 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
774
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
775
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
776 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
777 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
778 <command>RUN GFX2 ("GCSET", group, buffer)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
779 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
780 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
781
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
782 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
783 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
784
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
785 <replaceable>group</replaceable> Group number that has the buffer you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
786 <replaceable>buffer</replaceable> Buffer number of the cursor image to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
787 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
788 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
789 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
790 <refentry id='get'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
791 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
792 <refname>get</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
793 <refpurpose>Store a portion of the window in a GET/PUT buffer.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
794 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
795
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
796
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
797 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
798 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
799 <command>RUN GFX2 ( [path,] "GET", group, buffer, xcor, ycor, xsize, ysize)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
800 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
801 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
802
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
803 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
804 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
805
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
806 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
807 <replaceable>group</replaceable> Group number that has the buffer to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
808 <replaceable>buffer</replaceable> Buffer number to store the data in.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
809 <replaceable>xcor, ycor</replaceable> X &amp; Y coordinates of the upper left corner to save.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
810 <replaceable>xsize</replaceable> Horizontal size of the area to save.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
811 <replaceable>ysize</replaceable> Vertical size of the area to save.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
812 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
813 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
814 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
815 <refentry id='gpload'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
816 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
817 <refname>gpload</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
818 <refpurpose>Load a GET/PUT buffer with image data.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
819 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
820
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
821
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
822 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
823 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
824 <command>RUN GFX2 ("GPLOAD", group, buffer, format, xdim, ydim, size)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
825 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
826 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
827
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
828 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
829 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
830
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
831 <replaceable>group</replaceable> Group number to associate this buffer with.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
832 <replaceable>buffer</replaceable> Buffer number for the buffer you create.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
833 <replaceable>format</replaceable> Type code for the screen format.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
834 <replaceable>xdim, ydim</replaceable> X &amp; Y dimensions of the stored block.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
835 <replaceable>size</replaceable> Size of the buffer in bytes. 1 to 8 Kbytes.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
836 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
837 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
838 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
839 <refentry id='inslin'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
840 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
841 <refname>inslin</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
842 <refpurpose>Insert a blank line at the cursor position.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
843 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
844
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
845
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
846 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
847 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
848 <command>RUN GFX2 ( [path,] "INSLIN")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
849 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
850 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
851
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
852 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
853 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
854
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
855 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
856 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
857 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
858 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
859 <refentry id='killbuff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
860 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
861 <refname>killbuff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
862 <refpurpose>Deallocate a GET/PUT buffer.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
863 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
864
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
865
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
866 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
867 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
868 <command>RUN GFX2 ("KILLBUFF", group, buffer)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
869 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
870 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
871
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
872 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
873 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
874
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
875 <replaceable>group</replaceable> Group number of the buffer to get rid of. 1 to 199.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
876 <replaceable>buffer</replaceable> Buffer number to deallocate. 1 to 255.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
877 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
878 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
879 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
880 <refentry id='line'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
881 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
882 <refname>line</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
883 <refpurpose>Draw a line.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
884 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
885
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
886
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
887 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
888 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
889 <command>RUN GFX2 ( [path,] "LINE" [,xcor1, ycor1], xcor2, ycor2)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
890 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
891 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
892
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
893 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
894 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
895
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
896 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
897 <replaceable>xcor1, ycor1</replaceable> X &amp; Y coordinates for the start of the line.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
898 <replaceable>xcor2, ycor2</replaceable> X &amp; Y coordinates for the end of the line.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
899 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
900 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
901 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
902 <refentry id='logic'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
903 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
904 <refname>logic</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
905 <refpurpose>Sets the logic type to be used on drawing functions.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
906 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
907
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
908
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
909 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
910 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
911 <command>RUN GFX2 ("LOGIC", "function")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
912 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
913 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
914
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
915 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
916 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
917
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
918 <replaceable>function</replaceable> "OFF" - no logic is used.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
919 "AND" - AND logic is used.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
920 "OR" - OR logic is used.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
921 "XOR" - XOR logic is used.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
922 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
923 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
924 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
925 <refentry id='owend'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
926 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
927 <refname>owend</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
928 <refpurpose>Deallocate the specified overlay window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
929 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
930
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
931
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
932 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
933 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
934 <command>RUN GFX2 ([path,] "OWEND")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
935 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
936 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
937
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
938 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
939 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
940
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
941 <replaceable>path</replaceable> Route to the window you want to end.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
942
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
943 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
944 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
945 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
946 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
947 The book doesn't give a specific example of this function.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
948 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
949 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
950 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
951 <refentry id='owset'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
952 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
953 <refname>owset</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
954 <refpurpose>Create an overlay window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
955 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
956
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
957
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
958 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
959 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
960 <command>RUN GFX2 ( [path,] "OWSET", save switch, xpos, ypos, xsize, ysize,
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
961 foreground, backgound)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
962 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
963 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
964
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
965 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
966 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
967
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
968 <replaceable>path</replaceable> Route to the window to be overlaid.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
969 <replaceable>save switch</replaceable> 0 = Don't save overlaid area. 1 = Save overlaid area.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
970 <replaceable>xpos, ypos</replaceable> X &amp; Y character positions for upper left corner.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
971 <replaceable>xsize</replaceable> Width of overlay window in characters.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
972 <replaceable>ysize</replaceable> Depth of overlay window in rows.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
973 <replaceable>foreground,</replaceable> Palettes to use for overlay foreground &amp; background.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
974 <replaceable>background</replaceable>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
975 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
976 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
977 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
978 <refentry id='palette'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
979 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
980 <refname>palette</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
981 <refpurpose>Set the color of a palette register.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
982 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
983
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
984
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
985 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
986 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
987 <command>RUN GFX2 ( [path,] "PALETTE", register, color)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
988 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
989 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
990
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
991 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
992 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
993
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
994 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
995 <replaceable>register</replaceable> Palette register number to set.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
996 <replaceable>color</replaceable> Value to set in register. 0 to 63.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
997 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
998 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
999 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1000 <refentry id='pattern'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1001 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1002 <refname>pattern</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1003 <refpurpose>Select the pattern buffer to use.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1004 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1005
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1006
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1007 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1008 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1009 <command>RUN GFX2 ( [path,] "PATTERN", group, buffer)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1010 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1011 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1012
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1013 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1014 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1015
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1016 <replaceable>path</replaceable> Route to the window to associate with the buffer.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1017 <replaceable>group</replaceable> Group number that contains the buffer.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1018 <replaceable>buffer</replaceable> Buffer number for the patterns.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1019 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1020 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1021 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1022 <refentry id='point'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1023 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1024 <refname>point</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1025 <refpurpose>Set a point to current foreground color.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1026 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1027
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1028
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1029 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1030 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1031 <command>RUN GFX2 ( [path,] "POINT" [,xcor, ycor])</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1032 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1033 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1034
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1035 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1036 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1037
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1038 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1039 <replaceable>xcor, ycor</replaceable> X &amp; Y coordinates of location to set.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1040 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1041 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1042 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1043 <refentry id='propsw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1044 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1045 <refname>propsw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1046 <refpurpose>Set/reset the proportional text switch.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1047 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1048
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1049
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1050 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1051 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1052 <command>RUN GFX2 ( [path,] "PROPSW", "switch")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1053 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1054 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1055
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1056 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1057 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1058
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1059 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1060 <replaceable>switch</replaceable> "ON" = proportional spacing. "OFF" = fixed spacing.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1061 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1062 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1063 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1064 <refentry id='putgc'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1065 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1066 <refname>putgc</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1067 <refpurpose>Place the graphics cursor anywhere on the screen.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1068 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1069
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1070
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1071 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1072 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1073 <command>RUN GFX2 ( [path,] "PUTGC", xcor, ycor)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1074 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1075 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1076
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1077 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1078 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1079
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1080 <replaceable>path</replaceable> Route to the screen you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1081 <replaceable>xcor, ycor</replaceable> Screen X &amp; Y coordinates for the cursor location.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1082 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1083 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1084 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1085 <refentry id='put'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1086 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1087 <refname>put</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1088 <refpurpose>Place a specified GET/PUT buffer on a window.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1089 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1090
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1091
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1092 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1093 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1094 <command>RUN GFX2 ( [path,] "PUT", group, buffer, xcor, ycor)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1095 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1096 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1097
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1098 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1099 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1100
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1101 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1102 <replaceable>group</replaceable> Group number containing the buffer you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1103 <replaceable>buffer</replaceable> Buffer number to put on the window.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1104 <replaceable>xcor, ycor</replaceable> X &amp; Y coordinates of the upper left corner.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1105 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1106 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1107 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1108 <refentry id='revoff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1109 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1110 <refname>revoff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1111 <refpurpose>Turns reverse video off for characters.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1112 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1113
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1114
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1115 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1116 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1117 <command>RUN GFX2 ( [path,] "REVOFF")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1118 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1119 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1120
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1121 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1122 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1123
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1124 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1125 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1126 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1127 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1128 <refentry id='revon'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1129 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1130 <refname>revon</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1131 <refpurpose>Turns reverse video on for characters.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1132 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1133
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1134
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1135 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1136 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1137 <command>RUN GFX2 ( [path,] "REVON")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1138 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1139 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1140
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1141 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1142 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1143
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1144 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1145 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1146 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1147 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1148 <refentry id='scalesw'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1149 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1150 <refname>scalesw</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1151 <refpurpose>Turns scaling ON or OFF for graphics windows.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1152 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1153
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1154
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1155 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1156 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1157 <command>RUN GFX2 ( [path,] "SCALESW", "switch")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1158 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1159 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1160
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1161 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1162 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1163
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1164 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1165 <replaceable>switch</replaceable> "ON" = coordinates act as if the window was 640 x 192.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1166 "OFF" = coordinates are relative to the window origin.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1167
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1168 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1169 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1170 <refsect1><title>Notes</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1171 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1172 Scaling does not affect text.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1173 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1174 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1175 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1176 <refentry id='select'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1177 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1178 <refname>select</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1179 <refpurpose>Select (change) which window is active for input/output.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1180 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1181
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1182
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1183 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1184 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1185 <command>RUN GFX2 ( [path,] "SELECT")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1186 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1187 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1188
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1189 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1190 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1191
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1192 <replaceable>path</replaceable> Route to the window you want to select.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1193 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1194 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1195 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1196 <refentry id='setdptr'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1197 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1198 <refname>setdptr</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1199 <refpurpose>Position the drawing pointer.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1200 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1201
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1202
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1203 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1204 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1205 <command>RUN GFX2 ( [path,] "SETDPTR", xcor, ycor)</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1206 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1207 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1208
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1209 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1210 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1211
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1212 <replaceable>path</replaceable> Route to the window you want to use.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1213 <replaceable>xcor, ycor</replaceable> X &amp; Y coordinates to move the draw pointer to.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1214 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1215 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1216 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1217 <refentry id='undlnoff'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1218 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1219 <refname>undlnoff</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1220 <refpurpose>Turns character underlining off.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1221 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1222
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1223
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1224 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1225 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1226 <command>RUN GFX2 ( [path,] "UNDLNOFF")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1227 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1228 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1229
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1230 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1231 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1232
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1233 <replaceable>path</replaceable> Route to the window where you want underlining off.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1234 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1235 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1236 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1237 <refentry id='undlnon'>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1238 <refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1239 <refname>undlnon</refname>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1240 <refpurpose>Turns character underlining on.</refpurpose>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1241 </refnamediv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1242
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1243
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1244 <refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1245 <cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1246 <command>RUN GFX2 ( [path,] "UNDLNON")</command>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1247 </cmdsynopsis>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1248 </refsynopsisdiv>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1249
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1250 <refsect1><title>Parameters</title>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1251 <para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1252
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1253 <replaceable>path</replaceable> Route to the window where you want underlining on.
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1254 </para>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1255 </refsect1>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1256 </refentry>
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1257
07a25643d033 Added gfx2 information
roug
parents:
diff changeset
1258 </appendix>