]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/samples/ncurses2-slk_test.adb
ncurses 6.1 - patch 20190914
[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-2011,2018 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.10 $
39 --  $Date: 2018/07/07 23:30:32 $
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 : Window := Standard_Window;
51                     Str : out Ada.Strings.Unbounded.Unbounded_String;
52                     Len : Integer := -1);
53
54    procedure myGet (Win : Window := Standard_Window;
55                     Str : out Ada.Strings.Unbounded.Unbounded_String;
56                     Len : 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    use Ada.Strings.Unbounded;
80
81    c : Key_Code;
82    buf : Unbounded_String;
83    c2 : Character;
84    fmt : Label_Justification := Centered;
85    tmp : Integer;
86
87 begin
88    c := CTRL ('l');
89    loop
90       Move_Cursor (Line => 0, Column => 0);
91       c2 := Code_To_Char (c);
92       case c2 is
93          when Character'Val (Character'Pos ('l') mod 16#20#) => --  CTRL('l')
94             Erase;
95             Switch_Character_Attribute (Attr => (Bold_Character => True,
96                                                  others => False));
97             Add (Line => 0, Column => 20,
98                  Str => "Soft Key Exerciser");
99             Switch_Character_Attribute (On => False,
100                                         Attr => (Bold_Character => True,
101                                                  others => False));
102
103             Move_Cursor (Line => 2, Column => 0);
104             P ("Available commands are:");
105             P ("");
106             P ("^L         -- refresh screen");
107             P ("a          -- activate or restore soft keys");
108             P ("d          -- disable soft keys");
109             P ("c          -- set centered format for labels");
110             P ("l          -- set left-justified format for labels");
111             P ("r          -- set right-justified format for labels");
112             P ("[12345678] -- set label; labels are numbered 1 through 8");
113             P ("e          -- erase stdscr (should not erase labels)");
114             P ("s          -- test scrolling of shortened screen");
115             P ("x, q       -- return to main menu");
116             P ("");
117             P ("Note: if activating the soft keys causes your terminal to");
118             P ("scroll up one line, your terminal auto-scrolls when anything");
119             P ("is written to the last screen position.  The ncurses code");
120             P ("does not yet handle this gracefully.");
121             Refresh;
122             Restore_Soft_Label_Keys;
123
124          when 'a' =>
125             Restore_Soft_Label_Keys;
126          when 'e' =>
127             Clear;
128          when 's' =>
129             Add (Line => 20, Column => 0,
130                 Str => "Press Q to stop the scrolling-test: ");
131             loop
132                c := Getchar;
133                c2 := Code_To_Char (c);
134                exit when c2 = 'Q';
135                --  c = ERR?
136                --  TODO when c is not a character (arrow key)
137                --  the behavior is different from the C version.
138                Add (Ch => c2);
139             end loop;
140          when 'd' =>
141             Clear_Soft_Label_Keys;
142          when 'l' =>
143             fmt := Left;
144          when 'c' =>
145             fmt := Centered;
146          when 'r' =>
147             fmt := Right;
148          when '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8'  =>
149             Add (Line => 20, Column => 0,
150                  Str => "Please enter the label value: ");
151             Set_Echo_Mode (SwitchOn => True);
152             myGet (Str => buf);
153             Set_Echo_Mode (SwitchOn => False);
154             tmp := ctoi (c2);
155             Set_Soft_Label_Key (Label_Number (tmp), To_String (buf), fmt);
156             Refresh_Soft_Label_Keys;
157             Move_Cursor (Line => 20, Column => 0);
158             Clear_To_End_Of_Line;
159          when 'x' | 'q' =>
160             exit;
161             --  the C version needed a goto, ha ha
162             --  breaks exit the case not the loop because fall-through
163             --  happens in C!
164          when others =>
165             Beep;
166       end case;
167       c := Getchar;
168       --  TODO exit when c = EOF
169    end loop;
170    Erase;
171    End_Windows;
172 end ncurses2.slk_test;