]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/src/terminal_interface-curses-forms-field_types-enumeration.adb
d0273294e04dc31d3472b2c7a8cd89dcd8ae72d0
[ncurses.git] / Ada95 / src / terminal_interface-curses-forms-field_types-enumeration.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                           GNAT ncurses Binding                           --
4 --                                                                          --
5 --          Terminal_Interface.Curses.Forms.Field_Types.Enumeration         --
6 --                                                                          --
7 --                                 B O D Y                                  --
8 --                                                                          --
9 ------------------------------------------------------------------------------
10 -- Copyright (c) 1998 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:  Juergen Pfeifer, 1996
37 --  Contact: http://www.familiepfeifer.de/Contact.aspx?Lang=en
38 --  Version Control:
39 --  $Revision: 1.6 $
40 --  Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with Ada.Unchecked_Deallocation;
43 with Interfaces.C; use Interfaces.C;
44 with Interfaces.C.Strings; use Interfaces.C.Strings;
45 with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
46
47 package body Terminal_Interface.Curses.Forms.Field_Types.Enumeration is
48
49    function Create (Info               : Enumeration_Info;
50                     Auto_Release_Names : Boolean := False)
51                     return Enumeration_Field
52    is
53       procedure Release_String is
54         new Ada.Unchecked_Deallocation (String,
55                                         String_Access);
56       E : Enumeration_Field;
57       L : constant size_t := 1 + size_t (Info.C);
58       S : String_Access;
59    begin
60       E.Case_Sensitive       := Info.Case_Sensitive;
61       E.Match_Must_Be_Unique := Info.Match_Must_Be_Unique;
62       E.Arr := new chars_ptr_array (size_t (1) .. L);
63       for I in 1 .. Positive (L - 1) loop
64          if Info.Names (I) = null then
65             raise Form_Exception;
66          end if;
67          E.Arr (size_t (I)) := New_String (Info.Names (I).all);
68          if Auto_Release_Names then
69             S := Info.Names (I);
70             Release_String (S);
71          end if;
72       end loop;
73       E.Arr (L) := Null_Ptr;
74       return E;
75    end Create;
76
77    procedure Release (Enum : in out Enumeration_Field)
78    is
79       I : size_t := 0;
80       P : chars_ptr;
81    begin
82       loop
83          P := Enum.Arr (I);
84          exit when P = Null_Ptr;
85          Free (P);
86          Enum.Arr (I) := Null_Ptr;
87          I := I + 1;
88       end loop;
89       Enum.Arr := null;
90    end Release;
91
92    procedure Set_Field_Type (Fld : in Field;
93                              Typ : in Enumeration_Field)
94    is
95       C_Enum_Type : C_Field_Type;
96       pragma Import (C, C_Enum_Type, "TYPE_ENUM");
97
98       function Set_Fld_Type (F    : Field := Fld;
99                              Cft  : C_Field_Type := C_Enum_Type;
100                              Arg1 : chars_ptr_array;
101                              Arg2 : C_Int;
102                              Arg3 : C_Int) return C_Int;
103       pragma Import (C, Set_Fld_Type, "set_field_type");
104
105       Res : Eti_Error;
106    begin
107       if Typ.Arr = null then
108          raise Form_Exception;
109       end if;
110       Res := Set_Fld_Type (Arg1 => Typ.Arr.all,
111                            Arg2 => C_Int (Boolean'Pos (Typ.Case_Sensitive)),
112                            Arg3 => C_Int (Boolean'Pos
113                                           (Typ.Match_Must_Be_Unique)));
114       if Res /= E_Ok then
115          Eti_Exception (Res);
116       end if;
117       Wrap_Builtin (Fld, Typ, C_Choice_Router);
118    end Set_Field_Type;
119
120 end Terminal_Interface.Curses.Forms.Field_Types.Enumeration;