betz            Sun Jul 28 15:56:26 2002 EDT

  Added files:                 
    /phpdoc/en/reference/ncurses        constants.xml 

  Modified files:              
    /phpdoc/en/reference/ncurses        reference.xml 
  Log:
  new structure and constants added
  
  
Index: phpdoc/en/reference/ncurses/reference.xml
diff -u phpdoc/en/reference/ncurses/reference.xml:1.2 
phpdoc/en/reference/ncurses/reference.xml:1.3
--- phpdoc/en/reference/ncurses/reference.xml:1.2       Mon Apr 15 17:57:11 2002
+++ phpdoc/en/reference/ncurses/reference.xml   Sun Jul 28 15:56:26 2002
@@ -1,22 +1,18 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
  <reference id="ref.ncurses">
   <title>Ncurses terminal screen control functions</title>
   <titleabbrev>ncurses functions</titleabbrev>
   
   <partintro>
-   &warn.experimental;
-
    <section id="ncurses.intro">
-    <title>What is ncurses?</title>
+    &reftitle.intro;
     <para>
      ncurses (new curses) is a free software emulation of curses in
-     System V Rel 4.0 (and above). It uses terminfo format, supports pads, colors, 
multiple
-     highlights, form characters and function key mapping.
+     System V Rel 4.0 (and above). It uses terminfo format, supports pads,
+     colors, multiple highlights, form characters and function key mapping.
     </para>
-   </section>
-   <section id="ncurses.platforms">
-    <title>Platforms</title>
+    &warn.experimental;
     <para>
      Ncurses is available for the following platforms:
      <itemizedlist>
@@ -35,506 +31,43 @@
      </itemizedlist>
     </para>
    </section>
+   
    <section id="ncurses.requirements">
-    <title>Requirements</title>
+    &reftitle.required;
     <para>
      You need the ncurses libraries and headerfiles. Download the
-     latest version from the <ulink
-     url="&url.ncurses;">&url.ncurses;</ulink> or from an other GNU-Mirror.
+     latest version from the <ulink url="&url.ncurses;">&url.ncurses;</ulink>
+     or from an other GNU-Mirror.
     </para>
    </section>
+   
    <section id="ncurses.installation">
-    <title>Installation</title>
+    &reftitle.install;
     <para>
      To get these functions to work, you have to compile the CGI
      version of PHP with <option
      role="configure">--with-ncurses</option>.
     </para>
    </section>
