home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / lynxlib / vt52.h < prev    next >
C/C++ Source or Header  |  1993-10-23  |  2KB  |  58 lines

  1. /*
  2.     VT52 Escape Sequences
  3.     Copyright (C) 1989  by Robert Fischer
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 1, or (at your option)
  8.     any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19.     To contact the author, call or write:
  20.         Robert Fischer
  21.         80 Killdeer Road
  22.         Hamden, CT    06517
  23.         (203) 288-9599
  24. */
  25. #ifndef VT52_H
  26. #define VT52_H
  27.  
  28. /* VT52 Cconout control codes */
  29. #define ESC (char)27
  30. #define VTCSR_UP  'A'
  31. #define VTCSR_DOWN  'B'
  32. #define VTCSR_FORWARD  'C'
  33. #define VTCSR_BACKWARD  'D'
  34. #define VTCLR_SCREEN  'E'
  35. #define VTHOME_CURSOR  'H'
  36. #define VTREVERSE_INDEX 'I'
  37. #define VTERS_EOP  'J'
  38. #define VTCLR_EOL  'K'
  39. #define VTINSERT_LINE  'L'
  40. #define VTDELETE_LINE  'M'
  41. #define VTPOSITION_CURSOR 'Y'
  42. #define VTSET_FOREGROUN 'b'
  43. #define VTSET_BACKROUND 'c'
  44. #define VTERS_BOD  'd'
  45. #define VTENABLE_CURSOR 'e'
  46. #define VTDISABLE_CURSO 'f'
  47. #define VTSAVE_CURSOR  'j'
  48. #define VTRESTORE_CURSO 'k'
  49. #define VTERS_LINE  'l'
  50. #define VTERS_BOL  'o'
  51. #define VTENTER_REV  'p'
  52. #define VTEXIT_REV  'q'
  53. #define VTWRAP      'V'
  54. #define VTDISCARD 'W'
  55.  
  56. #define VTBELL 7
  57. #endif
  58.