]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/samples/ncurses2-genericputs.adb
ncurses 5.6
[ncurses.git] / Ada95 / samples / ncurses2-genericputs.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                       GNAT ncurses Binding Samples                       --
4 --                                                                          --
5 --                                 ncurses                                  --
6 --                                                                          --
7 --                                 B O D Y                                  --
8 --                                                                          --
9 ------------------------------------------------------------------------------
10 -- Copyright (c) 2000,2006 Free Software Foundation, Inc.                   --
11 --                                                                          --
12 -- Permission is hereby granted, free of charge, to any person obtaining a  --
13 -- copy of this software and associated documentation files (the            --
14 -- "Software"), to deal in the Software without restriction, including      --
15 -- without limitation the rights to use, copy, modify, merge, publish,      --
16 -- distribute, distribute with modifications, sublicense, and/or sell       --
17 -- copies of the Software, and to permit persons to whom the Software is    --
18 -- furnished to do so, subject to the following conditions:                 --
19 --                                                                          --
20 -- The above copyright notice and this permission notice shall be included  --
21 -- in all copies or substantial portions of the Software.                   --
22 --                                                                          --
23 -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  --
24 -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               --
25 -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   --
26 -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   --
27 -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    --
28 -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    --
29 -- THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               --
30 --                                                                          --
31 -- Except as contained in this notice, the name(s) of the above copyright   --
32 -- holders shall not be used in advertising or otherwise to promote the     --
33 -- sale, use or other dealings in this Software without prior written       --
34 -- authorization.                                                           --
35 ------------------------------------------------------------------------------
36 --  Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000
37 --  Version Control
38 --  $Revision: 1.2 $
39 --  $Date: 2006/06/25 14:24:40 $
40 --  Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with Ada.Text_IO;
43 with Ada.Strings.Bounded;
44
45 with Terminal_Interface.Curses; use Terminal_Interface.Curses;
46 with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
47
48 with Interfaces.C;
49 with Interfaces.C.Strings;
50
51 package body ncurses2.genericPuts is
52
53    procedure myGet (Win : in  Window := Standard_Window;
54                     Str : out BS.Bounded_String;
55                     Len : in  Integer := -1)
56    is
57       function Wgetnstr (Win : Window;
58                          Str : char_array;
59                          Len : int) return int;
60       pragma Import (C, Wgetnstr, "wgetnstr");
61
62       N        : Integer := Len;
63       Txt : char_array (0 .. size_t (Max_Length));
64       xStr : String (1 .. Max_Length);
65       Cnt : Natural;
66    begin
67       if N < 0 then
68          N := Max_Length;
69       end if;
70       if N > Max_Length then
71          raise Constraint_Error;
72       end if;
73       Txt (0) := Interfaces.C.char'First;
74       if Wgetnstr (Win, Txt, C_Int (N)) = Curses_Err then
75          raise Curses_Exception;
76       end if;
77       To_Ada (Txt, xStr, Cnt, True);
78       Str := To_Bounded_String (xStr (1 .. Cnt));
79    end myGet;
80
81    procedure myPut (Str  : out BS.Bounded_String;
82                     i    : Integer;
83                     Base : in     Number_Base := 10) is
84       package Int_IO is new Integer_IO (Integer); use Int_IO;
85       tmp : String (1 .. BS.Max_Length);
86    begin
87       Put (tmp, i, Base);
88       Str := To_Bounded_String (tmp);
89       Trim (Str, Ada.Strings.Trim_End'(Ada.Strings.Left));
90    end myPut;
91
92    procedure myAdd (Str : BS.Bounded_String) is
93    begin
94       Add (Str => To_String (Str));
95    end myAdd;
96
97    --  from ncurses-aux
98    procedure Fill_String (Cp  : in  chars_ptr;
99                           Str : out BS.Bounded_String)
100    is
101       --  Fill the string with the characters referenced by the
102       --  chars_ptr.
103       --
104       Len : Natural;
105    begin
106       if Cp /= Null_Ptr then
107          Len := Natural (Strlen (Cp));
108          if Max_Length < Len then
109             raise Constraint_Error;
110          end if;
111          declare
112             S : String (1 .. Len);
113          begin
114             S := Value (Cp);
115             Str := To_Bounded_String (S);
116          end;
117       else
118          Str := Null_Bounded_String;
119       end if;
120
121    end Fill_String;
122
123 end ncurses2.genericPuts;