-   <section id="ncurses.constants">
-    <title>Ncurses predefined constants</title>
-    <section id="ncurses.errconsts">
-     <title>Error codes</title>
-      <para>
-       On error ncurses functions return NCURSES_ERR.
-      </para>
-     </section>
-     <section id="ncurses.colorconsts">
-      <title>Colors</title>
-       <table>
-        <title>ncurses color constants</title>
-        <tgroup cols="2">
-          <thead>
-           <row>
-            <entry>constant</entry>
-            <entry>meaning</entry>
-           </row>
-          </thead>
-          <tbody>
-           <row>
-            <entry>NCURSES_COLOR_BLACK</entry>
-            <entry>no color (black)</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_WHITE</entry>
-            <entry>white</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_RED</entry>
-            <entry>red - supported when terminal is in color mode</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_GREEN</entry>
-            <entry>green - supported when terminal is in color mod</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_YELLOW</entry>
-            <entry>yellow - supported when terminal is in color mod</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_BLUE</entry>
-            <entry>blue - supported when terminal is in color mod</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_CYAN</entry>
-            <entry>cyan - supported when terminal is in color mod</entry>
-           </row>
-           <row>
-            <entry>NCURSES_COLOR_MAGENTA</entry>
-            <entry>magenta - supported when terminal is in color mod</entry>
-           </row>
-          </tbody>
-        </tgroup>
-       </table>
-     </section>
-     <section id="ncurses.keyconsts">
-     <title>Keys</title>
-       <table>
-        <title>ncurses key constants</title>
-        <tgroup cols="2">
-          <thead>
-           <row>
-            <entry>constant</entry>
-            <entry>meaning</entry>
-           </row>
-          </thead>
-          <tbody>
-           <row>
-            <entry>NCURSES_KEY_F0 - NCURSES_KEY_F64</entry>
-            <entry>function keys F1 - F64</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_DOWN</entry>
-            <entry>down arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_UP</entry>
-            <entry>up arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_LEFT</entry>
-            <entry>left arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_RIGHT</entry>
-            <entry>right arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_HOME</entry>
-            <entry>home key (upward+left arrow)</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_BACKSPACE</entry>
-            <entry>backspace</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_DL</entry>
-            <entry>delete line</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_IL</entry>
-            <entry>insert line</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_DC</entry>
-            <entry>delete character</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_IC</entry>
-            <entry>insert char or enter insert mode</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_EIC</entry>
-            <entry>exit insert char mode</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CLEAR</entry>
-            <entry>clear screen</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_EOS</entry>
-            <entry>clear to end of screen</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_EOL</entry>
-            <entry>clear to end of line</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SF</entry>
-            <entry>scroll one line forward</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SR</entry>
-            <entry>scroll one line backward</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_NPAGE</entry>
-            <entry>next page</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_PPAGE</entry>
-            <entry>previous page</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_STAB</entry>
-            <entry>set tab</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CTAB</entry>
-            <entry>clear tab</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CATAB</entry>
-            <entry>clear all tabs</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SRESET</entry>
-            <entry>soft (partial) reset</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_RESET</entry>
-            <entry>reset or hard reset</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_PRINT</entry>
-            <entry>print</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_LL</entry>
-            <entry>lower left</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_A1</entry>
-            <entry>upper left of keypad</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_A3</entry>
-            <entry>upper right of keypad</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_B2</entry>
-            <entry>center of keypad</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_C1</entry>
-            <entry>lower left of keypad</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_C3</entry>
-            <entry>lower right of keypad</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_BTAB</entry>
-            <entry>back tab</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_BEG</entry>
-            <entry>beginning</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CANCEL</entry>
-            <entry>cancel</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CLOSE</entry>
-            <entry>close</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_COMMAND</entry>
-            <entry>cmd (command)</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_COPY</entry>
-            <entry>copy</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_CREATE</entry>
-            <entry>create</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_END</entry>
-            <entry>end</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_EXIT</entry>
-            <entry>exit</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_FIND</entry>
-            <entry>find</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_HELP</entry>
-            <entry>help</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_MARK</entry>
-            <entry>mark</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_MESSAGE</entry>
-            <entry>message</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_MOVE</entry>
-            <entry>move</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_NEXT</entry>
-            <entry>next</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_OPEN</entry>
-            <entry>open</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_OPTIONS</entry>
-            <entry>options</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_PREVIOUS</entry>
-            <entry>previous</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_REDO</entry>
-            <entry>redo</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_REFERENCE</entry>
-            <entry>ref (reference)</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_REFRESH</entry>
-            <entry>refresh</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_REPLACE</entry>
-            <entry>replace</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_RESTART</entry>
-            <entry>restart</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_RESUME</entry>
-            <entry>resume</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SAVE</entry>
-            <entry>save</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SBEG</entry>
-            <entry>shiftet beg (beginning)</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SCANCEL</entry>
-            <entry>shifted cancel</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SCOMMAND</entry>
-            <entry>shifted command</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SCOPY</entry>
-            <entry>shifted copy</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SCREATE</entry>
-            <entry>shifted create</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SDC</entry>
-            <entry>shifted delete char</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SDL</entry>
-            <entry>shifted delete line</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SELECT</entry>
-            <entry>select</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SEND</entry>
-            <entry>shifted end</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SEOL</entry>
-            <entry>shifted end of line</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SEXIT</entry>
-            <entry>shifted exit</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SFIND</entry>
-            <entry>shifted find</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SHELP</entry>
-            <entry>shifted help</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SHOME</entry>
-            <entry>shifted home</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SIC</entry>
-            <entry>shifted input</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SLEFT</entry>
-            <entry>shifted left arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SMESSAGE</entry>
-            <entry>shifted message</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SMOVE</entry>
-            <entry>shifted move</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SNEXT</entry>
-            <entry>shifted next</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SOPTIONS</entry>
-            <entry>shifted options</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SPREVIOUS</entry>
-            <entry>shifted previous</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SPRINT</entry>
-            <entry>shifted print</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SREDO</entry>
-            <entry>shifted redo</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SREPLACE</entry>
-            <entry>shifted replace</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SRIGHT</entry>
-            <entry>shifted right arrow</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SRSUME</entry>
-            <entry>shifted resume</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SSAVE</entry>
-            <entry>shifted save</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_SSUSPEND</entry>
-            <entry>shifted suspend</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_UNDO</entry>
-            <entry>undo</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_MOUSE</entry>
-            <entry>mouse event has occured</entry>
-           </row>
-           <row>
-            <entry>NCURSES_KEY_MAX</entry>
-            <entry>maximum key value</entry>
-           </row>
-          </tbody>
-        </tgroup>
-       </table>
-     </section>
-     <section>
-      <title>Mouse</title>
-      <table>
-       <title>mouse constants</title>
-       <tgroup cols="2">
-        <thead>
-         <row>
-          <entry>Constant</entry>
-          <entry>meaning</entry>
-         </row>
-        </thead>
-        <tbody>
-           <row>
-            <entry>NCURSES_BUTTON1_RELEASED - NCURSES_BUTTON4_RELEASED</entry>
-            <entry>button (1-4) released</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON1_PRESSED - NCURSES_BUTTON4_PRESSED</entry>
-            <entry>button (1-4) pressed</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON1_CLICKED - NCURSES_BUTTON4_CLICKED</entry>
-            <entry>button (1-4) clicked</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON1_DOUBLE_CLICKED -
-            NCURSES_BUTTON4_DOUBLE_CLICKED</entry>
-            <entry>button (1-4) double clicked</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON1_TRIPLE_CLICKED -
-            NCURSES_BUTTON4_TRIPLE_CLICKED</entry>
-            <entry>button (1-4) triple clicked</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON_CTRL</entry>
-            <entry>ctrl pressed during click</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON_SHIFT</entry>
-            <entry>shift pressed during click</entry>
-           </row>
-           <row>
-            <entry>NCURSES_BUTTON_ALT</entry>
-            <entry>alt pressed during click</entry>
-           </row>
-           <row>
-            <entry>NCURSES_ALL_MOUSE_EVENTS</entry>
-            <entry>report all mouse events</entry>
-           </row>
-           <row>
-            <entry>NCURSES_REPORT_MOUSE_POSITION</entry>
-            <entry>report mouse position</entry>
-           </row>
-        </tbody>
-       </tgroup>
-      </table>
-     </section>
-    </section>
-  </partintro>  
+
+   <section id="ncurses.configuration">
+    &reftitle.runtime;
+    &no.config;
+   </section>
+
+   <section id="ncurses.resources">
+    &reftitle.resources;
+    &no.resource;
+   </section>
+
+   &reference.ncurses.constants;
+
+  </partintro>
 
 &reference.ncurses.functions;
 
 </reference>
