curs_initscr.3x.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. ****************************************************************************
  4. * Copyright (c) 1998-2003,2005 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_initscr.3x,v 1.14 2005/05/15 16:18:01 tom Exp @
  31. -->
  32. <HTML>
  33. <HEAD>
  34. <TITLE>curs_initscr 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_initscr 3x</H1>
  40. <HR>
  41. <PRE>
  42. <!-- Manpage converted by man2html 3.0.1 -->
  43. <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG> <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
  44. </PRE>
  45. <H2>NAME</H2><PRE>
  46. <STRONG>initscr</STRONG>, <STRONG>newterm</STRONG>, <STRONG>endwin</STRONG>, <STRONG>isendwin</STRONG>, <STRONG>set_term</STRONG>, <STRONG>delscreen</STRONG> -
  47. <STRONG>curses</STRONG> screen initialization and manipulation routines
  48. </PRE>
  49. <H2>SYNOPSIS</H2><PRE>
  50. <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
  51. <STRONG>WINDOW</STRONG> <STRONG>*initscr(void);</STRONG>
  52. <STRONG>int</STRONG> <STRONG>endwin(void);</STRONG>
  53. <STRONG>bool</STRONG> <STRONG>isendwin(void);</STRONG>
  54. <STRONG>SCREEN</STRONG> <STRONG>*newterm(char</STRONG> <STRONG>*type,</STRONG> <STRONG>FILE</STRONG> <STRONG>*outfd,</STRONG> <STRONG>FILE</STRONG> <STRONG>*infd);</STRONG>
  55. <STRONG>SCREEN</STRONG> <STRONG>*set_term(SCREEN</STRONG> <STRONG>*new);</STRONG>
  56. <STRONG>void</STRONG> <STRONG>delscreen(SCREEN*</STRONG> <STRONG>sp);</STRONG>
  57. </PRE>
  58. <H2>DESCRIPTION</H2><PRE>
  59. <STRONG>initscr</STRONG> is normally the first <STRONG>curses</STRONG> routine to call when
  60. initializing a program. A few special routines sometimes
  61. need to be called before it; these are <STRONG>slk_init</STRONG>, <STRONG>filter</STRONG>,
  62. <STRONG>ripoffline</STRONG>, <STRONG>use_env</STRONG>. For multiple-terminal applications,
  63. <STRONG>newterm</STRONG> may be called before <STRONG>initscr</STRONG>.
  64. The initscr code determines the terminal type and initial-
  65. izes all <STRONG>curses</STRONG> data structures. <STRONG>initscr</STRONG> also causes the
  66. first call to <STRONG>refresh</STRONG> to clear the screen. If errors oc-
  67. cur, <STRONG>initscr</STRONG> writes an appropriate error message to stan-
  68. dard error and exits; otherwise, a pointer is returned to
  69. <STRONG>stdscr</STRONG>.
  70. A program that outputs to more than one terminal should
  71. use the <STRONG>newterm</STRONG> routine for each terminal instead of
  72. <STRONG>initscr</STRONG>. A program that needs to inspect capabilities, so
  73. it can continue to run in a line-oriented mode if the ter-
  74. minal cannot support a screen-oriented program, would also
  75. use <STRONG>newterm</STRONG>. The routine <STRONG>newterm</STRONG> should be called once
  76. for each terminal. It returns a variable of type <STRONG>SCREEN</STRONG> <STRONG>*</STRONG>
  77. which should be saved as a reference to that terminal.
  78. The arguments are the <EM>type</EM> of the terminal to be used in
  79. place of <STRONG>$TERM</STRONG>, a file pointer for output to the terminal,
  80. and another file pointer for input from the terminal (if
  81. <EM>type</EM> is <STRONG>NULL</STRONG>, <STRONG>$TERM</STRONG> will be used). The program must also
  82. call <STRONG>endwin</STRONG> for each terminal being used before exiting
  83. from <STRONG>curses</STRONG>. If <STRONG>newterm</STRONG> is called more than once for the
  84. same terminal, the first terminal referred to must be the
  85. last one for which <STRONG>endwin</STRONG> is called.
  86. A program should always call <STRONG>endwin</STRONG> before exiting or es-
  87. caping from <STRONG>curses</STRONG> mode temporarily. This routine re-
  88. stores tty modes, moves the cursor to the lower left-hand
  89. corner of the screen and resets the terminal into the
  90. proper non-visual mode. Calling <STRONG>refresh</STRONG> or <STRONG>doupdate</STRONG> after
  91. a temporary escape causes the program to resume visual
  92. mode.
  93. The <STRONG>isendwin</STRONG> routine returns <STRONG>TRUE</STRONG> if <STRONG>endwin</STRONG> has been
  94. called without any subsequent calls to <STRONG>wrefresh</STRONG>, and <STRONG>FALSE</STRONG>
  95. otherwise.
  96. The <STRONG>set_term</STRONG> routine is used to switch between different
  97. terminals. The screen reference <STRONG>new</STRONG> becomes the new cur-
  98. rent terminal. The previous terminal is returned by the
  99. routine. This is the only routine which manipulates
  100. <STRONG>SCREEN</STRONG> pointers; all other routines affect only the cur-
  101. rent terminal.
  102. The <STRONG>delscreen</STRONG> routine frees storage associated with the
  103. <STRONG>SCREEN</STRONG> data structure. The <STRONG>endwin</STRONG> routine does not do
  104. this, so <STRONG>delscreen</STRONG> should be called after <STRONG>endwin</STRONG> if a par-
  105. ticular <STRONG>SCREEN</STRONG> is no longer needed.
  106. </PRE>
  107. <H2>RETURN VALUE</H2><PRE>
  108. <STRONG>endwin</STRONG> returns the integer <STRONG>ERR</STRONG> upon failure and <STRONG>OK</STRONG> upon
  109. successful completion.
  110. Routines that return pointers always return <STRONG>NULL</STRONG> on error.
  111. X/Open defines no error conditions. In this implementa-
  112. tion <STRONG>endwin</STRONG> returns an error if the terminal was not ini-
  113. tialized.
  114. </PRE>
  115. <H2>NOTES</H2><PRE>
  116. Note that <STRONG>initscr</STRONG> and <STRONG>newterm</STRONG> may be macros.
  117. </PRE>
  118. <H2>PORTABILITY</H2><PRE>
  119. These functions are described in the XSI Curses standard,
  120. Issue 4. It specifies that portable applications must not
  121. call <STRONG>initscr</STRONG> more than once.
  122. Old versions of curses, e.g., BSD 4.4, may have returned a
  123. null pointer from <STRONG>initscr</STRONG> when an error is detected,
  124. rather than exiting. It is safe but redundant to check
  125. the return value of <STRONG>initscr</STRONG> in XSI Curses.
  126. </PRE>
  127. <H2>SEE ALSO</H2><PRE>
  128. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_kernel.3x.html">curs_kernel(3x)</A></STRONG>, <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>,
  129. <STRONG><A HREF="curs_slk.3x.html">curs_slk(3x)</A></STRONG>, <STRONG><A HREF="curs_util.3x.html">curs_util(3x)</A></STRONG>
  130. <STRONG><A HREF="curs_initscr.3x.html">curs_initscr(3x)</A></STRONG>
  131. </PRE>
  132. <HR>
  133. <ADDRESS>
  134. Man(1) output converted with
  135. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  136. </ADDRESS>
  137. </BODY>
  138. </HTML>