curs_window.3x.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <!--
  3. ****************************************************************************
  4. * Copyright (c) 1998-2005,2006 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_window.3x,v 1.14 2006/02/25 21:49:19 tom Exp @
  31. -->
  32. <HTML>
  33. <HEAD>
  34. <TITLE>curs_window 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_window 3x</H1>
  40. <HR>
  41. <PRE>
  42. <!-- Manpage converted by man2html 3.0.1 -->
  43. <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG> <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG>
  44. </PRE>
  45. <H2>NAME</H2><PRE>
  46. <STRONG>newwin</STRONG>, <STRONG>delwin</STRONG>, <STRONG>mvwin</STRONG>, <STRONG>subwin</STRONG>, <STRONG>derwin</STRONG>, <STRONG>mvderwin</STRONG>, <STRONG>dupwin</STRONG>,
  47. <STRONG>wsyncup</STRONG>, <STRONG>syncok</STRONG>, <STRONG>wcursyncup</STRONG>, <STRONG>wsyncdown</STRONG> - create <STRONG>curses</STRONG>
  48. windows
  49. </PRE>
  50. <H2>SYNOPSIS</H2><PRE>
  51. <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
  52. <STRONG>WINDOW</STRONG> <STRONG>*newwin(int</STRONG> <STRONG>nlines,</STRONG> <STRONG>int</STRONG> <STRONG>ncols,</STRONG> <STRONG>int</STRONG> <STRONG>begin_y,</STRONG>
  53. <STRONG>int</STRONG> <STRONG>begin_x);</STRONG>
  54. <STRONG>int</STRONG> <STRONG>delwin(WINDOW</STRONG> <STRONG>*win);</STRONG>
  55. <STRONG>int</STRONG> <STRONG>mvwin(WINDOW</STRONG> <STRONG>*win,</STRONG> <STRONG>int</STRONG> <STRONG>y,</STRONG> <STRONG>int</STRONG> <STRONG>x);</STRONG>
  56. <STRONG>WINDOW</STRONG> <STRONG>*subwin(WINDOW</STRONG> <STRONG>*orig,</STRONG> <STRONG>int</STRONG> <STRONG>nlines,</STRONG> <STRONG>int</STRONG> <STRONG>ncols,</STRONG>
  57. <STRONG>int</STRONG> <STRONG>begin_y,</STRONG> <STRONG>int</STRONG> <STRONG>begin_x);</STRONG>
  58. <STRONG>WINDOW</STRONG> <STRONG>*derwin(WINDOW</STRONG> <STRONG>*orig,</STRONG> <STRONG>int</STRONG> <STRONG>nlines,</STRONG> <STRONG>int</STRONG> <STRONG>ncols,</STRONG>
  59. <STRONG>int</STRONG> <STRONG>begin_y,</STRONG> <STRONG>int</STRONG> <STRONG>begin_x);</STRONG>
  60. <STRONG>int</STRONG> <STRONG>mvderwin(WINDOW</STRONG> <STRONG>*win,</STRONG> <STRONG>int</STRONG> <STRONG>par_y,</STRONG> <STRONG>int</STRONG> <STRONG>par_x);</STRONG>
  61. <STRONG>WINDOW</STRONG> <STRONG>*dupwin(WINDOW</STRONG> <STRONG>*win);</STRONG>
  62. <STRONG>void</STRONG> <STRONG>wsyncup(WINDOW</STRONG> <STRONG>*win);</STRONG>
  63. <STRONG>int</STRONG> <STRONG>syncok(WINDOW</STRONG> <STRONG>*win,</STRONG> <STRONG>bool</STRONG> <STRONG>bf);</STRONG>
  64. <STRONG>void</STRONG> <STRONG>wcursyncup(WINDOW</STRONG> <STRONG>*win);</STRONG>
  65. <STRONG>void</STRONG> <STRONG>wsyncdown(WINDOW</STRONG> <STRONG>*win);</STRONG>
  66. </PRE>
  67. <H2>DESCRIPTION</H2><PRE>
  68. Calling <STRONG>newwin</STRONG> creates and returns a pointer to a new win-
  69. dow with the given number of lines and columns. The upper
  70. left-hand corner of the window is at line <EM>begin</EM>_<EM>y</EM>, column
  71. <EM>begin</EM>_<EM>x</EM>. If either <EM>nlines</EM> or <EM>ncols</EM> is zero, they default
  72. to <STRONG>LINES</STRONG> <STRONG>-</STRONG> <EM>begin</EM>_<EM>y</EM> and <STRONG>COLS</STRONG> <STRONG>-</STRONG> <EM>begin</EM>_<EM>x</EM>. A new full-screen
  73. window is created by calling <STRONG>newwin(0,0,0,0)</STRONG>.
  74. Calling <STRONG>delwin</STRONG> deletes the named window, freeing all memo-
  75. ry associated with it (it does not actually erase the win-
  76. dow's screen image). Subwindows must be deleted before
  77. the main window can be deleted.
  78. Calling <STRONG>mvwin</STRONG> moves the window so that the upper left-hand
  79. corner is at position (<EM>x</EM>, <EM>y</EM>). If the move would cause the
  80. window to be off the screen, it is an error and the window
  81. is not moved. Moving subwindows is allowed, but should be
  82. avoided.
  83. Calling <STRONG>subwin</STRONG> creates and returns a pointer to a new win-
  84. dow with the given number of lines, <EM>nlines</EM>, and columns,
  85. <EM>ncols</EM>. The window is at position (<EM>begin</EM>_<EM>y</EM>, <EM>begin</EM>_<EM>x</EM>) on
  86. the screen. (This position is relative to the screen, and
  87. not to the window <EM>orig</EM>.) The window is made in the middle
  88. of the window <EM>orig</EM>, so that changes made to one window
  89. will affect both windows. The subwindow shares memory
  90. with the window <EM>orig</EM>. When using this routine, it is nec-
  91. essary to call <STRONG>touchwin</STRONG> or <STRONG>touchline</STRONG> on <EM>orig</EM> before call-
  92. ing <STRONG>wrefresh</STRONG> on the subwindow.
  93. Calling <STRONG>derwin</STRONG> is the same as calling <STRONG>subwin,</STRONG> except that
  94. <EM>begin</EM>_<EM>y</EM> and <EM>begin</EM>_<EM>x</EM> are relative to the origin of the win-
  95. dow <EM>orig</EM> rather than the screen. There is no difference
  96. between the subwindows and the derived windows.
  97. Calling <STRONG>mvderwin</STRONG> moves a derived window (or subwindow) in-
  98. side its parent window. The screen-relative parameters of
  99. the window are not changed. This routine is used to dis-
  100. play different parts of the parent window at the same
  101. physical position on the screen.
  102. Calling <STRONG>dupwin</STRONG> creates an exact duplicate of the window
  103. <EM>win</EM>.
  104. Calling <STRONG>wsyncup</STRONG> touches all locations in ancestors of <EM>win</EM>
  105. that are changed in <EM>win</EM>. If <STRONG>syncok</STRONG> is called with second
  106. argument <STRONG>TRUE</STRONG> then <STRONG>wsyncup</STRONG> is called automatically whenev-
  107. er there is a change in the window.
  108. The <STRONG>wsyncdown</STRONG> routine touches each location in <EM>win</EM> that
  109. has been touched in any of its ancestor windows. This
  110. routine is called by <STRONG>wrefresh</STRONG>, so it should almost never
  111. be necessary to call it manually.
  112. The routine <STRONG>wcursyncup</STRONG> updates the current cursor position
  113. of all the ancestors of the window to reflect the current
  114. cursor position of the window.
  115. </PRE>
  116. <H2>RETURN VALUE</H2><PRE>
  117. Routines that return an integer return the integer <STRONG>ERR</STRONG> up-
  118. on failure and <STRONG>OK</STRONG> (SVr4 only specifies "an integer value
  119. other than <STRONG>ERR</STRONG>") upon successful completion.
  120. Routines that return pointers return <STRONG>NULL</STRONG> on error.
  121. X/Open defines no error conditions. In this implementa-
  122. tion
  123. <STRONG>delwin</STRONG>
  124. returns an error if the window pointer is
  125. null, or if the window is the parent of anoth-
  126. er window.
  127. This implementation also maintains a list of
  128. windows, and checks that the pointer passed to
  129. <STRONG>delwin</STRONG> is one that it created, returning an
  130. error if it was not..
  131. <STRONG>mvderwin</STRONG>
  132. returns an error if the window pointer is
  133. null, or if some part of the window would be
  134. placed off-screen.
  135. <STRONG>mvwin</STRONG>
  136. returns an error if the window pointer is
  137. null, or if the window is really a pad, or if
  138. some part of the window would be placed off-
  139. screen.
  140. <STRONG>syncok</STRONG>
  141. returns an error if the window pointer is
  142. null.
  143. </PRE>
  144. <H2>NOTES</H2><PRE>
  145. If many small changes are made to the window, the <STRONG>wsyncup</STRONG>
  146. option could degrade performance.
  147. Note that <STRONG>syncok</STRONG> may be a macro.
  148. </PRE>
  149. <H2>BUGS</H2><PRE>
  150. The subwindow functions (<EM>subwin</EM>, <EM>derwin</EM>, <EM>mvderwin</EM>, <STRONG>wsyn-</STRONG>
  151. <STRONG>cup</STRONG>, <STRONG>wsyncdown</STRONG>, <STRONG>wcursyncup</STRONG>, <STRONG>syncok</STRONG>) are flaky, incomplete-
  152. ly implemented, and not well tested.
  153. The System V curses documentation is very unclear about
  154. what <STRONG>wsyncup</STRONG> and <STRONG>wsyncdown</STRONG> actually do. It seems to imply
  155. that they are only supposed to touch exactly those lines
  156. that are affected by ancestor changes. The language here,
  157. and the behavior of the <STRONG>curses</STRONG> implementation, is pat-
  158. terned on the XPG4 curses standard. The weaker XPG4 spec
  159. may result in slower updates.
  160. </PRE>
  161. <H2>PORTABILITY</H2><PRE>
  162. The XSI Curses standard, Issue 4 describes these func-
  163. tions.
  164. </PRE>
  165. <H2>SEE ALSO</H2><PRE>
  166. <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>, <STRONG><A HREF="curs_touch.3x.html">curs_touch(3x)</A></STRONG>
  167. <STRONG><A HREF="curs_window.3x.html">curs_window(3x)</A></STRONG>
  168. </PRE>
  169. <HR>
  170. <ADDRESS>
  171. Man(1) output converted with
  172. <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
  173. </ADDRESS>
  174. </BODY>
  175. </HTML>