+
  <!-- Keep this comment at the end of the file
  Local variables:
  mode: sgml

Index: phpdoc/en/reference/ncurses/constants.xml
+++ phpdoc/en/reference/ncurses/constants.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="ncurses.constants">
 &reftitle.constants;
 &extension.constants;
 <section id="ncurses.errconsts">
  <title>Error codes</title>
   <para>
    On error ncurses functions return NCURSES_ERR.
   </para>
 </section>
  <section id="ncurses.colorconsts">
   <title>Colors</title>
    <table>
     <title>ncurses color constants</title>
     <tgroup cols="2">
       <thead>
        <row>
         <entry>constant</entry>
         <entry>meaning</entry>
        </row>
       </thead>
       <tbody>
        <row>
         <entry>NCURSES_COLOR_BLACK</entry>
         <entry>no color (black)</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_WHITE</entry>
         <entry>white</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_RED</entry>
         <entry>red - supported when terminal is in color mode</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_GREEN</entry>
         <entry>green - supported when terminal is in color mod</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_YELLOW</entry>
         <entry>yellow - supported when terminal is in color mod</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_BLUE</entry>
         <entry>blue - supported when terminal is in color mod</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_CYAN</entry>
         <entry>cyan - supported when terminal is in color mod</entry>
        </row>
        <row>
         <entry>NCURSES_COLOR_MAGENTA</entry>
         <entry>magenta - supported when terminal is in color mod</entry>
        </row>
       </tbody>
     </tgroup>
    </table>
  </section>
  <section id="ncurses.keyconsts">
  <title>Keys</title>
    <table>
     <title>ncurses key constants</title>
     <tgroup cols="2">
       <thead>
        <row>
         <entry>constant</entry>
         <entry>meaning</entry>
        </row>
       </thead>
       <tbody>
        <row>
         <entry>NCURSES_KEY_F0 - NCURSES_KEY_F64</entry>
         <entry>function keys F1 - F64</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_DOWN</entry>
         <entry>down arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_UP</entry>
         <entry>up arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_LEFT</entry>
         <entry>left arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_RIGHT</entry>
         <entry>right arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_HOME</entry>
         <entry>home key (upward+left arrow)</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_BACKSPACE</entry>
         <entry>backspace</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_DL</entry>
         <entry>delete line</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_IL</entry>
         <entry>insert line</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_DC</entry>
         <entry>delete character</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_IC</entry>
         <entry>insert char or enter insert mode</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_EIC</entry>
         <entry>exit insert char mode</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CLEAR</entry>
         <entry>clear screen</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_EOS</entry>
         <entry>clear to end of screen</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_EOL</entry>
         <entry>clear to end of line</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SF</entry>
         <entry>scroll one line forward</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SR</entry>
         <entry>scroll one line backward</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_NPAGE</entry>
         <entry>next page</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_PPAGE</entry>
         <entry>previous page</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_STAB</entry>
         <entry>set tab</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CTAB</entry>
         <entry>clear tab</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CATAB</entry>
         <entry>clear all tabs</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SRESET</entry>
         <entry>soft (partial) reset</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_RESET</entry>
         <entry>reset or hard reset</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_PRINT</entry>
         <entry>print</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_LL</entry>
         <entry>lower left</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_A1</entry>
         <entry>upper left of keypad</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_A3</entry>
         <entry>upper right of keypad</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_B2</entry>
         <entry>center of keypad</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_C1</entry>
         <entry>lower left of keypad</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_C3</entry>
         <entry>lower right of keypad</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_BTAB</entry>
         <entry>back tab</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_BEG</entry>
         <entry>beginning</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CANCEL</entry>
         <entry>cancel</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CLOSE</entry>
         <entry>close</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_COMMAND</entry>
         <entry>cmd (command)</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_COPY</entry>
         <entry>copy</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_CREATE</entry>
         <entry>create</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_END</entry>
         <entry>end</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_EXIT</entry>
         <entry>exit</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_FIND</entry>
         <entry>find</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_HELP</entry>
         <entry>help</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_MARK</entry>
         <entry>mark</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_MESSAGE</entry>
         <entry>message</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_MOVE</entry>
         <entry>move</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_NEXT</entry>
         <entry>next</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_OPEN</entry>
         <entry>open</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_OPTIONS</entry>
         <entry>options</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_PREVIOUS</entry>
         <entry>previous</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_REDO</entry>
         <entry>redo</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_REFERENCE</entry>
         <entry>ref (reference)</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_REFRESH</entry>
         <entry>refresh</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_REPLACE</entry>
         <entry>replace</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_RESTART</entry>
         <entry>restart</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_RESUME</entry>
         <entry>resume</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SAVE</entry>
         <entry>save</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SBEG</entry>
         <entry>shiftet beg (beginning)</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SCANCEL</entry>
         <entry>shifted cancel</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SCOMMAND</entry>
         <entry>shifted command</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SCOPY</entry>
         <entry>shifted copy</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SCREATE</entry>
         <entry>shifted create</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SDC</entry>
         <entry>shifted delete char</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SDL</entry>
         <entry>shifted delete line</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SELECT</entry>
         <entry>select</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SEND</entry>
         <entry>shifted end</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SEOL</entry>
         <entry>shifted end of line</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SEXIT</entry>
         <entry>shifted exit</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SFIND</entry>
         <entry>shifted find</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SHELP</entry>
         <entry>shifted help</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SHOME</entry>
         <entry>shifted home</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SIC</entry>
         <entry>shifted input</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SLEFT</entry>
         <entry>shifted left arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SMESSAGE</entry>
         <entry>shifted message</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SMOVE</entry>
         <entry>shifted move</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SNEXT</entry>
         <entry>shifted next</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SOPTIONS</entry>
         <entry>shifted options</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SPREVIOUS</entry>
         <entry>shifted previous</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SPRINT</entry>
         <entry>shifted print</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SREDO</entry>
         <entry>shifted redo</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SREPLACE</entry>
         <entry>shifted replace</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SRIGHT</entry>
         <entry>shifted right arrow</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SRSUME</entry>
         <entry>shifted resume</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SSAVE</entry>
         <entry>shifted save</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_SSUSPEND</entry>
         <entry>shifted suspend</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_UNDO</entry>
         <entry>undo</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_MOUSE</entry>
         <entry>mouse event has occured</entry>
        </row>
        <row>
         <entry>NCURSES_KEY_MAX</entry>
         <entry>maximum key value</entry>
        </row>
       </tbody>
     </tgroup>
    </table>
  </section>
  <section>
   <title>Mouse</title>
   <table>
    <title>mouse constants</title>
    <tgroup cols="2">
     <thead>
      <row>
       <entry>Constant</entry>
       <entry>meaning</entry>
      </row>
     </thead>
     <tbody>
        <row>
         <entry>NCURSES_BUTTON1_RELEASED - NCURSES_BUTTON4_RELEASED</entry>
         <entry>button (1-4) released</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON1_PRESSED - NCURSES_BUTTON4_PRESSED</entry>
         <entry>button (1-4) pressed</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON1_CLICKED - NCURSES_BUTTON4_CLICKED</entry>
         <entry>button (1-4) clicked</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON1_DOUBLE_CLICKED -
         NCURSES_BUTTON4_DOUBLE_CLICKED</entry>
         <entry>button (1-4) double clicked</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON1_TRIPLE_CLICKED -
         NCURSES_BUTTON4_TRIPLE_CLICKED</entry>
         <entry>button (1-4) triple clicked</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON_CTRL</entry>
         <entry>ctrl pressed during click</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON_SHIFT</entry>
         <entry>shift pressed during click</entry>
        </row>
        <row>
         <entry>NCURSES_BUTTON_ALT</entry>
         <entry>alt pressed during click</entry>
        </row>
        <row>
         <entry>NCURSES_ALL_MOUSE_EVENTS</entry>
         <entry>report all mouse events</entry>
        </row>
        <row>
         <entry>NCURSES_REPORT_MOUSE_POSITION</entry>
         <entry>report mouse position</entry>
        </row>
     </tbody>
    </tgroup>
   </table>
  </section>
</section>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to