home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / bsd / curses / doc / appen.a next >
Encoding:
Text File  |  1991-04-17  |  5.8 KB  |  192 lines

  1. .\" Copyright (c) 1980 The Regents of the University of California.
  2. .\" All rights reserved.
  3. .\"
  4. .\" Redistribution and use in source and binary forms, with or without
  5. .\" modification, are permitted provided that the following conditions
  6. .\" are met:
  7. .\" 1. Redistributions of source code must retain the above copyright
  8. .\"    notice, this list of conditions and the following disclaimer.
  9. .\" 2. Redistributions in binary form must reproduce the above copyright
  10. .\"    notice, this list of conditions and the following disclaimer in the
  11. .\"    documentation and/or other materials provided with the distribution.
  12. .\" 3. All advertising materials mentioning features or use of this software
  13. .\"    must display the following acknowledgement:
  14. .\"    This product includes software developed by the University of
  15. .\"    California, Berkeley and its contributors.
  16. .\" 4. Neither the name of the University nor the names of its contributors
  17. .\"    may be used to endorse or promote products derived from this software
  18. .\"    without specific prior written permission.
  19. .\"
  20. .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. .\" SUCH DAMAGE.
  31. .\"
  32. .\"    @(#)appen.A    6.3 (Berkeley) 4/17/91
  33. .\"
  34. .ie t .oh '\*(Ln Appendix A''PS1:18-%'
  35. .eh 'PS1:18-%''\*(Ln Appendix A'
  36. .el .he ''\fIAppendix A\fR''
  37. .bp
  38. .(x
  39. .sp 2
  40. .in 0
  41. .bi Appendixes
  42. .sp
  43. .b "Appendix A"
  44. .)x
  45. .nr * 1
  46. .sh 1 "Capabilities from termcap" 1
  47. .sh 2 Disclaimer
  48. .pp
  49. The description of terminals is a difficult business,
  50. and we only attempt to summarize the capabilities here:
  51. for a full description see
  52. .b termcap (5).
  53. .sh 2 Overview
  54. .pp
  55. Capabilities from
  56. .b termcap
  57. are of three kinds:
  58. string valued options,
  59. numeric valued options,
  60. and boolean options.
  61. The string valued options are the most complicated,
  62. since they may include padding information,
  63. which we describe now.
  64. .pp
  65. Intelligent terminals often require padding on intelligent operations
  66. at high (and sometimes even low) speed.
  67. This is specified by a number before the string in the capability,
  68. and has meaning for the capabilities which have a
  69. .b P
  70. at the front of their comment.
  71. This normally is a number of milliseconds to pad the operation.
  72. In the current system which has no true programmable delays,
  73. we do this by sending a sequence of pad characters
  74. (normally nulls, but can be changed
  75. (specified by
  76. .i PC )).
  77. In some cases, the pad is better computed as some number of milliseconds
  78. times the number of affected lines
  79. (to the bottom of the screen usually,
  80. except when terminals have insert modes which will shift several lines.)
  81. This is specified as,
  82. i e.g. ,
  83. .b 12* .
  84. before the capability,
  85. to say 12 milliseconds per affected whatever
  86. (currently always line).
  87. Capabilities where this makes sense say
  88. .b P* .
  89. .sp
  90. .sh 2 "Variables Set By setterm()"
  91. .TS H
  92. c s s s
  93. l l l l.
  94. variables set by \fIsetterm()\fR
  95.  
  96. Type    Name    Pad    Description
  97. _
  98. .TH
  99. char *    AL    P*    Add new blank Line
  100. bool    AM        Automatic Margins
  101. char *    BC        Back Cursor movement
  102. bool    BS        BackSpace works
  103. char *    BT    P    Back Tab
  104. bool    CA        Cursor Addressable
  105. char *    CD    P*    Clear to end of Display
  106. char *    CE    P    Clear to End of line
  107. char *    CL    P*    CLear screen
  108. char *    CM    P    Cursor Motion
  109. char *    DC    P*    Delete Character
  110. char *    DL    P*    Delete Line sequence
  111. char *    DM        Delete Mode (enter)
  112. char *    DO        DOwn line sequence
  113. char *    ED        End Delete mode
  114. bool    EO        can Erase Overstrikes with \' \'
  115. char *    EI        End Insert mode
  116. char *    HO        HOme cursor
  117. bool    HZ        HaZeltine ~ braindamage
  118. char *    IC    P    Insert Character
  119. bool    IN        Insert-Null blessing
  120. char *    IM        enter Insert Mode (IC usually set, too)
  121. char *    IP    P*    Pad after char Inserted using IM+IE
  122. char *    LL        quick to Last Line, column 0
  123. char *    MA        ctrl character MAp for cmd mode
  124. bool    MI        can Move in Insert mode
  125. bool    NC        No Cr: \er sends \er\en then eats \en
  126. char *    ND        Non-Destructive space
  127. bool    OS        OverStrike works
  128. char    PC        Pad Character
  129. char *    SE        Standout End (may leave space)
  130. char *    SF    P    Scroll Forwards
  131. char *    SO        Stand Out begin (may leave space)
  132. char *    SR    P    Scroll in Reverse
  133. char *    TA    P    TAb (not ^I or with padding)
  134. char *    TE        Terminal address enable Ending sequence
  135. char *    TI        Terminal address enable Initialization
  136. char *    UC        Underline a single Character
  137. char *    UE        Underline Ending sequence
  138. bool    UL        UnderLining works even though !OS
  139. char *    UP        UPline
  140. char *    US        Underline Starting sequence
  141. char *    VB        Visible Bell
  142. char *    VE        Visual End sequence
  143. char *    VS        Visual Start sequence
  144. bool    XN        a Newline gets eaten after wrap
  145. .TE
  146. Names starting with
  147. .bi X
  148. are reserved for severely nauseous glitches
  149. .pp
  150. For purposes of
  151. .Fn standout ,
  152. if
  153. .Fn SG
  154. is not 0,
  155. .Fn SO
  156. is set to
  157. .Fn NULL ,
  158. and if
  159. .Fn UG
  160. is not
  161. .Fn 0 ,
  162. .Fn US
  163. is set to
  164. .Fn NULL .
  165. If, after this,
  166. .Fn SO
  167. is
  168. .Fn NULL ,
  169. and
  170. .Fn US
  171. is not,
  172. .Fn SO
  173. is set to be
  174. .Fn US ,
  175. and
  176. .Fn SE
  177. is set to be
  178. .Fn UE .
  179. .sh 2 "Variables Set By gettmode()"
  180. .TS H
  181. c s s
  182. l l l.
  183. variables set by \fIgettmode()\fR
  184.  
  185. type    name    description
  186. _
  187. .TH
  188. bool    NONL    Term can't hack linefeeds doing a CR
  189. bool    GT    Gtty indicates Tabs
  190. bool    UPPERCASE    Terminal generates only uppercase letters
  191. .TE
  192.