curs_termcap.3x.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. ****************************************************************************
  4. * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. *
  5. * *
  6. * Permission is hereby granted, free of charge, to any person obtaining a *
  7. * copy of this software and associated documentation files (the *
  8. * "Software"), to deal in the Software without restriction, including *
  9. * without limitation the rights to use, copy, modify, merge, publish, *
  10. * distribute, distribute with modifications, sublicense, and/or sell *
  11. * copies of the Software, and to permit persons to whom the Software is *
  12. * furnished to do so, subject to the following conditions: *
  13. * *
  14. * The above copyright notice and this permission notice shall be included *
  15. * in all copies or substantial portions of the Software. *
  16. * *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
  18. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
  20. * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
  21. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
  22. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
  23. * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
  24. * *
  25. * Except as contained in this notice, the name(s) of the above copyright *
  26. * holders shall not be used in advertising or otherwise to promote the *
  27. * sale, use or other dealings in this Software without prior written *
  28. * authorization. *
  29. ****************************************************************************
  30. * @Id: curs_termcap.3x,v 1.22 2007/06/02 20:40:07 tom Exp @
  31. -->
  32. <HTML>
  33. <HEAD>
  34. <TITLE>curs_termcap 3x</TITLE>
  35. <link rev=made href="mailto:bug-ncurses@gnu.org">
  36. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  37. </HEAD>
  38. <BODY>
  39. <H1>curs_termcap 3x</H1>
  40. <HR>
  41. <PRE>
  42. <!-- Manpage converted by man2html 3.0.1 -->
  43. <STRONG><A HREF="curs_termcap.3x.html">curs_termcap(3x)</A></STRONG> <STRONG><A HREF="curs_termcap.3x.html">curs_termcap(3x)</A></STRONG>
  44. </PRE>
  45. <H2>NAME</H2><PRE>
  46. <STRONG>tgetent</STRONG>, <STRONG>tgetflag</STRONG>, <STRONG>tgetnum</STRONG>, <STRONG>tgetstr</STRONG>, <STRONG>tgoto</STRONG>, <STRONG>tputs</STRONG> - direct
  47. <STRONG>curses</STRONG> interface to the terminfo capability database
  48. </PRE>
  49. <H2>SYNOPSIS</H2><PRE>
  50. <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
  51. <STRONG>#include</STRONG> <STRONG>&lt;term.h&gt;</STRONG>
  52. <STRONG>extern</STRONG> <STRONG>char</STRONG> <STRONG>PC;</STRONG>
  53. <STRONG>extern</STRONG> <STRONG>char</STRONG> <STRONG>*</STRONG> <STRONG>UP;</STRONG>
  54. <STRONG>extern</STRONG> <STRONG>char</STRONG> <STRONG>*</STRONG> <STRONG>BC;</STRONG>
  55. <STRONG>extern</STRONG> <STRONG>short</STRONG> <STRONG>ospeed;</STRONG>
  56. <STRONG>int</STRONG> <STRONG>tgetent(char</STRONG> <STRONG>*bp,</STRONG> <STRONG>const</STRONG> <STRONG>char</STRONG> <STRONG>*name);</STRONG>
  57. <STRONG>int</STRONG> <STRONG>tgetflag(char</STRONG> <STRONG>*id);</STRONG>
  58. <STRONG>int</STRONG> <STRONG>tgetnum(char</STRONG> <STRONG>*id);</STRONG>
  59. <STRONG>char</STRONG> <STRONG>*tgetstr(char</STRONG> <STRONG>*id,</STRONG> <STRONG>char</STRONG> <STRONG>**area);</STRONG>
  60. <STRONG>char</STRONG> <STRONG>*tgoto(const</STRONG> <STRONG>char</STRONG> <STRONG>*cap,</STRONG> <STRONG>int</STRONG> <STRONG>col,</STRONG> <STRONG>int</STRONG> <STRONG>row);</STRONG>
  61. <STRONG>int</STRONG> <STRONG>tputs(const</STRONG> <STRONG>char</STRONG> <STRONG>*str,</STRONG> <STRONG>int</STRONG> <STRONG>affcnt,</STRONG> <STRONG>int</STRONG> <STRONG>(*putc)(int));</STRONG>
  62. </PRE>
  63. <H2>DESCRIPTION</H2><PRE>
  64. These routines are included as a conversion aid for pro-
  65. grams that use the <EM>termcap</EM> library. Their parameters are
  66. the same and the routines are emulated using the <EM>terminfo</EM>
  67. database. Thus, they can only be used to query the capa-
  68. bilities of entries for which a terminfo entry has been
  69. compiled.
  70. The <STRONG>tgetent</STRONG> routine loads the entry for <EM>name</EM>. It returns
  71. 1 on success, 0 if there is no such entry, and -1 if the
  72. terminfo database could not be found. The emulation
  73. ignores the buffer pointer <EM>bp</EM>.
  74. The <STRONG>tgetflag</STRONG> routine gets the boolean entry for <EM>id</EM>, or
  75. zero if it is not available.
  76. The <STRONG>tgetnum</STRONG> routine gets the numeric entry for <EM>id</EM>, or -1
  77. if it is not available.
  78. The <STRONG>tgetstr</STRONG> routine returns the string entry for <EM>id</EM>, or
  79. zero if it is not available. Use <STRONG>tputs</STRONG> to output the
  80. returned string. The return value will also be copied to
  81. the buffer pointed to by <EM>area</EM>, and the <EM>area</EM> value will be
  82. updated to point past the null ending this value.
  83. Only the first two characters of the <STRONG>id</STRONG> parameter of <STRONG>tget-</STRONG>
  84. <STRONG>flag</STRONG>, <STRONG>tgetnum</STRONG> and <STRONG>tgetstr</STRONG> are compared in lookups.
  85. The <STRONG>tgoto</STRONG> routine instantiates the parameters into the
  86. given capability. The output from this routine is to be
  87. passed to <STRONG>tputs</STRONG>.
  88. The <STRONG>tputs</STRONG> routine is described on the <STRONG><A HREF="curs_terminfo.3x.html">curs_terminfo(3x)</A></STRONG>
  89. manual page. It can retrieve capabilities by either term-
  90. cap or terminfo name.
  91. The variables <STRONG>PC</STRONG>, <STRONG>UP</STRONG> and <STRONG>BC</STRONG> are set by <STRONG>tgetent</STRONG> to the ter-
  92. minfo entry's data for <STRONG>pad_char</STRONG>, <STRONG>cursor_up</STRONG> and
  93. <STRONG>backspace_if_not_bs</STRONG>, respectively. <STRONG>UP</STRONG> is not used by
  94. ncurses. <STRONG>PC</STRONG> is used in the <STRONG>tdelay_output</STRONG> function. <STRONG>BC</STRONG> is
  95. used in the <STRONG>tgoto</STRONG> emulation. The variable <STRONG>ospeed</STRONG> is set
  96. by ncurses in a system-specific coding to reflect the
  97. terminal speed.
  98. </PRE>
  99. <H2>RETURN VALUE</H2><PRE>
  100. Except where explicitly noted, routines that return an
  101. integer return <STRONG>ERR</STRONG> upon failure and <STRONG>OK</STRONG> (SVr4 only speci-
  102. fies "an integer value other than <STRONG>ERR</STRONG>") upon successful
  103. completion.
  104. Routines that return pointers return <STRONG>NULL</STRONG> on error.
  105. </PRE>
  106. <H2>BUGS</H2><PRE>
  107. If you call <STRONG>tgetstr</STRONG> to fetch <STRONG>ca</STRONG> or any other parameterized
  108. string, be aware that it will be returned in terminfo
  109. notation, not the older and not-quite-compatible termcap
  110. notation. This will not cause problems if all you do with
  111. it is call <STRONG>tgoto</STRONG> or <STRONG>tparm</STRONG>, which both expand terminfo-
  112. style strings as terminfo. (The <STRONG>tgoto</STRONG> function, if con-
  113. figured to support termcap, will check if the string is
  114. indeed terminfo-style by looking for "%p" parameters or
  115. "$&lt;..&gt;" delays, and invoke a termcap-style parser if the
  116. string does not appear to be terminfo).
  117. Because terminfo conventions for representing padding in
  118. string capabilities differ from termcap's, <STRONG>tputs("50");</STRONG>
  119. will put out a literal "50" rather than busy-waiting for
  120. 50 milliseconds. Cope with it.
  121. Note that termcap has nothing analogous to terminfo's <STRONG>sgr</STRONG>
  122. string. One consequence of this is that termcap applica-
  123. tions assume me (terminfo <STRONG>sgr0</STRONG>) does not reset the alter-
  124. nate character set. This implementation checks for, and
  125. modifies the data shown to the termcap interface to accom-
  126. modate termcap's limitation in this respect.
  127. </PRE>
  128. <H2>PORTABILITY</H2><PRE>
  129. The XSI Curses standard, Issue 4 describes these func-
  130. tions. However, they are marked TO BE WITHDRAWN and may
  131. be removed in future versions.
  132. Neither the XSI Curses standard nor the SVr4 man pages
  133. documented the return values of <STRONG>tgetent</STRONG> correctly, though
  134. all three were in fact returned ever since SVr1. In par-
  135. ticular, an omission in the XSI Curses documentation has
  136. been misinterpreted to mean that <STRONG>tgetent</STRONG> returns <STRONG>OK</STRONG> or
  137. <STRONG>ERR</STRONG>. Because the purpose of these functions is to provide
  138. compatibility with the <EM>termcap</EM> library, that is a defect
  139. in XCurses, Issue 4, Version 2 rather than in ncurses.
  140. External variables are provided for support of certain
  141. termcap applications. However, termcap applications' use
  142. of those variables is poorly documented, e.g., not distin-
  143. guishing between input and output. In particular, some
  144. applications are reported to declare and/or modify <STRONG>ospeed</STRONG>.
  145. </PRE>
  146. <H2>SEE ALSO</H2><PRE>
  147. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="terminfo.5.html">terminfo(5)</A></STRONG>, <STRONG><A HREF="putc.3.html">putc(3)</A></STRONG>.
  148. <STRONG><A HREF="curs_termcap.3x.html">curs_termcap(3x)</A></STRONG>
  149. </PRE>
  150. <HR>
  151. <ADDRESS>
  152. Man(1) output converted with
  153. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  154. </ADDRESS>
  155. </BODY>
  156. </HTML>