]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/samples/ncurses2-slk_test.adb
ncurses 5.5
[ncurses.git] / Ada95 / samples / ncurses2-slk_test.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                       GNAT ncurses Binding Samples                       --
4 --                                                                          --
5 --                                 ncurses                                  --
6 --                                                                          --
7 --                                 B O D Y                                  --
8 --                                                                          --
9 ------------------------------------------------------------------------------
10 -- Copyright (c) 2000,2004 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.6 $
39 --  $Date: 2004/08/21 21:37:00 $
40 --  Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with ncurses2.util; use ncurses2.util;
43 with Terminal_Interface.Curses; use Terminal_Interface.Curses;
44
45 with Ada.Strings.Unbounded;
46 with Interfaces.C;
47 with Terminal_Interface.Curses.Aux;
48
49 procedure ncurses2.slk_test is
50    procedure myGet (Win : in  Window := Standard_Window;
51                     Str : out Ada.Strings.Unbounded.Unbounded_String;
52                     Len : in  Integer := -1);
53
54    procedure myGet (Win : in  Window := Standard_Window;
55                     Str : out Ada.Strings.Unbounded.Unbounded_String;
56                     Len : in  Integer := -1)
57    is
58       use Ada.Strings.Unbounded;
59       use Interfaces.C;
60       use Terminal_Interface.Curses.Aux;
61
62       function Wgetnstr (Win : Window;
63                          Str : char_array;
64                          Len : int) return int;
65       pragma Import (C, Wgetnstr, "wgetnstr");
66
67       --  FIXME: how to construct "(Len > 0) ? Len : 80"?
68       Ask : constant Interfaces.C.size_t := Interfaces.C.size_t'Val (Len + 80);
69       Txt : char_array (0 .. Ask);
70
71    begin
72       Txt (0) := Interfaces.C.char'First;
73       if Wgetnstr (Win, Txt, Txt'Length) = Curses_Err then
74          raise Curses_Exception;
75       end if;
76       Str := To_Unbounded_String (To_Ada (Txt, True));
77    end myGet;
78
79
80    use Int_IO;
81
82    use Ada.Strings.Unbounded;
83
84    c : Key_Code;
85    buf : Unbounded_String;
86    c2 : Character;
87    fmt : Label_Justification := Centered;
88    tmp : Integer;
89
90 begin
91    c := CTRL ('l');
92    loop
93       Move_Cursor (Line => 0, Column => 0);
94       c2 := Code_To_Char (c);
95       case c2 is
96          when Character'Val (Character'Pos ('l') mod 16#20#) => --  CTRL('l')
97             Erase;
98             Switch_Character_Attribute (Attr => (Bold_Character => True,
99                                                  others => False));
100             Add (Line => 0, Column => 20,
101                  Str => "Soft Key Exerciser");
102             Switch_Character_Attribute (On => False,
103                                         Attr => (Bold_Character => True,
104                                                  others => False));
105
106             Move_Cursor (Line => 2, Column => 0);
107             P ("Available commands are:");
108             P ("");
109             P ("^L         -- refresh screen");
110             P ("a          -- activate or restore soft keys");
111             P ("d          -- disable soft keys");
112             P ("c          -- set centered format for labels");
113             P ("l          -- set left-justified format for labels");
114             P ("r          -- set right-justified format for labels");
115             P ("[12345678] -- set label; labels are numbered 1 through 8");
116             P ("e          -- erase stdscr (should not erase labels)");
117             P ("s          -- test scrolling of shortened screen");
118             P ("x, q       -- return to main menu");
119             P ("");
120             P ("Note: if activating the soft keys causes your terminal to");
121             P ("scroll up one line, your terminal auto-scrolls when anything");
122             P ("is written to the last screen position.  The ncurses code");
123             P ("does not yet handle this gracefully.");
124             Refresh;
125             Restore_Soft_Label_Keys;
126
127          when 'a' =>
128             Restore_Soft_Label_Keys;
129          when 'e' =>
130             Clear;
131          when 's' =>
132             Add (Line => 20, Column => 0,
133                 Str => "Press Q to stop the scrolling-test: ");
134             loop
135                c := Getchar;
136                c2 := Code_To_Char (c);
137                exit when c2 = 'Q';
138                --  c = ERR?
139                --  TODO when c is not a character (arrow key)
140                --  the behavior is different from the C version.
141                Add (Ch => c2);
142             end loop;
143          when 'd' =>
144             Clear_Soft_Label_Keys;
145          when 'l' =>
146             fmt := Left;
147          when 'c' =>
148             fmt := Centered;
149          when 'r' =>
150             fmt := Right;
151          when '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8'  =>
152             Add (Line => 20, Column => 0,
153                  Str => "Please enter the label value: ");
154             Set_Echo_Mode (SwitchOn => True);
155             myGet (Str => buf);
156             Set_Echo_Mode (SwitchOn => False);
157             tmp := ctoi (c2);
158             Set_Soft_Label_Key (Label_Number (tmp), To_String (buf), fmt);
159             Refresh_Soft_Label_Keys;
160             Move_Cursor (Line => 20, Column => 0);
161             Clear_To_End_Of_Line;
162          when 'x' | 'q' =>
163             exit;
164             --  the C version needed a goto, ha ha
165             --  breaks exit the case not the loop because fall-throuh
166             --  happens in C!
167          when others =>
168             Beep;
169       end case;
170       c := Getchar;
171       --  TODO exit when c = EOF
172    end loop;
173    Erase;
174    End_Windows;
175 end ncurses2.slk_test;