]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - Ada95/html/terminal_interface-curses-panels_s.html
ncurses 5.0
[ncurses.git] / Ada95 / html / terminal_interface-curses-panels_s.html
diff --git a/Ada95/html/terminal_interface-curses-panels_s.html b/Ada95/html/terminal_interface-curses-panels_s.html
deleted file mode 100644 (file)
index 9d2ca4c..0000000
+++ /dev/null
@@ -1,152 +0,0 @@
-<HTML>
-<HEAD>
-<TITLE></TITLE>
-</HEAD>
-<BODY BGCOLOR="#99ccbb" TEXT="#000000" LINK="#4060b0" VLINK="#000080" ALINK="#ff4040">
-<PRE>
-
-<I>------------------------------------------------------------------------------</I>
-<I>--                                                                          --</I>
-<I>--                           <A HREF="http://www.gnat.com">GNAT</A> ncurses Binding                           --</I>
-<I>--                                                                          --</I>
-<I>--                      Terminal_Interface.Curses.Panels                    --</I>
-<I>--                                                                          --</I>
-<I>--                                 S P E C                                  --</I>
-<I>--                                                                          --</I>
-<I>------------------------------------------------------------------------------</I>
-<I>-- Copyright (c) 1998 Free Software Foundation, Inc.                        --</I>
-<I>--                                                                          --</I>
-<I>-- Permission is hereby granted, free of charge, to any person obtaining a  --</I>
-<I>-- copy of this software and associated documentation files (the            --</I>
-<I>-- "Software"), to deal in the Software without restriction, including      --</I>
-<I>-- without limitation the rights to use, copy, modify, merge, publish,      --</I>
-<I>-- distribute, distribute with modifications, sublicense, and/or sell       --</I>
-<I>-- copies of the Software, and to permit persons to whom the Software is    --</I>
-<I>-- furnished to do so, subject to the following conditions:                 --</I>
-<I>--                                                                          --</I>
-<I>-- The above copyright notice and this permission notice shall be included  --</I>
-<I>-- in all copies or substantial portions of the Software.                   --</I>
-<I>--                                                                          --</I>
-<I>-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  --</I>
-<I>-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               --</I>
-<I>-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   --</I>
-<I>-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   --</I>
-<I>-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    --</I>
-<I>-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    --</I>
-<I>-- THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               --</I>
-<I>--                                                                          --</I>
-<I>-- Except as contained in this notice, the name(s) of the above copyright   --</I>
-<I>-- holders shall not be used in advertising or otherwise to promote the     --</I>
-<I>-- sale, use or other dealings in this Software without prior written       --</I>
-<I>-- authorization.                                                           --</I>
-<I>------------------------------------------------------------------------------</I>
-<I>--  <A HREF="http://home.t-online.de/home/Juergen.Pfeifer">J&uuml;rgen Pfeifer</A>, Email: <A HREF="mailto:Juergen.Pfeifer@T-Online.de">Juergen.Pfeifer@T-Online.de</A>                      --</I>
-<I>--  Version Control:</I>
-<I>--  @Revision: 1.3 @</I>
-<I>------------------------------------------------------------------------------</I>
-<B>with</B> System;
-
-<B>package</B> Terminal_Interface.Curses.Panels <B>is</B>
-
-   <B>pragma</B> Linker_Options ("-lpanel");
-
-
-   type Panel <B>is</B> <B>private</B>;
-
-   <I>---------------------------</I>
-   <I>--  Interface constants  --</I>
-   <I>---------------------------</I>
-   Null_Panel : <B>constant</B> Panel;
-
-   <I>-------------------</I>
-   <I>--  Exceptions   --</I>
-   <I>-------------------</I>
-
-   Panel_Exception : <B>exception</B>;
-
-   <I>--  |=====================================================================</I>
-   <I>--  | Man page <A HREF="panel.3x.html">panel.3x</A></I>
-   <I>--  |=====================================================================</I>
-
-   <I>--  <A NAME="AFU_1">|</I>
-   <B>function</B> Create (Win : Window) <B>return</B> Panel;
-   <I>--  AKA: <A HREF="panel.3x.html">new_panel()</A></I>
-
-   <I>--  <A NAME="AFU_2">|</I>
-   <B>function</B> New_Panel (Win : Window) <B>return</B> Panel <B>renames</B> Create;
-   <I>--  AKA: <A HREF="panel.3x.html">new_panel()</A></I>
-
-   <I>--  <A NAME="AFU_3">|</I>
-   <B>procedure</B> Bottom (Pan : <B>in</B> Panel);
-   <I>--  AKA: <A HREF="panel.3x.html">bottom_panel()</A></I>
-
-   <I>--  <A NAME="AFU_4">|</I>
-   <B>procedure</B> Top (Pan : <B>in</B> Panel);
-   <I>--  AKA: <A HREF="panel.3x.html">top_panel()</A></I>
-
-   <I>--  <A NAME="AFU_5">|</I>
-   <B>procedure</B> Show (Pan : <B>in</B> Panel);
-   <I>--  AKA: <A HREF="panel.3x.html">show_panel()</A></I>
-
-   <I>--  <A NAME="AFU_6">|</I>
-   <B>procedure</B> Update_Panels;
-   <I>--  AKA: <A HREF="panel.3x.html">update_panels()</A></I>
-   <B>pragma</B> Import (C, Update_Panels, "update_panels");
-
-   <I>--  <A NAME="AFU_7">|</I>
-   <B>procedure</B> Hide (Pan : <B>in</B> Panel);
-   <I>--  AKA: <A HREF="panel.3x.html">hide_panel()</A></I>
-
-   <I>--  <A NAME="AFU_8">|</I>
-   <B>function</B> Get_Window (Pan : Panel) <B>return</B> Window;
-   <I>--  AKA: <A HREF="panel.3x.html">panel_window()</A></I>
-
-   <I>--  <A NAME="AFU_9">|</I>
-   <B>function</B> Panel_Window (Pan : Panel) <B>return</B> Window <B>renames</B> Get_Window;
-
-   <I>--  <A NAME="AFU_10">|</I>
-   <B>procedure</B> Replace (Pan : <B>in</B> Panel;
-                      Win : <B>in</B> Window);
-   <I>--  AKA: <A HREF="panel.3x.html">replace_panel()</A></I>
-
-   <I>--  <A NAME="AFU_11">|</I>
-   <B>procedure</B> Move (Pan    : <B>in</B> Panel;
-                   Line   : <B>in</B> Line_Position;
-                   Column : <B>in</B> Column_Position);
-   <I>--  AKA: <A HREF="panel.3x.html">move_panel()</A></I>
-
-   <I>--  <A NAME="AFU_12">|</I>
-   <B>function</B> Is_Hidden (Pan : Panel) <B>return</B> Boolean;
-   <I>--  AKA: <A HREF="panel.3x.html">panel_hidden()</A></I>
-
-   <I>--  <A NAME="AFU_13">|</I>
-   <B>function</B> Above (Pan : Panel) <B>return</B> Panel;
-   <I>--  AKA: <A HREF="panel.3x.html">panel_above()</A></I>
-   <B>pragma</B> Import (C, Above, "panel_above");
-
-   <I>--  <A NAME="AFU_14">|</I>
-   <B>function</B> Below (Pan : Panel) <B>return</B> Panel;
-   <I>--  AKA: <A HREF="panel.3x.html">panel_below()</A></I>
-   <B>pragma</B> Import (C, Below, "panel_below");
-
-   <I>--  <A NAME="AFU_15">|</I>
-   <B>procedure</B> Delete (Pan : <B>in</B> <B>out</B> Panel);
-   <I>--  AKA: <A HREF="panel.3x.html">del_panel()</A></I>
-
-   <B>private</B>
-      type Panel <B>is</B> <B>new</B> System.Address;
-      Null_Panel : <B>constant</B> Panel := Panel (System.Null_Address);
-
-<B>end</B> Terminal_Interface.Curses.Panels;
-
-</PRE>
-
-<P><HR><P>
-<P>
-This is BETA software. The interface is subject to change without notice.<P>
-<!-- Do NOT delete my name or the tool name from below; -->
-<!-- giving me credit is a condition of use of ada2html -->
-<P><I>This hypertext format was generated by <A HREF="http://www.adahome.com/Tutorials/Lovelace/dwheeler.htm">David A. Wheeler</A>'s <A HREF="http://www.adahome.com/Resources/Tools/ada2html/ada2html.htm">ada2html</A></I>
-</BODY>
-</HTML>
-