]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/samples/ncurses2-menu_test.adb
ncurses 5.5
[ncurses.git] / Ada95 / samples / ncurses2-menu_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.5 $
39 --  $Date: 2004/08/21 21:37:00 $
40 --  Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with ncurses2.util; use ncurses2.util;
43
44 with Terminal_Interface.Curses; use Terminal_Interface.Curses;
45 with Terminal_Interface.Curses.Menus; use Terminal_Interface.Curses.Menus;
46 with Terminal_Interface.Curses.Mouse; use Terminal_Interface.Curses.Mouse;
47
48 procedure ncurses2.menu_test is
49    function menu_virtualize (c : Key_Code) return Menu_Request_Code;
50    procedure xAdd (l : Line_Position; c : Column_Position; s : String);
51
52    function menu_virtualize (c : Key_Code) return Menu_Request_Code is
53    begin
54       case c is
55          when Character'Pos (newl) | Key_Exit =>
56             return Menu_Request_Code'Last + 1; --  MAX_COMMAND? TODO
57          when  Character'Pos ('u')  =>
58             return M_ScrollUp_Line;
59          when  Character'Pos ('d') =>
60             return M_ScrollDown_Line;
61          when  Character'Pos ('b') |  Key_Next_Page =>
62             return M_ScrollUp_Page;
63          when  Character'Pos ('f') |  Key_Previous_Page =>
64             return M_ScrollDown_Page;
65          when  Character'Pos ('n') |  Key_Cursor_Down =>
66             return M_Next_Item;
67          when  Character'Pos ('p') |  Key_Cursor_Up =>
68             return M_Previous_Item;
69          when  Character'Pos (' ') =>
70             return M_Toggle_Item;
71          when  Key_Mouse =>
72             return c;
73          when others =>
74             Beep;
75             return c;
76       end case;
77    end menu_virtualize;
78
79    MENU_Y : constant Line_Count := 8;
80    MENU_X : constant Column_Count := 8;
81
82    type String_Access is access String;
83
84    animals : constant array (Positive range <>) of String_Access :=
85      (new String'("Lions"),
86       new String'("Tigers"),
87       new String'("Bears"),
88       new String'("(Oh my!)"),
89       new String'("Newts"),
90       new String'("Platypi"),
91       new String'("Lemurs"));
92
93    items_a : Item_Array_Access := new Item_Array (1 .. animals'Last + 1);
94
95    tmp : Event_Mask;
96
97    procedure xAdd (l : Line_Position; c : Column_Position; s : String) is
98    begin
99       Add (Line => l, Column => c, Str => s);
100    end xAdd;
101
102    mrows : Line_Count;
103    mcols : Column_Count;
104
105    menuwin : Window;
106
107    m : Menu;
108
109    c1 : Key_Code;
110
111    c : Driver_Result;
112    r : Menu_Request_Code;
113 begin
114    tmp := Start_Mouse;
115    xAdd (0, 0, "This is the menu test:");
116    xAdd (2, 0, "  Use up and down arrow to move the select bar.");
117    xAdd (3, 0, "  'n' and 'p' act like arrows.");
118    xAdd (4, 0, "  'b' and 'f' scroll up/down (page), 'u' and 'd' (line).");
119    xAdd (5, 0, "  Press return to exit.");
120    Refresh;
121
122    for i in animals'Range loop
123       items_a (i) := New_Item (animals (i).all);
124    end loop;
125    items_a (animals'Last + 1) := Null_Item;
126
127    m := New_Menu (items_a);
128
129    Set_Format (m, Line_Position (animals'Last + 1) / 2, 1);
130    Scale (m, mrows, mcols);
131
132    menuwin := Create (mrows + 2, mcols + 2, MENU_Y, MENU_X);
133    Set_Window (m, menuwin);
134    Set_KeyPad_Mode (menuwin, True);
135    Box (menuwin); -- 0,0?
136
137    Set_Sub_Window (m, Derived_Window (menuwin, mrows, mcols, 1, 1));
138
139    Post (m);
140
141    loop
142       c1 := Getchar (menuwin);
143       r := menu_virtualize (c1);
144       c := Driver (m, r);
145       exit when c = Unknown_Request; -- E_UNKNOWN_COMMAND?
146       if c = Request_Denied then
147          Beep;
148       end if;
149       --  continue ?
150    end loop;
151
152    Move_Cursor (Line => Lines - 2, Column => 0);
153    Add (Str => "You chose: ");
154    Add (Str => Name (Current (m)));
155    Add (Ch => newl);
156    Pause; -- the C version didn't use Pause, it spelled it out
157
158    Post (m, False); --  unpost, not clear :-(
159    declare begin
160       Delete (menuwin);
161    exception when Curses_Exception => null; end;
162    --  menuwin has children so will raise the exception.
163
164    Delete (m);
165
166    End_Mouse (tmp);
167 end ncurses2.menu_test;