]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - Ada95/html/terminal_interface-curses-mouse_s.html
ncurses 5.0
[ncurses.git] / Ada95 / html / terminal_interface-curses-mouse_s.html
diff --git a/Ada95/html/terminal_interface-curses-mouse_s.html b/Ada95/html/terminal_interface-curses-mouse_s.html
deleted file mode 100644 (file)
index 8054e66..0000000
+++ /dev/null
@@ -1,173 +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.Mouse                     --</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.8 @</I>
-<I>------------------------------------------------------------------------------</I>
-<I>--  mouse binding.</I>
-<I>--  This module is generated. Please don't change it manually!</I>
-<I>--  Run the generator instead.</I>
-<I>--  |</I>
-<B>with</B> System;
-
-<B>package</B> Terminal_Interface.Curses.Mouse <B>is</B>
-
-   <I>--  |=====================================================================</I>
-   <I>--  | Man page <A HREF="curs_mouse.3x.html">curs_mouse.3x</A></I>
-   <I>--  |=====================================================================</I>
-   <I>--  Please note, that in ncurses-1.9.9e documentation mouse support</I>
-   <I>--  is still marked as experimental. So also this binding will change</I>
-   <I>--  if the ncurses methods change.</I>
-   <I>--</I>
-   type Event_Mask <B>is</B> <B>private</B>;
-   No_Events  : <B>constant</B> Event_Mask;
-   All_Events : <B>constant</B> Event_Mask;
-
-   type Mouse_Button <B>is</B> (Left,     <I>-- aka: Button 1</I>
-                         Middle,   <I>-- aka: Button 2</I>
-                         Right,    <I>-- aka: Button 3</I>
-                         Button4,  <I>-- aka: Button 4</I>
-                         Control,  <I>-- Control Key</I>
-                         Shift,    <I>-- Shift Key</I>
-                         Alt);     <I>-- ALT Key</I>
-
-   type Button_State <B>is</B> (Released,
-                         Pressed,
-                         Clicked,
-                         Double_Clicked,
-                         Triple_Clicked);
-
-   type Mouse_Event <B>is</B> <B>private</B>;
-
-   <I>--  |=====================================================================</I>
-   <I>--  | Man page <A HREF="curs_mouse.3x.html">curs_mouse.3x</A></I>
-   <I>--  |=====================================================================</I>
-
-   <B>function</B> Has_Mouse <B>return</B> Boolean;
-   <I>--  Return true if a mouse device is supported, false otherwise.</I>
-
-   <B>procedure</B> Register_Reportable_Event
-     (B    : <B>in</B> Mouse_Button;
-      S    : <B>in</B> Button_State;
-      Mask : <B>in</B> <B>out</B> Event_Mask);
-   <I>--  Stores the event described by the button and the state in the mask.</I>
-   <I>--  Before you call this the first time, you should init the mask</I>
-   <I>--  with the Empty_Mask constant</I>
-
-   <I>--  <A NAME="AFU_1">|</I>
-   <B>function</B> Start_Mouse (Mask : Event_Mask := All_Events)
-                         <B>return</B> Event_Mask;
-   <I>--  AKA: <A HREF="curs_mouse.3x.html">mousemask()</A></I>
-
-   <B>procedure</B> End_Mouse;
-   <I>--  Terminates the mouse</I>
-
-   <I>--  <A NAME="AFU_2">|</I>
-   <B>function</B> Get_Mouse <B>return</B> Mouse_Event;
-   <I>--  AKA: <A HREF="curs_mouse.3x.html">getmouse()</A></I>
-
-   <B>procedure</B> Get_Event (Event  : <B>in</B>  Mouse_Event;
-                        Y      : <B>out</B> Line_Position;
-                        X      : <B>out</B> Column_Position;
-                        Button : <B>out</B> Mouse_Button;
-                        State  : <B>out</B> Button_State);
-   <I>--  !!! Warning: X and Y are screen coordinates. Due to ripped of lines they</I>
-   <I>--  may not be identical to window coordinates.</I>
-
-   <I>--  <A NAME="AFU_3">|</I>
-   <B>procedure</B> Unget_Mouse (Event : <B>in</B> Mouse_Event);
-   <I>--  AKA: <A HREF="curs_mouse.3x.html">ungetmouse()</A></I>
-
-   <I>--  <A NAME="AFU_4">|</I>
-   <B>function</B> Enclosed_In_Window (Win    : Window := Standard_Window;
-                                Event  : Mouse_Event) <B>return</B> Boolean;
-   <I>--  AKA: <A HREF="curs_mouse.3x.html">wenclose()</A></I>
-   <I>--  But : use event instead of screen coordinates.</I>
-
-   <I>--  <A NAME="AFU_5">|</I>
-   <B>function</B> Mouse_Interval (Msec : Natural := 200) <B>return</B> Natural;
-   <I>--  AKA: <A HREF="curs_mouse.3x.html">mouseinterval()</A></I>
-
-<B>private</B>
-   type Event_Mask <B>is</B> <B>new</B> Interfaces.C.int;
-   No_Events  : <B>constant</B> Event_Mask := 0;
-   All_Events : <B>constant</B> Event_Mask := -1;
-
-   type Mouse_Event <B>is</B>
-      <B>record</B>
-         Id      : Integer <B>range</B> Integer (Interfaces.C.short'First) ..
-                                 Integer (Interfaces.C.Short'Last);
-         X, Y, Z : Integer <B>range</B> Integer (Interfaces.C.int'First) ..
-                                 Integer (Interfaces.C.int'Last);
-         Bstate  : Event_Mask;
-      <B>end</B> <B>record</B>;
-   <B>pragma</B> Convention (C, Mouse_Event);
-   <B>pragma</B> Pack (Mouse_Event);
-
-   <B>for</B> Mouse_Event <B>use</B>
-      <B>record</B>
-         Id      <B>at</B> 0 <B>range</B>   0 ..  15;
-         X       <B>at</B> 0 <B>range</B>  32 ..  63;
-         Y       <B>at</B> 0 <B>range</B>  64 ..  95;
-         Z       <B>at</B> 0 <B>range</B>  96 .. 127;
-         Bstate  <B>at</B> 0 <B>range</B> 128 .. 159;
-      <B>end</B> <B>record</B>;
-      <I>--  Please note: this rep. clause is generated and may be</I>
-      <I>--               different on your system.</I>
-
-   Generation_Bit_Order : <B>constant</B> System.Bit_Order := System.Low_Order_First;
-   <I>--  This constant may be different on your system.</I>
-
-<B>end</B> Terminal_Interface.Curses.Mouse;
-
-</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>
-