1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<fpdoc-descriptions>
<!--
$Id: crt.xml,v 1.1 2004/09/09 20:17:07 michael Exp $
This file is part of the FPC documentation.
Copyright (C) 1997, by Michael Van Canneyt
The FPC documentation is free text; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The FPC Documentation is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the FPC documentation; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
-->
<package name="rtl">
<module name="crt">
<short>CRT - Turbo Pascal screen and keyboard handling unit</short>
<!-- \FPCexampledir{crtex} -->
<descr>
<p>
This chapter describes the <var>CRT</var> unit for Free Pascal, under all of Dos,
Linux and Windows. The unit was first written for Dos by Florian Klaempfl.
The unit was ported to Linux by Mark May and enhanced by Michael Van Canneyt
and Peter Vreman. It works on the Linux console, and in xterm and rxvt windows
under X-Windows. The functionality for both is the same, except that under
Linux the use of an early implementation (versions 0.9.1 and earlier of the
compiler) the CRT unit automatically cleared the screen at program startup.
</p>
<p>
There are some caveats when using the CRT unit:
</p>
<ul>
<li>Programs using the CRT unit will <em>not</em> be usable when input/output
is being redirected on the command-line.
</li>
<li>For similar reasons they are not usable as CGI-scripts for use with a
webserver.
</li>
<li>The use of the CRT unit and the graph unit may not always be supported.
</li>
<li>
The CRT unit is not thread safe.
</li>
<li>On Linux or other Unix OSes, executing other programs that expect
special terminal behaviour (using one of the special functions in the Linux
unit) will not work. The terminal is set in RAW mode, which will destroy
most terminal emulation settings.
</li>
<li>
The CRT unit stems from the TP/Dos area. It is designed to work with single-byte
character sets, where 1 char = 1 byte. That means that widestrings or UTF-8 encoded
(ansi)strings will not work correctly.
</li>
</ul>
</descr>
<element name="Black">
<short>Black color attribute</short>
</element>
<element name="Blue">
<short>Blue color attribute</short>
</element>
<element name="Green">
<short>Green color attribute</short>
</element>
<element name="Cyan">
<short>Cyan color attribute</short>
</element>
<element name="Red">
<short>Red color attribute</short>
</element>
<element name="Magenta">
<short>Magenta color attribute</short>
</element>
<element name="Brown">
<short>Brown color attribute</short>
</element>
<element name="LightGray">
<short>Light gray color attribute</short>
</element>
<element name="DarkGray">
<short>Dark gray color attribute</short>
</element>
<element name="LightBlue">
<short>Light Blue color attribute</short>
</element>
<element name="LightGreen">
<short>Light green color attribute</short>
</element>
<element name="LightCyan">
<short>Light cyan color attribute</short>
</element>
<element name="LightRed">
<short>Light red color attribute</short>
</element>
<element name="LightMagenta">
<short>Light magenta color attribute</short>
</element>
<element name="Yellow">
<short>Yellow color attribute</short>
</element>
<element name="White">
<short>White color attribute</short>
</element>
<element name="Blink">
<short>Blink attribute</short>
</element>
<element name="TextAttr">
<short>Mask to filter text attribute</short>
<descr>
The <var>TextAttr</var> variable controls the attributes with which characters
are written to screen.
</descr>
</element>
<element name="TextChar">
<short>Text character used when filling</short>
</element>
<element name="CheckBreak">
<short>Check for CTRL-Break keystroke. Not used.</short>
</element>
<element name="CheckEOF">
<short>Check for EOF on standard input. Not used.</short>
</element>
<element name="CheckSnow">
<short>Check snow on CGA screens. Not used.</short>
</element>
<element name="DirectVideo">
<short>Use direct video access. DOS only</short>
<descr>
The <var>DirectVideo</var> variable controls the writing to the screen. If it is
<var>True</var>, the cursor is set via direct port access. If <var>False</var>,
then the BIOS is used. This is defined under dos only.
</descr>
</element>
<element name="LastMode">
<short>Last screen mode.</short>
<descr>
The <var>Lastmode</var> variable tells you which mode was last selected for the
screen. It is defined on DOS only.
</descr>
</element>
<element name="WindMin">
<short>Upper left corner of currently defined window</short>
<descr>
<p>
The upper byte of <var>WindMin</var> contains the Y coordinate while the lower byte contains the X coordinate.
The use of this variable is deprecated, use <var>WindMinX</var> and <var>WindMinY</var> instead.
</p>
</descr>
<link id="WindMaxX"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinX"/>
<link id="WindMinY"/>
<link id="Window"/>
</element>
<element name="WindMax">
<short>Lower right corner of currently defined window</short>
<descr>
<p>
The upper byte of <var>WindMax</var> contains the Y coordinate while the lower byte contains the X coordinate.
The use of this variable is deprecated, use <var>WindMaxX</var> and <var>WindMaxY</var> instead.
</p>
</descr>
<seealso>
<link id="WindMaxX"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinX"/>
<link id="WindMinY"/>
<link id="Window"/>
</seealso>
</element>
<element name="WindMaxX">
<short>X coordinate of lower right corner of the defined window</short>
<seealso>
<link id="WindMax"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinX"/>
<link id="WindMinY"/>
<link id="Window"/>
</seealso>
</element>
<element name="WindMaxY">
<short>Y coordinate of lower right corner of the defined window</short>
<seealso>
<link id="WindMax"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinX"/>
<link id="WindMinY"/>
<link id="Window"/>
</seealso>
</element>
<element name="WindMinX">
<short>X coordinate of upper left corner of the defined window</short>
<seealso>
<link id="WindMax"/>
<link id="WindMaxX"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinY"/>
<link id="Window"/>
</seealso>
</element>
<element name="WindMinY">
<short>Y coordinate of upper left corner of the defined window</short>
<seealso>
<link id="WindMax"/>
<link id="WindMaxX"/>
<link id="WindMaxY"/>
<link id="WindMin"/>
<link id="WindMinX"/>
<link id="Window"/>
</seealso>
</element>
<element name="ScreenWidth">
<short>Current screen width</short>
</element>
<element name="ScreenHeight">
<short>Current screen height.</short>
</element>
<element name="bw40">
<short>40 columns black and white screen mode.</short>
</element>
<element name="co40">
<short>40 columns color screen mode.</short>
</element>
<element name="c40">
<short>40 columns color screen mode.</short>
</element>
<element name="bw80">
<short>80 columns black and white screen mode.</short>
</element>
<element name="co80">
<short>80 columns color screen mode.</short>
</element>
<element name="c80">
<short>80 columns color screen mode.</short>
</element>
<element name="mono">
<short>Monochrome screen mode (hercules screens)</short>
</element>
<element name="Font8x8">
<short>Internal ROM font mode</short>
</element>
<element name="ConsoleMaxX" skip="1"/>
<element name="ConsoleMaxY" skip="1"/>
<element name="Flushing" skip="1"/>
<element name="PConsoleBuf" skip="1"/>
<element name="TCharAttr" skip="1"/>
<element name="TConsoleBuf" skip="1"/>
<element name="ConsoleBuf" skip="1"/>
<element name="AssignCrt">
<short>Assign file to CRT.</short>
<descr>
<var>AssignCrt</var> Assigns a file <var>F</var> to the console. Everything written to
the file <var>F</var> goes to the console instead. If the console contains a window,
everything is written to the window instead.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="Window"/>
</seealso>
<example file="crtex/ex1"/>
</element>
<element name="CursorBig">
<short>Show big cursor</short>
<descr>
<var>CursorBig</var> makes the cursor a big rectangle.
Not implemented on unixes.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="CursorOn"/>
<link id="CursorOff"/>
</seealso>
</element>
<element name="ClrEol">
<short>Clear from cursor position till end of line.</short>
<descr>
<var>ClrEol</var> clears the current line, starting from the cursor position, to the
end of the window. The cursor doesn't move
</descr>
<errors>
None.
</errors>
<seealso>
<link id="DelLine"/>
<link id="InsLine"/>
<link id="ClrScr"/>
</seealso>
<example file="crtex/ex9"/>
</element>
<element name="ClrScr">
<short>Clear current window.</short>
<descr>
<var>ClrScr</var> clears the current window (using the current colors),
and sets the cursor in the top left
corner of the current window.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="Window"/>
</seealso>
<example file="crtex/ex8"/>
</element>
<element name="CursorOff">
<short>Hide cursor</short>
<descr>
<var>CursorOff</var> switches the cursor off (i.e. the cursor is no
longer visible). Not implemented on unixes.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="CursorOn"/>
<link id="CursorBig"/>
</seealso>
</element>
<element name="CursorOn">
<short>Display cursor</short>
<descr>
<var>CursorOn</var> switches the cursor on. Not implemented on unixes.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="CursorBig"/>
<link id="CursorOff"/>
</seealso>
</element>
<element name="Delay">
<short>Delay program execution.</short>
<descr>
<var>Delay</var> waits a specified number of milliseconds. The number of specified
seconds is an approximation, and may be off a lot, if system load is high.
</descr>
<errors>
None
</errors>
<seealso>
<link id="Sound"/>
<link id="NoSound"/>
</seealso>
<example file="crtex/ex15"/>
</element>
<element name="DelLine">
<short>Delete line at cursor position.</short>
<descr>
<var>DelLine</var> removes the current line. Lines following the current line are
scrolled 1 line up, and an empty line is inserted at the bottom of the
current window. The cursor doesn't move.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="ClrEol"/>
<link id="InsLine"/>
<link id="ClrScr"/>
</seealso>
<example file="crtex/ex11"/>
</element>
<element name="GotoXY">
<short>Set cursor position on screen.</short>
<descr>
<var>GotoXY</var> positions the cursor at <var>(X,Y)</var>, <var>X</var> in horizontal, <var>Y</var> in
vertical direction relative to the origin of the current window. The origin
is located at <var>(1,1)</var>, the upper-left corner of the window.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="WhereX"/>
<link id="WhereY"/>
<link id="Window"/>
</seealso>
<example file="crtex/ex6"/>
</element>
<element name="HighVideo">
<short>Switch to highlighted text mode</short>
<descr>
<var>HighVideo</var> switches the output to highlighted text. (It sets the high
intensity bit of the video attribute)
</descr>
<errors>
None.
</errors>
<seealso>
<link id="TextColor"/>
<link id="TextBackground"/>
<link id="LowVideo"/>
<link id="NormVideo"/>
</seealso>
<example file="crtex/ex14"/>
</element>
<element name="InsLine">
<short>Insert an empty line at cursor position</short>
<descr>
<var>InsLine</var> inserts an empty line at the current cursor position.
Lines following the current line are scrolled 1 line down,
causing the last line to disappear from the window.
The cursor doesn't move.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="ClrEol"/>
<link id="DelLine"/>
<link id="ClrScr"/>
</seealso>
<example file="crtex/ex10"/>
</element>
<element name="KeyPressed">
<short>Check if there is a keypress in the keybuffer</short>
<descr>
<var>Keypressed</var> scans the keyboard buffer and sees if a key has
been pressed. If this is the case, <var>True</var> is returned. If not,
<var>False</var> is returned. The <var>Shift, Alt, Ctrl</var> keys are not reported.
The key is not removed from the buffer, and can hence still be read after
the <var>KeyPressed</var> function has been called.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="ReadKey"/>
</seealso>
<example file="crtex/ex2"/>
</element>
<element name="LowVideo">
<short>Switch to low intensity colors.</short>
<descr>
<p>
<var>LowVideo</var> switches the output to non-highlighted text. (It clears the high
intensity bit of the video attribute)
</p>
<p>
For an example, see <link id="HighVideo"/>
</p>
</descr>
<errors>
None.
</errors>
<seealso>
<link id="TextColor"/>
<link id="TextBackground"/>
<link id="HighVideo"/>
<link id="NormVideo"/>
</seealso>
</element>
<element name="NormVideo">
<short>Return to normal (startup) modus</short>
<descr>
<p>
<var>NormVideo</var> switches the output to the defaults, read at startup. (The
defaults are read from the cursor position at startup)
</p>
<p>
For an example, see <link id="HighVideo"/>
</p>
</descr>
<errors>
None.
</errors>
<seealso>
<link id="TextColor"/>
<link id="TextBackground"/>
<link id="LowVideo"/>
<link id="HighVideo"/>
</seealso>
</element>
<element name="NoSound">
<short>Stop system speaker</short>
<descr>
<var>NoSound</var> stops the speaker sound.
This call is not supported on all operating systems.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="Sound"/>
</seealso>
<example file="crtex/ex16"/>
</element>
<element name="ReadKey">
<short>Read key from keybuffer</short>
<descr>
<p>
<var>ReadKey</var> reads 1 key from the keyboard buffer, and returns this.
If an extended or function key has been pressed, then the zero ASCII code is
returned. You can then read the scan code of the key with a second ReadKey
call.
</p>
<p>
Key mappings under Linux can cause the wrong key to be
reported by <var>ReadKey</var>, so caution is needed when using
<var>ReadKey</var>.
</p>
</descr>
<errors>
None.
</errors>
<seealso>
<link id="KeyPressed"/>
</seealso>
<example file="crtex/ex3"/>
</element>
<element name="Sound">
<short>Sound system speaker</short>
<descr>
<var>Sound</var> sounds the speaker at a frequency of <var>hz</var>. Under Windows,
a system sound is played and the frequency parameter is ignored.
On other operating systems, this routine may not be implemented.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="NoSound"/>
</seealso>
</element>
<element name="TextBackground">
<short>Set text background</short>
<descr>
<var>TextBackground</var> sets the background color to <var>CL</var>. <var>CL</var> can be one of the
predefined color constants.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="TextColor"/>
<link id="HighVideo"/>
<link id="LowVideo"/>
<link id="NormVideo"/>
</seealso>
<example file="crtex/ex13"/>
</element>
<element name="TextColor">
<short>Set text color</short>
<descr>
<var>TextColor</var> sets the foreground color to <var>CL</var>. <var>CL</var> can be one of the
predefined color constants.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="TextBackground"/>
<link id="HighVideo"/>
<link id="LowVideo"/>
<link id="NormVideo"/>
</seealso>
<example file="crtex/ex12"/>
</element>
<element name="TextMode">
<short>Set screen mode.</short>
<descr>
<p>
<var>TextMode</var> sets the textmode of the screen (i.e. the number of lines
and columns of the screen). The lower byte is use to set the VGA text mode.
</p>
<p>
This procedure is only implemented on dos.
</p>
</descr>
<errors>
None.
</errors>
<seealso>
<link id="Window"/>
</seealso>
</element>
<element name="WhereX">
<short>Return X (horizontal) cursor position</short>
<descr>
<var>WhereX</var> returns the current X-coordinate of the cursor, relative to the
current window. The origin is <var>(1,1)</var>, in the upper-left corner of the
window.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="GotoXY"/>
<link id="WhereY"/>
<link id="Window"/>
</seealso>
<example file="crtex/ex7"/>
</element>
<element name="WhereY">
<short>Return Y (vertical) cursor position</short>
<descr>
<var>WhereY</var> returns the current Y-coordinate of the cursor, relative to the
current window. The origin is <var>(1,1)</var>, in the upper-left corner of the
window.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="GotoXY"/>
<link id="WhereX"/>
<link id="Window"/>
</seealso>
<example file="crtex/ex7"/>
</element>
<element name="Window">
<short>Create new window on screen.</short>
<descr>
<var>Window</var> creates a window on the screen, to which output will be sent.
<var>(X1,Y1)</var> are the coordinates of the upper left corner of the window,
<var>(X2,Y2)</var> are the coordinates of the bottom right corner of the window.
These coordinates are relative to the entire screen, with the top left
corner equal to <var>(1,1)</var>.
Further coordinate operations, except for the next Window call,
are relative to the window's top left corner.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="GotoXY"/>
<link id="WhereX"/>
<link id="WhereY"/>
<link id="ClrScr"/>
</seealso>
<example file="crtex/ex5"/>
</element>
<element name="TCharAttr.ch">
<short>Character code</short>
</element>
<!-- variable Visibility: default -->
<element name="TCharAttr.attr">
<short>Attributes</short>
</element>
<element name="tcrtcoord">
<short>Type to denote CRT coordinates</short>
<descr>
<var>tcrtcoord</var> is a subrange type for denoting CRT coordinates. It
supports coordinates ranging from 1 to 255. Using this type together with
range-checking turned on can be used to debug CRT code.
</descr>
<seealso>
<link id="GotoXY"/>
</seealso>
</element>
</module>
</package>
</fpdoc-descriptions>
|