]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/src/terminal_interface-curses.adb
ncurses 5.5
[ncurses.git] / Ada95 / src / terminal_interface-curses.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                           GNAT ncurses Binding                           --
4 --                                                                          --
5 --                        Terminal_Interface.Curses                         --
6 --                                                                          --
7 --                                 B O D Y                                  --
8 --                                                                          --
9 ------------------------------------------------------------------------------
10 -- Copyright (c) 1998,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: Juergen Pfeifer, 1996
37 --  Version Control:
38 --  $Revision: 1.32 $
39 --  $Date: 2004/08/21 21:37:00 $
40 --  Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with System;
43
44 with Terminal_Interface.Curses.Aux;
45 with Interfaces.C;                  use Interfaces.C;
46 with Interfaces.C.Strings;          use Interfaces.C.Strings;
47 with Interfaces.C.Pointers;
48 with Ada.Characters.Handling;       use Ada.Characters.Handling;
49 with Ada.Strings.Fixed;
50 with Ada.Unchecked_Conversion;
51
52 package body Terminal_Interface.Curses is
53
54    use Aux;
55    use type System.Bit_Order;
56
57    package ASF renames Ada.Strings.Fixed;
58
59    type chtype_array is array (size_t range <>)
60       of aliased Attributed_Character;
61    pragma Convention (C, chtype_array);
62
63 ------------------------------------------------------------------------------
64    generic
65       type Element is (<>);
66    function W_Get_Element (Win    : in Window;
67                            Offset : in Natural) return Element;
68
69    function W_Get_Element (Win    : in Window;
70                            Offset : in Natural) return Element is
71       type E_Array is array (Natural range <>) of aliased Element;
72       package C_E_Array is new
73         Interfaces.C.Pointers (Natural, Element, E_Array, Element'Val (0));
74       use C_E_Array;
75
76       function To_Pointer is new
77         Ada.Unchecked_Conversion (Window, Pointer);
78
79       P : Pointer := To_Pointer (Win);
80    begin
81       if Win = Null_Window then
82          raise Curses_Exception;
83       else
84          P := P + ptrdiff_t (Offset);
85          return P.all;
86       end if;
87    end W_Get_Element;
88
89    function W_Get_Int   is new W_Get_Element (C_Int);
90    function W_Get_Short is new W_Get_Element (C_Short);
91    function W_Get_Byte  is new W_Get_Element (Interfaces.C.unsigned_char);
92
93    function Get_Flag (Win    : Window;
94                       Offset : Natural) return Boolean;
95
96    function Get_Flag (Win    : Window;
97                       Offset : Natural) return Boolean
98    is
99       Res : C_Int;
100    begin
101       case Sizeof_bool is
102          when 1 => Res := C_Int (W_Get_Byte  (Win, Offset));
103          when 2 => Res := C_Int (W_Get_Short (Win, Offset));
104          when 4 => Res := C_Int (W_Get_Int   (Win, Offset));
105          when others => raise Curses_Exception;
106       end case;
107
108       case Res is
109          when 0       => return False;
110          when others  => return True;
111       end case;
112    end Get_Flag;
113
114 ------------------------------------------------------------------------------
115    function Key_Name (Key : in Real_Key_Code) return String
116    is
117       function Keyname (K : C_Int) return chars_ptr;
118       pragma Import (C, Keyname, "keyname");
119
120       Ch : Character;
121    begin
122       if Key <= Character'Pos (Character'Last) then
123          Ch := Character'Val (Key);
124          if Is_Control (Ch) then
125             return Un_Control (Attributed_Character'(Ch    => Ch,
126                                                      Color => Color_Pair'First,
127                                                      Attr  => Normal_Video));
128          elsif Is_Graphic (Ch) then
129             declare
130                S : String (1 .. 1);
131             begin
132                S (1) := Ch;
133                return S;
134             end;
135          else
136             return "";
137          end if;
138       else
139          return Fill_String (Keyname (C_Int (Key)));
140       end if;
141    end Key_Name;
142
143    procedure Key_Name (Key  : in  Real_Key_Code;
144                        Name : out String)
145    is
146    begin
147       ASF.Move (Key_Name (Key), Name);
148    end Key_Name;
149
150 ------------------------------------------------------------------------------
151    procedure Init_Screen
152    is
153       function Initscr return Window;
154       pragma Import (C, Initscr, "initscr");
155
156       W : Window;
157    begin
158       W := Initscr;
159       if W = Null_Window then
160          raise Curses_Exception;
161       end if;
162    end Init_Screen;
163
164    procedure End_Windows
165    is
166       function Endwin return C_Int;
167       pragma Import (C, Endwin, "endwin");
168    begin
169       if Endwin = Curses_Err then
170          raise Curses_Exception;
171       end if;
172    end End_Windows;
173
174    function Is_End_Window return Boolean
175    is
176       function Isendwin return Curses_Bool;
177       pragma Import (C, Isendwin, "isendwin");
178    begin
179       if Isendwin = Curses_Bool_False then
180          return False;
181       else
182          return True;
183       end if;
184    end Is_End_Window;
185 ------------------------------------------------------------------------------
186    procedure Move_Cursor (Win    : in Window := Standard_Window;
187                           Line   : in Line_Position;
188                           Column : in Column_Position)
189    is
190       function Wmove (Win    : Window;
191                       Line   : C_Int;
192                       Column : C_Int
193                      ) return C_Int;
194       pragma Import (C, Wmove, "wmove");
195    begin
196       if Wmove (Win, C_Int (Line), C_Int (Column)) = Curses_Err then
197          raise Curses_Exception;
198       end if;
199    end Move_Cursor;
200 ------------------------------------------------------------------------------
201    procedure Add (Win : in Window := Standard_Window;
202                   Ch  : in Attributed_Character)
203    is
204       function Waddch (W  : Window;
205                        Ch : C_Chtype) return C_Int;
206       pragma Import (C, Waddch, "waddch");
207    begin
208       if Waddch (Win, AttrChar_To_Chtype (Ch)) = Curses_Err then
209          raise Curses_Exception;
210       end if;
211    end Add;
212
213    procedure Add (Win : in Window := Standard_Window;
214                   Ch  : in Character)
215    is
216    begin
217       Add (Win,
218            Attributed_Character'(Ch    => Ch,
219                                  Color => Color_Pair'First,
220                                  Attr  => Normal_Video));
221    end Add;
222
223    procedure Add
224      (Win    : in Window := Standard_Window;
225       Line   : in Line_Position;
226       Column : in Column_Position;
227       Ch     : in Attributed_Character)
228    is
229       function mvwaddch (W  : Window;
230                          Y  : C_Int;
231                          X  : C_Int;
232                          Ch : C_Chtype) return C_Int;
233       pragma Import (C, mvwaddch, "mvwaddch");
234    begin
235       if mvwaddch (Win, C_Int (Line),
236                    C_Int (Column),
237                    AttrChar_To_Chtype (Ch)) = Curses_Err then
238          raise Curses_Exception;
239       end if;
240    end Add;
241
242    procedure Add
243      (Win    : in Window := Standard_Window;
244       Line   : in Line_Position;
245       Column : in Column_Position;
246       Ch     : in Character)
247    is
248    begin
249       Add (Win,
250            Line,
251            Column,
252            Attributed_Character'(Ch    => Ch,
253                                  Color => Color_Pair'First,
254                                  Attr  => Normal_Video));
255    end Add;
256
257    procedure Add_With_Immediate_Echo
258      (Win : in Window := Standard_Window;
259       Ch  : in Attributed_Character)
260    is
261       function Wechochar (W  : Window;
262                           Ch : C_Chtype) return C_Int;
263       pragma Import (C, Wechochar, "wechochar");
264    begin
265       if Wechochar (Win, AttrChar_To_Chtype (Ch)) = Curses_Err then
266          raise Curses_Exception;
267       end if;
268    end Add_With_Immediate_Echo;
269
270    procedure Add_With_Immediate_Echo
271      (Win : in Window := Standard_Window;
272       Ch  : in Character)
273    is
274    begin
275       Add_With_Immediate_Echo
276         (Win,
277          Attributed_Character'(Ch    => Ch,
278                                Color => Color_Pair'First,
279                                Attr  => Normal_Video));
280    end Add_With_Immediate_Echo;
281 ------------------------------------------------------------------------------
282    function Create (Number_Of_Lines       : Line_Count;
283                     Number_Of_Columns     : Column_Count;
284                     First_Line_Position   : Line_Position;
285                     First_Column_Position : Column_Position) return Window
286    is
287       function Newwin (Number_Of_Lines       : C_Int;
288                        Number_Of_Columns     : C_Int;
289                        First_Line_Position   : C_Int;
290                        First_Column_Position : C_Int) return Window;
291       pragma Import (C, Newwin, "newwin");
292
293       W : Window;
294    begin
295       W := Newwin (C_Int (Number_Of_Lines),
296                    C_Int (Number_Of_Columns),
297                    C_Int (First_Line_Position),
298                    C_Int (First_Column_Position));
299       if W = Null_Window then
300          raise Curses_Exception;
301       end if;
302       return W;
303    end Create;
304
305    procedure Delete (Win : in out Window)
306    is
307       function Wdelwin (W : Window) return C_Int;
308       pragma Import (C, Wdelwin, "delwin");
309    begin
310       if Wdelwin (Win) = Curses_Err then
311          raise Curses_Exception;
312       end if;
313       Win := Null_Window;
314    end Delete;
315
316    function Sub_Window
317      (Win                   : Window := Standard_Window;
318       Number_Of_Lines       : Line_Count;
319       Number_Of_Columns     : Column_Count;
320       First_Line_Position   : Line_Position;
321       First_Column_Position : Column_Position) return Window
322    is
323       function Subwin
324         (Win                   : Window;
325          Number_Of_Lines       : C_Int;
326          Number_Of_Columns     : C_Int;
327          First_Line_Position   : C_Int;
328          First_Column_Position : C_Int) return Window;
329       pragma Import (C, Subwin, "subwin");
330
331       W : Window;
332    begin
333       W := Subwin (Win,
334                    C_Int (Number_Of_Lines),
335                    C_Int (Number_Of_Columns),
336                    C_Int (First_Line_Position),
337                    C_Int (First_Column_Position));
338       if W = Null_Window then
339          raise Curses_Exception;
340       end if;
341       return W;
342    end Sub_Window;
343
344    function Derived_Window
345      (Win                   : Window := Standard_Window;
346       Number_Of_Lines       : Line_Count;
347       Number_Of_Columns     : Column_Count;
348       First_Line_Position   : Line_Position;
349       First_Column_Position : Column_Position) return Window
350    is
351       function Derwin
352         (Win                   : Window;
353          Number_Of_Lines       : C_Int;
354          Number_Of_Columns     : C_Int;
355          First_Line_Position   : C_Int;
356          First_Column_Position : C_Int) return Window;
357       pragma Import (C, Derwin, "derwin");
358
359       W : Window;
360    begin
361       W := Derwin (Win,
362                    C_Int (Number_Of_Lines),
363                    C_Int (Number_Of_Columns),
364                    C_Int (First_Line_Position),
365                    C_Int (First_Column_Position));
366       if W = Null_Window then
367          raise Curses_Exception;
368       end if;
369       return W;
370    end Derived_Window;
371
372    function Duplicate (Win : Window) return Window
373    is
374       function Dupwin (Win : Window) return Window;
375       pragma Import (C, Dupwin, "dupwin");
376
377       W : constant Window := Dupwin (Win);
378    begin
379       if W = Null_Window then
380          raise Curses_Exception;
381       end if;
382       return W;
383    end Duplicate;
384
385    procedure Move_Window (Win    : in Window;
386                           Line   : in Line_Position;
387                           Column : in Column_Position)
388    is
389       function Mvwin (Win    : Window;
390                       Line   : C_Int;
391                       Column : C_Int) return C_Int;
392       pragma Import (C, Mvwin, "mvwin");
393    begin
394       if Mvwin (Win, C_Int (Line), C_Int (Column)) = Curses_Err then
395          raise Curses_Exception;
396       end if;
397    end Move_Window;
398
399    procedure Move_Derived_Window (Win    : in Window;
400                                   Line   : in Line_Position;
401                                   Column : in Column_Position)
402    is
403       function Mvderwin (Win    : Window;
404                          Line   : C_Int;
405                          Column : C_Int) return C_Int;
406       pragma Import (C, Mvderwin, "mvderwin");
407    begin
408       if Mvderwin (Win, C_Int (Line), C_Int (Column)) = Curses_Err then
409          raise Curses_Exception;
410       end if;
411    end Move_Derived_Window;
412
413    procedure Set_Synch_Mode (Win  : in Window  := Standard_Window;
414                              Mode : in Boolean := False)
415    is
416       function Syncok (Win  : Window;
417                        Mode : Curses_Bool) return C_Int;
418       pragma Import (C, Syncok, "syncok");
419    begin
420       if Syncok (Win, Curses_Bool (Boolean'Pos (Mode))) = Curses_Err then
421          raise Curses_Exception;
422       end if;
423    end Set_Synch_Mode;
424 ------------------------------------------------------------------------------
425    procedure Add (Win : in Window := Standard_Window;
426                   Str : in String;
427                   Len : in Integer := -1)
428    is
429       function Waddnstr (Win : Window;
430                          Str : char_array;
431                          Len : C_Int := -1) return C_Int;
432       pragma Import (C, Waddnstr, "waddnstr");
433
434       Txt    : char_array (0 .. Str'Length);
435       Length : size_t;
436    begin
437       To_C (Str, Txt, Length);
438       if Waddnstr (Win, Txt, C_Int (Len)) = Curses_Err then
439          raise Curses_Exception;
440       end if;
441    end Add;
442
443    procedure Add
444      (Win    : in Window := Standard_Window;
445       Line   : in Line_Position;
446       Column : in Column_Position;
447       Str    : in String;
448       Len    : in Integer := -1)
449    is
450    begin
451       Move_Cursor (Win, Line, Column);
452       Add (Win, Str, Len);
453    end Add;
454 ------------------------------------------------------------------------------
455    procedure Add
456      (Win : in Window := Standard_Window;
457       Str : in Attributed_String;
458       Len : in Integer := -1)
459    is
460       function Waddchnstr (Win : Window;
461                            Str : chtype_array;
462                            Len : C_Int := -1) return C_Int;
463       pragma Import (C, Waddchnstr, "waddchnstr");
464
465       Txt : chtype_array (0 .. Str'Length);
466    begin
467       for Length in 1 .. size_t (Str'Length) loop
468          Txt (Length - 1) := Str (Natural (Length));
469       end loop;
470       Txt (Str'Length) := Default_Character;
471       if Waddchnstr (Win,
472                      Txt,
473                      C_Int (Len)) = Curses_Err then
474          raise Curses_Exception;
475       end if;
476    end Add;
477
478    procedure Add
479      (Win    : in Window := Standard_Window;
480       Line   : in Line_Position;
481       Column : in Column_Position;
482       Str    : in Attributed_String;
483       Len    : in Integer := -1)
484    is
485    begin
486       Move_Cursor (Win, Line, Column);
487       Add (Win, Str, Len);
488    end Add;
489 ------------------------------------------------------------------------------
490    procedure Border
491      (Win                       : in Window := Standard_Window;
492       Left_Side_Symbol          : in Attributed_Character := Default_Character;
493       Right_Side_Symbol         : in Attributed_Character := Default_Character;
494       Top_Side_Symbol           : in Attributed_Character := Default_Character;
495       Bottom_Side_Symbol        : in Attributed_Character := Default_Character;
496       Upper_Left_Corner_Symbol  : in Attributed_Character := Default_Character;
497       Upper_Right_Corner_Symbol : in Attributed_Character := Default_Character;
498       Lower_Left_Corner_Symbol  : in Attributed_Character := Default_Character;
499       Lower_Right_Corner_Symbol : in Attributed_Character := Default_Character)
500    is
501       function Wborder (W   : Window;
502                         LS  : C_Chtype;
503                         RS  : C_Chtype;
504                         TS  : C_Chtype;
505                         BS  : C_Chtype;
506                         ULC : C_Chtype;
507                         URC : C_Chtype;
508                         LLC : C_Chtype;
509                         LRC : C_Chtype) return C_Int;
510       pragma Import (C, Wborder, "wborder");
511    begin
512       if Wborder (Win,
513                   AttrChar_To_Chtype (Left_Side_Symbol),
514                   AttrChar_To_Chtype (Right_Side_Symbol),
515                   AttrChar_To_Chtype (Top_Side_Symbol),
516                   AttrChar_To_Chtype (Bottom_Side_Symbol),
517                   AttrChar_To_Chtype (Upper_Left_Corner_Symbol),
518                   AttrChar_To_Chtype (Upper_Right_Corner_Symbol),
519                   AttrChar_To_Chtype (Lower_Left_Corner_Symbol),
520                   AttrChar_To_Chtype (Lower_Right_Corner_Symbol)
521                   ) = Curses_Err
522       then
523          raise Curses_Exception;
524       end if;
525    end Border;
526
527    procedure Box
528      (Win               : in Window := Standard_Window;
529       Vertical_Symbol   : in Attributed_Character := Default_Character;
530       Horizontal_Symbol : in Attributed_Character := Default_Character)
531    is
532    begin
533       Border (Win,
534               Vertical_Symbol, Vertical_Symbol,
535               Horizontal_Symbol, Horizontal_Symbol);
536    end Box;
537
538    procedure Horizontal_Line
539      (Win         : in Window := Standard_Window;
540       Line_Size   : in Natural;
541       Line_Symbol : in Attributed_Character := Default_Character)
542    is
543       function Whline (W   : Window;
544                        Ch  : C_Chtype;
545                        Len : C_Int) return C_Int;
546       pragma Import (C, Whline, "whline");
547    begin
548       if Whline (Win,
549                  AttrChar_To_Chtype (Line_Symbol),
550                  C_Int (Line_Size)) = Curses_Err then
551          raise Curses_Exception;
552       end if;
553    end Horizontal_Line;
554
555    procedure Vertical_Line
556      (Win         : in Window := Standard_Window;
557       Line_Size   : in Natural;
558       Line_Symbol : in Attributed_Character := Default_Character)
559    is
560       function Wvline (W   : Window;
561                        Ch  : C_Chtype;
562                        Len : C_Int) return C_Int;
563       pragma Import (C, Wvline, "wvline");
564    begin
565       if Wvline (Win,
566                  AttrChar_To_Chtype (Line_Symbol),
567                  C_Int (Line_Size)) = Curses_Err then
568          raise Curses_Exception;
569       end if;
570    end Vertical_Line;
571
572 ------------------------------------------------------------------------------
573    function Get_Keystroke (Win : Window := Standard_Window)
574      return Real_Key_Code
575    is
576       function Wgetch (W : Window) return C_Int;
577       pragma Import (C, Wgetch, "wgetch");
578
579       C : constant C_Int := Wgetch (Win);
580    begin
581       if C = Curses_Err then
582          return Key_None;
583       else
584          return Real_Key_Code (C);
585       end if;
586    end Get_Keystroke;
587
588    procedure Undo_Keystroke (Key : in Real_Key_Code)
589    is
590       function Ungetch (Ch : C_Int) return C_Int;
591       pragma Import (C, Ungetch, "ungetch");
592    begin
593       if Ungetch (C_Int (Key)) = Curses_Err then
594          raise Curses_Exception;
595       end if;
596    end Undo_Keystroke;
597
598    function Has_Key (Key : Special_Key_Code) return Boolean
599    is
600       function Haskey (Key : C_Int) return C_Int;
601       pragma Import (C, Haskey, "has_key");
602    begin
603       if Haskey (C_Int (Key)) = Curses_False then
604          return False;
605       else
606          return True;
607       end if;
608    end Has_Key;
609
610    function Is_Function_Key (Key : Special_Key_Code) return Boolean
611    is
612       L : constant Special_Key_Code  := Special_Key_Code (Natural (Key_F0) +
613         Natural (Function_Key_Number'Last));
614    begin
615       if (Key >= Key_F0) and then (Key <= L) then
616          return True;
617       else
618          return False;
619       end if;
620    end Is_Function_Key;
621
622    function Function_Key (Key : Real_Key_Code)
623                           return Function_Key_Number
624    is
625    begin
626       if Is_Function_Key (Key) then
627          return Function_Key_Number (Key - Key_F0);
628       else
629          raise Constraint_Error;
630       end if;
631    end Function_Key;
632
633    function Function_Key_Code (Key : Function_Key_Number) return Real_Key_Code
634    is
635    begin
636       return Real_Key_Code (Natural (Key_F0) + Natural (Key));
637    end Function_Key_Code;
638 ------------------------------------------------------------------------------
639    procedure Standout (Win : Window  := Standard_Window;
640                        On  : Boolean := True)
641    is
642       function wstandout (Win : Window) return C_Int;
643       pragma Import (C, wstandout, "wstandout");
644       function wstandend (Win : Window) return C_Int;
645       pragma Import (C, wstandend, "wstandend");
646
647       Err : C_Int;
648    begin
649       if On then
650          Err := wstandout (Win);
651       else
652          Err := wstandend (Win);
653       end if;
654       if Err = Curses_Err then
655          raise Curses_Exception;
656       end if;
657    end Standout;
658
659    procedure Switch_Character_Attribute
660      (Win  : in Window := Standard_Window;
661       Attr : in Character_Attribute_Set := Normal_Video;
662       On   : in Boolean := True)
663    is
664       function Wattron (Win    : Window;
665                         C_Attr : C_AttrType) return C_Int;
666       pragma Import (C, Wattron, "wattr_on");
667       function Wattroff (Win    : Window;
668                          C_Attr : C_AttrType) return C_Int;
669       pragma Import (C, Wattroff, "wattr_off");
670       --  In Ada we use the On Boolean to control whether or not we want to
671       --  switch on or off the attributes in the set.
672       Err : C_Int;
673       AC  : constant Attributed_Character := (Ch    => Character'First,
674                                               Color => Color_Pair'First,
675                                               Attr  => Attr);
676    begin
677       if On then
678          Err := Wattron  (Win, AttrChar_To_AttrType (AC));
679       else
680          Err := Wattroff (Win, AttrChar_To_AttrType (AC));
681       end if;
682       if Err = Curses_Err then
683          raise Curses_Exception;
684       end if;
685    end Switch_Character_Attribute;
686
687    procedure Set_Character_Attributes
688      (Win   : in Window := Standard_Window;
689       Attr  : in Character_Attribute_Set := Normal_Video;
690       Color : in Color_Pair := Color_Pair'First)
691    is
692       function Wattrset (Win    : Window;
693                          C_Attr : C_AttrType) return C_Int;
694       pragma Import (C, Wattrset, "wattrset"); -- ??? wattr_set
695    begin
696       if Wattrset (Win,
697                    AttrChar_To_AttrType (Attributed_Character'
698                                          (Ch    => Character'First,
699                                           Color => Color,
700                                           Attr  => Attr))) = Curses_Err then
701          raise Curses_Exception;
702       end if;
703    end Set_Character_Attributes;
704
705    function Get_Character_Attribute (Win : Window := Standard_Window)
706                                      return Character_Attribute_Set
707    is
708       function Wattrget (Win : Window;
709                          Atr : access C_AttrType;
710                          Col : access C_Short;
711                          Opt : System.Address) return C_Int;
712       pragma Import (C, Wattrget, "wattr_get");
713
714       Attr : aliased C_AttrType;
715       Col  : aliased C_Short;
716       Res  : constant C_Int := Wattrget (Win, Attr'Access, Col'Access,
717                                          System.Null_Address);
718       Ch   : Attributed_Character;
719    begin
720       if Res = Curses_Ok then
721          Ch := AttrType_To_AttrChar (Attr);
722          return Ch.Attr;
723       else
724          raise Curses_Exception;
725       end if;
726    end Get_Character_Attribute;
727
728    function Get_Character_Attribute (Win : Window := Standard_Window)
729                                      return Color_Pair
730    is
731       function Wattrget (Win : Window;
732                          Atr : access C_AttrType;
733                          Col : access C_Short;
734                          Opt : System.Address) return C_Int;
735       pragma Import (C, Wattrget, "wattr_get");
736
737       Attr : aliased C_AttrType;
738       Col  : aliased C_Short;
739       Res  : constant C_Int := Wattrget (Win, Attr'Access, Col'Access,
740                                          System.Null_Address);
741       Ch   : Attributed_Character;
742    begin
743       if Res = Curses_Ok then
744          Ch := AttrType_To_AttrChar (Attr);
745          return Ch.Color;
746       else
747          raise Curses_Exception;
748       end if;
749    end Get_Character_Attribute;
750
751    procedure Set_Color (Win  : in Window := Standard_Window;
752                         Pair : in Color_Pair)
753    is
754       function Wset_Color (Win   : Window;
755                            Color : C_Short;
756                            Opts  : C_Void_Ptr) return C_Int;
757       pragma Import (C, Wset_Color, "wcolor_set");
758    begin
759       if Wset_Color (Win,
760                      C_Short (Pair),
761                      C_Void_Ptr (System.Null_Address)) = Curses_Err then
762          raise Curses_Exception;
763       end if;
764    end Set_Color;
765
766    procedure Change_Attributes
767      (Win   : in Window := Standard_Window;
768       Count : in Integer := -1;
769       Attr  : in Character_Attribute_Set := Normal_Video;
770       Color : in Color_Pair := Color_Pair'First)
771    is
772       function Wchgat (Win   : Window;
773                        Cnt   : C_Int;
774                        Attr  : C_AttrType;
775                        Color : C_Short;
776                        Opts  : System.Address := System.Null_Address)
777                        return C_Int;
778       pragma Import (C, Wchgat, "wchgat");
779
780       Ch : constant Attributed_Character :=
781         (Ch => Character'First, Color => Color_Pair'First, Attr => Attr);
782    begin
783       if Wchgat (Win, C_Int (Count), AttrChar_To_AttrType (Ch),
784                  C_Short (Color)) = Curses_Err then
785          raise Curses_Exception;
786       end if;
787    end Change_Attributes;
788
789    procedure Change_Attributes
790      (Win    : in Window := Standard_Window;
791       Line   : in Line_Position := Line_Position'First;
792       Column : in Column_Position := Column_Position'First;
793       Count  : in Integer := -1;
794       Attr   : in Character_Attribute_Set := Normal_Video;
795       Color  : in Color_Pair := Color_Pair'First)
796    is
797    begin
798       Move_Cursor (Win, Line, Column);
799       Change_Attributes (Win, Count, Attr, Color);
800    end Change_Attributes;
801 ------------------------------------------------------------------------------
802    procedure Beep
803    is
804       function Beeper return C_Int;
805       pragma Import (C, Beeper, "beep");
806    begin
807       if Beeper = Curses_Err then
808          raise Curses_Exception;
809       end if;
810    end Beep;
811
812    procedure Flash_Screen
813    is
814       function Flash return C_Int;
815       pragma Import (C, Flash, "flash");
816    begin
817       if Flash = Curses_Err then
818          raise Curses_Exception;
819       end if;
820    end Flash_Screen;
821 ------------------------------------------------------------------------------
822    procedure Set_Cbreak_Mode (SwitchOn : in Boolean := True)
823    is
824       function Cbreak return C_Int;
825       pragma Import (C, Cbreak, "cbreak");
826       function NoCbreak return C_Int;
827       pragma Import (C, NoCbreak, "nocbreak");
828
829       Err : C_Int;
830    begin
831       if SwitchOn then
832          Err := Cbreak;
833       else
834          Err := NoCbreak;
835       end if;
836       if Err = Curses_Err then
837          raise Curses_Exception;
838       end if;
839    end Set_Cbreak_Mode;
840
841    procedure Set_Raw_Mode (SwitchOn : in Boolean := True)
842    is
843       function Raw return C_Int;
844       pragma Import (C, Raw, "raw");
845       function NoRaw return C_Int;
846       pragma Import (C, NoRaw, "noraw");
847
848       Err : C_Int;
849    begin
850       if SwitchOn then
851          Err := Raw;
852       else
853          Err := NoRaw;
854       end if;
855       if Err = Curses_Err then
856          raise Curses_Exception;
857       end if;
858    end Set_Raw_Mode;
859
860    procedure Set_Echo_Mode (SwitchOn : in Boolean := True)
861    is
862       function Echo return C_Int;
863       pragma Import (C, Echo, "echo");
864       function NoEcho return C_Int;
865       pragma Import (C, NoEcho, "noecho");
866
867       Err : C_Int;
868    begin
869       if SwitchOn then
870          Err := Echo;
871       else
872          Err := NoEcho;
873       end if;
874       if Err = Curses_Err then
875          raise Curses_Exception;
876       end if;
877    end Set_Echo_Mode;
878
879    procedure Set_Meta_Mode (Win      : in Window := Standard_Window;
880                             SwitchOn : in Boolean := True)
881    is
882       function Meta (W : Window; Mode : Curses_Bool) return C_Int;
883       pragma Import (C, Meta, "meta");
884    begin
885       if Meta (Win, Curses_Bool (Boolean'Pos (SwitchOn))) = Curses_Err then
886          raise Curses_Exception;
887       end if;
888    end Set_Meta_Mode;
889
890    procedure Set_KeyPad_Mode (Win      : in Window := Standard_Window;
891                               SwitchOn : in Boolean := True)
892    is
893       function Keypad (W : Window; Mode : Curses_Bool) return C_Int;
894       pragma Import (C, Keypad, "keypad");
895    begin
896       if Keypad (Win, Curses_Bool (Boolean'Pos (SwitchOn))) = Curses_Err then
897          raise Curses_Exception;
898       end if;
899    end Set_KeyPad_Mode;
900
901    function Get_KeyPad_Mode (Win : in Window := Standard_Window)
902                              return Boolean
903    is
904    begin
905       return Get_Flag (Win, Offset_use_keypad);
906    end Get_KeyPad_Mode;
907
908    procedure Half_Delay (Amount : in Half_Delay_Amount)
909    is
910       function Halfdelay (Amount : C_Int) return C_Int;
911       pragma Import (C, Halfdelay, "halfdelay");
912    begin
913       if Halfdelay (C_Int (Amount)) = Curses_Err then
914          raise Curses_Exception;
915       end if;
916    end Half_Delay;
917
918    procedure Set_Flush_On_Interrupt_Mode
919      (Win  : in Window := Standard_Window;
920       Mode : in Boolean := True)
921    is
922       function Intrflush (Win : Window; Mode : Curses_Bool) return C_Int;
923       pragma Import (C, Intrflush, "intrflush");
924    begin
925       if Intrflush (Win, Curses_Bool (Boolean'Pos (Mode))) = Curses_Err then
926          raise Curses_Exception;
927       end if;
928    end Set_Flush_On_Interrupt_Mode;
929
930    procedure Set_Queue_Interrupt_Mode
931      (Win   : in Window := Standard_Window;
932       Flush : in Boolean := True)
933    is
934       procedure Qiflush;
935       pragma Import (C, Qiflush, "qiflush");
936       procedure No_Qiflush;
937       pragma Import (C, No_Qiflush, "noqiflush");
938    begin
939       if Win = Null_Window then
940          raise Curses_Exception;
941       end if;
942       if Flush then
943          Qiflush;
944       else
945          No_Qiflush;
946       end if;
947    end Set_Queue_Interrupt_Mode;
948
949    procedure Set_NoDelay_Mode
950      (Win  : in Window := Standard_Window;
951       Mode : in Boolean := False)
952    is
953       function Nodelay (Win : Window; Mode : Curses_Bool) return C_Int;
954       pragma Import (C, Nodelay, "nodelay");
955    begin
956       if Nodelay (Win, Curses_Bool (Boolean'Pos (Mode))) = Curses_Err then
957          raise Curses_Exception;
958       end if;
959    end Set_NoDelay_Mode;
960
961    procedure Set_Timeout_Mode (Win    : in Window := Standard_Window;
962                                Mode   : in Timeout_Mode;
963                                Amount : in Natural)
964    is
965       function Wtimeout (Win : Window; Amount : C_Int) return C_Int;
966       pragma Import (C, Wtimeout, "wtimeout");
967
968       Time : C_Int;
969    begin
970       case Mode is
971          when Blocking     => Time := -1;
972          when Non_Blocking => Time := 0;
973          when Delayed      =>
974             if Amount = 0 then
975                raise Constraint_Error;
976             end if;
977             Time := C_Int (Amount);
978       end case;
979       if Wtimeout (Win, Time) = Curses_Err then
980          raise Curses_Exception;
981       end if;
982    end Set_Timeout_Mode;
983
984    procedure Set_Escape_Timer_Mode
985      (Win       : in Window := Standard_Window;
986       Timer_Off : in Boolean := False)
987    is
988       function Notimeout (Win : Window; Mode : Curses_Bool) return C_Int;
989       pragma Import (C, Notimeout, "notimeout");
990    begin
991       if Notimeout (Win, Curses_Bool (Boolean'Pos (Timer_Off)))
992         = Curses_Err then
993          raise Curses_Exception;
994       end if;
995    end Set_Escape_Timer_Mode;
996
997 ------------------------------------------------------------------------------
998    procedure Set_NL_Mode (SwitchOn : in Boolean := True)
999    is
1000       function NL return C_Int;
1001       pragma Import (C, NL, "nl");
1002       function NoNL return C_Int;
1003       pragma Import (C, NoNL, "nonl");
1004
1005       Err : C_Int;
1006    begin
1007       if SwitchOn then
1008          Err := NL;
1009       else
1010          Err := NoNL;
1011       end if;
1012       if Err = Curses_Err then
1013          raise Curses_Exception;
1014       end if;
1015    end Set_NL_Mode;
1016
1017    procedure Clear_On_Next_Update
1018      (Win      : in Window := Standard_Window;
1019       Do_Clear : in Boolean := True)
1020    is
1021       function Clear_Ok (W : Window; Flag : Curses_Bool) return C_Int;
1022       pragma Import (C, Clear_Ok, "clearok");
1023    begin
1024       if Clear_Ok (Win, Curses_Bool (Boolean'Pos (Do_Clear))) = Curses_Err then
1025          raise Curses_Exception;
1026       end if;
1027    end Clear_On_Next_Update;
1028
1029    procedure Use_Insert_Delete_Line
1030      (Win    : in Window := Standard_Window;
1031       Do_Idl : in Boolean := True)
1032    is
1033       function IDL_Ok (W : Window; Flag : Curses_Bool) return C_Int;
1034       pragma Import (C, IDL_Ok, "idlok");
1035    begin
1036       if IDL_Ok (Win, Curses_Bool (Boolean'Pos (Do_Idl))) = Curses_Err then
1037          raise Curses_Exception;
1038       end if;
1039    end Use_Insert_Delete_Line;
1040
1041    procedure Use_Insert_Delete_Character
1042      (Win    : in Window := Standard_Window;
1043       Do_Idc : in Boolean := True)
1044    is
1045       function IDC_Ok (W : Window; Flag : Curses_Bool) return C_Int;
1046       pragma Import (C, IDC_Ok, "idcok");
1047    begin
1048       if IDC_Ok (Win, Curses_Bool (Boolean'Pos (Do_Idc))) = Curses_Err then
1049          raise Curses_Exception;
1050       end if;
1051    end Use_Insert_Delete_Character;
1052
1053    procedure Leave_Cursor_After_Update
1054      (Win      : in Window := Standard_Window;
1055       Do_Leave : in Boolean := True)
1056    is
1057       function Leave_Ok (W : Window; Flag : Curses_Bool) return C_Int;
1058       pragma Import (C, Leave_Ok, "leaveok");
1059    begin
1060       if Leave_Ok (Win, Curses_Bool (Boolean'Pos (Do_Leave))) = Curses_Err then
1061          raise Curses_Exception;
1062       end if;
1063    end Leave_Cursor_After_Update;
1064
1065    procedure Immediate_Update_Mode
1066      (Win  : in Window := Standard_Window;
1067       Mode : in Boolean := False)
1068    is
1069       function Immedok (Win : Window; Mode : Curses_Bool) return C_Int;
1070       pragma Import (C, Immedok, "immedok");
1071    begin
1072       if Immedok (Win, Curses_Bool (Boolean'Pos (Mode))) = Curses_Err then
1073          raise Curses_Exception;
1074       end if;
1075    end Immediate_Update_Mode;
1076
1077    procedure Allow_Scrolling
1078      (Win  : in Window  := Standard_Window;
1079       Mode : in Boolean := False)
1080    is
1081       function Scrollok (Win : Window; Mode : Curses_Bool) return C_Int;
1082       pragma Import (C, Scrollok, "scrollok");
1083    begin
1084       if Scrollok (Win, Curses_Bool (Boolean'Pos (Mode))) = Curses_Err then
1085          raise Curses_Exception;
1086       end if;
1087    end Allow_Scrolling;
1088
1089    function Scrolling_Allowed (Win : Window := Standard_Window)
1090                                return Boolean
1091    is
1092    begin
1093       return Get_Flag (Win, Offset_scroll);
1094    end Scrolling_Allowed;
1095
1096    procedure Set_Scroll_Region
1097      (Win         : in Window := Standard_Window;
1098       Top_Line    : in Line_Position;
1099       Bottom_Line : in Line_Position)
1100    is
1101       function Wsetscrreg (Win : Window;
1102                            Lin : C_Int;
1103                            Col : C_Int) return C_Int;
1104       pragma Import (C, Wsetscrreg, "wsetscrreg");
1105    begin
1106       if Wsetscrreg (Win, C_Int (Top_Line), C_Int (Bottom_Line))
1107         = Curses_Err then
1108          raise Curses_Exception;
1109       end if;
1110    end Set_Scroll_Region;
1111 ------------------------------------------------------------------------------
1112    procedure Update_Screen
1113    is
1114       function Do_Update return C_Int;
1115       pragma Import (C, Do_Update, "doupdate");
1116    begin
1117       if Do_Update = Curses_Err then
1118          raise Curses_Exception;
1119       end if;
1120    end Update_Screen;
1121
1122    procedure Refresh (Win : in Window := Standard_Window)
1123    is
1124       function Wrefresh (W : Window) return C_Int;
1125       pragma Import (C, Wrefresh, "wrefresh");
1126    begin
1127       if Wrefresh (Win) = Curses_Err then
1128          raise Curses_Exception;
1129       end if;
1130    end Refresh;
1131
1132    procedure Refresh_Without_Update
1133      (Win : in Window := Standard_Window)
1134    is
1135       function Wnoutrefresh (W : Window) return C_Int;
1136       pragma Import (C, Wnoutrefresh, "wnoutrefresh");
1137    begin
1138       if Wnoutrefresh (Win) = Curses_Err then
1139          raise Curses_Exception;
1140       end if;
1141    end Refresh_Without_Update;
1142
1143    procedure Redraw (Win : in Window := Standard_Window)
1144    is
1145       function Redrawwin (Win : Window) return C_Int;
1146       pragma Import (C, Redrawwin, "redrawwin");
1147    begin
1148       if Redrawwin (Win) = Curses_Err then
1149          raise Curses_Exception;
1150       end if;
1151    end Redraw;
1152
1153    procedure Redraw
1154      (Win        : in Window := Standard_Window;
1155       Begin_Line : in Line_Position;
1156       Line_Count : in Positive)
1157    is
1158       function Wredrawln (Win : Window; First : C_Int; Cnt : C_Int)
1159                           return C_Int;
1160       pragma Import (C, Wredrawln, "wredrawln");
1161    begin
1162       if Wredrawln (Win,
1163                     C_Int (Begin_Line),
1164                     C_Int (Line_Count)) = Curses_Err then
1165          raise Curses_Exception;
1166       end if;
1167    end Redraw;
1168
1169 ------------------------------------------------------------------------------
1170    procedure Erase (Win : in Window := Standard_Window)
1171    is
1172       function Werase (W : Window) return C_Int;
1173       pragma Import (C, Werase, "werase");
1174    begin
1175       if Werase (Win) = Curses_Err then
1176          raise Curses_Exception;
1177       end if;
1178    end Erase;
1179
1180    procedure Clear (Win : in Window := Standard_Window)
1181    is
1182       function Wclear (W : Window) return C_Int;
1183       pragma Import (C, Wclear, "wclear");
1184    begin
1185       if Wclear (Win) = Curses_Err then
1186          raise Curses_Exception;
1187       end if;
1188    end Clear;
1189
1190    procedure Clear_To_End_Of_Screen (Win : in Window := Standard_Window)
1191    is
1192       function Wclearbot (W : Window) return C_Int;
1193       pragma Import (C, Wclearbot, "wclrtobot");
1194    begin
1195       if Wclearbot (Win) = Curses_Err then
1196          raise Curses_Exception;
1197       end if;
1198    end Clear_To_End_Of_Screen;
1199
1200    procedure Clear_To_End_Of_Line (Win : in Window := Standard_Window)
1201    is
1202       function Wcleareol (W : Window) return C_Int;
1203       pragma Import (C, Wcleareol, "wclrtoeol");
1204    begin
1205       if Wcleareol (Win) = Curses_Err then
1206          raise Curses_Exception;
1207       end if;
1208    end Clear_To_End_Of_Line;
1209 ------------------------------------------------------------------------------
1210    procedure Set_Background
1211      (Win : in Window := Standard_Window;
1212       Ch  : in Attributed_Character)
1213    is
1214       procedure WBackground (W : in Window; Ch : in C_Chtype);
1215       pragma Import (C, WBackground, "wbkgdset");
1216    begin
1217       WBackground (Win, AttrChar_To_Chtype (Ch));
1218    end Set_Background;
1219
1220    procedure Change_Background
1221      (Win : in Window := Standard_Window;
1222       Ch  : in Attributed_Character)
1223    is
1224       function WChangeBkgd (W : Window; Ch : C_Chtype) return C_Int;
1225       pragma Import (C, WChangeBkgd, "wbkgd");
1226    begin
1227       if WChangeBkgd (Win, AttrChar_To_Chtype (Ch)) = Curses_Err then
1228          raise Curses_Exception;
1229       end if;
1230    end Change_Background;
1231
1232    function Get_Background (Win : Window := Standard_Window)
1233      return Attributed_Character
1234    is
1235       function Wgetbkgd (Win : Window) return C_Chtype;
1236       pragma Import (C, Wgetbkgd, "getbkgd");
1237    begin
1238       return Chtype_To_AttrChar (Wgetbkgd (Win));
1239    end Get_Background;
1240 ------------------------------------------------------------------------------
1241    procedure Change_Lines_Status (Win   : in Window := Standard_Window;
1242                                   Start : in Line_Position;
1243                                   Count : in Positive;
1244                                   State : in Boolean)
1245    is
1246       function Wtouchln (Win : Window;
1247                          Sta : C_Int;
1248                          Cnt : C_Int;
1249                          Chg : C_Int) return C_Int;
1250       pragma Import (C, Wtouchln, "wtouchln");
1251    begin
1252       if Wtouchln (Win, C_Int (Start), C_Int (Count),
1253                    C_Int (Boolean'Pos (State))) = Curses_Err then
1254          raise Curses_Exception;
1255       end if;
1256    end Change_Lines_Status;
1257
1258    procedure Touch (Win : in Window := Standard_Window)
1259    is
1260       Y : Line_Position;
1261       X : Column_Position;
1262    begin
1263       Get_Size (Win, Y, X);
1264       Change_Lines_Status (Win, 0, Positive (Y), True);
1265    end Touch;
1266
1267    procedure Untouch (Win : in Window := Standard_Window)
1268    is
1269       Y : Line_Position;
1270       X : Column_Position;
1271    begin
1272       Get_Size (Win, Y, X);
1273       Change_Lines_Status (Win, 0, Positive (Y), False);
1274    end Untouch;
1275
1276    procedure Touch (Win   : in Window := Standard_Window;
1277                     Start : in Line_Position;
1278                     Count : in Positive)
1279    is
1280    begin
1281       Change_Lines_Status (Win, Start, Count, True);
1282    end Touch;
1283
1284    function Is_Touched
1285      (Win  : Window := Standard_Window;
1286       Line : Line_Position) return Boolean
1287    is
1288       function WLineTouched (W : Window; L : C_Int) return Curses_Bool;
1289       pragma Import (C, WLineTouched, "is_linetouched");
1290    begin
1291       if WLineTouched (Win, C_Int (Line)) = Curses_Bool_False then
1292          return False;
1293       else
1294          return True;
1295       end if;
1296    end Is_Touched;
1297
1298    function Is_Touched
1299      (Win : Window := Standard_Window) return Boolean
1300    is
1301       function WWinTouched (W : Window) return Curses_Bool;
1302       pragma Import (C, WWinTouched, "is_wintouched");
1303    begin
1304       if WWinTouched (Win) = Curses_Bool_False then
1305          return False;
1306       else
1307          return True;
1308       end if;
1309    end Is_Touched;
1310 ------------------------------------------------------------------------------
1311    procedure Copy
1312      (Source_Window            : in Window;
1313       Destination_Window       : in Window;
1314       Source_Top_Row           : in Line_Position;
1315       Source_Left_Column       : in Column_Position;
1316       Destination_Top_Row      : in Line_Position;
1317       Destination_Left_Column  : in Column_Position;
1318       Destination_Bottom_Row   : in Line_Position;
1319       Destination_Right_Column : in Column_Position;
1320       Non_Destructive_Mode     : in Boolean := True)
1321    is
1322       function Copywin (Src : Window;
1323                         Dst : Window;
1324                         Str : C_Int;
1325                         Slc : C_Int;
1326                         Dtr : C_Int;
1327                         Dlc : C_Int;
1328                         Dbr : C_Int;
1329                         Drc : C_Int;
1330                         Ndm : C_Int) return C_Int;
1331       pragma Import (C, Copywin, "copywin");
1332    begin
1333       if Copywin (Source_Window,
1334                   Destination_Window,
1335                   C_Int (Source_Top_Row),
1336                   C_Int (Source_Left_Column),
1337                   C_Int (Destination_Top_Row),
1338                   C_Int (Destination_Left_Column),
1339                   C_Int (Destination_Bottom_Row),
1340                   C_Int (Destination_Right_Column),
1341                   Boolean'Pos (Non_Destructive_Mode)
1342                 ) = Curses_Err then
1343          raise Curses_Exception;
1344       end if;
1345    end Copy;
1346
1347    procedure Overwrite
1348      (Source_Window      : in Window;
1349       Destination_Window : in Window)
1350    is
1351       function Overwrite (Src : Window; Dst : Window) return C_Int;
1352       pragma Import (C, Overwrite, "overwrite");
1353    begin
1354       if Overwrite (Source_Window, Destination_Window) = Curses_Err then
1355          raise Curses_Exception;
1356       end if;
1357    end Overwrite;
1358
1359    procedure Overlay
1360      (Source_Window      : in Window;
1361       Destination_Window : in Window)
1362    is
1363       function Overlay (Src : Window; Dst : Window) return C_Int;
1364       pragma Import (C, Overlay, "overlay");
1365    begin
1366       if Overlay (Source_Window, Destination_Window) = Curses_Err then
1367          raise Curses_Exception;
1368       end if;
1369    end Overlay;
1370
1371 ------------------------------------------------------------------------------
1372    procedure Insert_Delete_Lines
1373      (Win   : in Window := Standard_Window;
1374       Lines : in Integer       := 1) -- default is to insert one line above
1375    is
1376       function Winsdelln (W : Window; N : C_Int) return C_Int;
1377       pragma Import (C, Winsdelln, "winsdelln");
1378    begin
1379       if Winsdelln (Win, C_Int (Lines)) = Curses_Err then
1380          raise Curses_Exception;
1381       end if;
1382    end Insert_Delete_Lines;
1383
1384    procedure Delete_Line (Win : in Window := Standard_Window)
1385    is
1386    begin
1387       Insert_Delete_Lines (Win, -1);
1388    end Delete_Line;
1389
1390    procedure Insert_Line (Win : in Window := Standard_Window)
1391    is
1392    begin
1393       Insert_Delete_Lines (Win, 1);
1394    end Insert_Line;
1395 ------------------------------------------------------------------------------
1396
1397
1398    procedure Get_Size
1399      (Win               : in Window := Standard_Window;
1400       Number_Of_Lines   : out Line_Count;
1401       Number_Of_Columns : out Column_Count)
1402    is
1403       --  Please note: in ncurses they are one off.
1404       --  This might be different in other implementations of curses
1405       Y : constant C_Int := C_Int (W_Get_Short (Win, Offset_maxy))
1406                           + C_Int (Offset_XY);
1407       X : constant C_Int := C_Int (W_Get_Short (Win, Offset_maxx))
1408                           + C_Int (Offset_XY);
1409    begin
1410       Number_Of_Lines   := Line_Count (Y);
1411       Number_Of_Columns := Column_Count (X);
1412    end Get_Size;
1413
1414    procedure Get_Window_Position
1415      (Win             : in Window := Standard_Window;
1416       Top_Left_Line   : out Line_Position;
1417       Top_Left_Column : out Column_Position)
1418    is
1419       Y : constant C_Short := W_Get_Short (Win, Offset_begy);
1420       X : constant C_Short := W_Get_Short (Win, Offset_begx);
1421    begin
1422       Top_Left_Line   := Line_Position (Y);
1423       Top_Left_Column := Column_Position (X);
1424    end Get_Window_Position;
1425
1426    procedure Get_Cursor_Position
1427      (Win    : in  Window := Standard_Window;
1428       Line   : out Line_Position;
1429       Column : out Column_Position)
1430    is
1431       Y : constant C_Short := W_Get_Short (Win, Offset_cury);
1432       X : constant C_Short := W_Get_Short (Win, Offset_curx);
1433    begin
1434       Line   := Line_Position (Y);
1435       Column := Column_Position (X);
1436    end Get_Cursor_Position;
1437
1438    procedure Get_Origin_Relative_To_Parent
1439      (Win                : in  Window;
1440       Top_Left_Line      : out Line_Position;
1441       Top_Left_Column    : out Column_Position;
1442       Is_Not_A_Subwindow : out Boolean)
1443    is
1444       Y : constant C_Int := W_Get_Int (Win, Offset_pary);
1445       X : constant C_Int := W_Get_Int (Win, Offset_parx);
1446    begin
1447       if Y = -1 then
1448          Top_Left_Line   := Line_Position'Last;
1449          Top_Left_Column := Column_Position'Last;
1450          Is_Not_A_Subwindow := True;
1451       else
1452          Top_Left_Line   := Line_Position (Y);
1453          Top_Left_Column := Column_Position (X);
1454          Is_Not_A_Subwindow := False;
1455       end if;
1456    end Get_Origin_Relative_To_Parent;
1457 ------------------------------------------------------------------------------
1458    function New_Pad (Lines   : Line_Count;
1459                      Columns : Column_Count) return Window
1460    is
1461       function Newpad (Lines : C_Int; Columns : C_Int) return Window;
1462       pragma Import (C, Newpad, "newpad");
1463
1464       W : Window;
1465    begin
1466       W := Newpad (C_Int (Lines), C_Int (Columns));
1467       if W = Null_Window then
1468          raise Curses_Exception;
1469       end if;
1470       return W;
1471    end New_Pad;
1472
1473    function Sub_Pad
1474      (Pad                   : Window;
1475       Number_Of_Lines       : Line_Count;
1476       Number_Of_Columns     : Column_Count;
1477       First_Line_Position   : Line_Position;
1478       First_Column_Position : Column_Position) return Window
1479    is
1480       function Subpad
1481         (Pad                   : Window;
1482          Number_Of_Lines       : C_Int;
1483          Number_Of_Columns     : C_Int;
1484          First_Line_Position   : C_Int;
1485          First_Column_Position : C_Int) return Window;
1486       pragma Import (C, Subpad, "subpad");
1487
1488       W : Window;
1489    begin
1490       W := Subpad (Pad,
1491                    C_Int (Number_Of_Lines),
1492                    C_Int (Number_Of_Columns),
1493                    C_Int (First_Line_Position),
1494                    C_Int (First_Column_Position));
1495       if W = Null_Window then
1496          raise Curses_Exception;
1497       end if;
1498       return W;
1499    end Sub_Pad;
1500
1501    procedure Refresh
1502      (Pad                      : in Window;
1503       Source_Top_Row           : in Line_Position;
1504       Source_Left_Column       : in Column_Position;
1505       Destination_Top_Row      : in Line_Position;
1506       Destination_Left_Column  : in Column_Position;
1507       Destination_Bottom_Row   : in Line_Position;
1508       Destination_Right_Column : in Column_Position)
1509    is
1510       function Prefresh
1511         (Pad                      : Window;
1512          Source_Top_Row           : C_Int;
1513          Source_Left_Column       : C_Int;
1514          Destination_Top_Row      : C_Int;
1515          Destination_Left_Column  : C_Int;
1516          Destination_Bottom_Row   : C_Int;
1517          Destination_Right_Column : C_Int) return C_Int;
1518       pragma Import (C, Prefresh, "prefresh");
1519    begin
1520       if Prefresh (Pad,
1521                    C_Int (Source_Top_Row),
1522                    C_Int (Source_Left_Column),
1523                    C_Int (Destination_Top_Row),
1524                    C_Int (Destination_Left_Column),
1525                    C_Int (Destination_Bottom_Row),
1526                    C_Int (Destination_Right_Column)) = Curses_Err then
1527          raise Curses_Exception;
1528       end if;
1529    end Refresh;
1530
1531    procedure Refresh_Without_Update
1532      (Pad                      : in Window;
1533       Source_Top_Row           : in Line_Position;
1534       Source_Left_Column       : in Column_Position;
1535       Destination_Top_Row      : in Line_Position;
1536       Destination_Left_Column  : in Column_Position;
1537       Destination_Bottom_Row   : in Line_Position;
1538       Destination_Right_Column : in Column_Position)
1539    is
1540       function Pnoutrefresh
1541         (Pad                      : Window;
1542          Source_Top_Row           : C_Int;
1543          Source_Left_Column       : C_Int;
1544          Destination_Top_Row      : C_Int;
1545          Destination_Left_Column  : C_Int;
1546          Destination_Bottom_Row   : C_Int;
1547          Destination_Right_Column : C_Int) return C_Int;
1548       pragma Import (C, Pnoutrefresh, "pnoutrefresh");
1549    begin
1550       if Pnoutrefresh (Pad,
1551                        C_Int (Source_Top_Row),
1552                        C_Int (Source_Left_Column),
1553                        C_Int (Destination_Top_Row),
1554                        C_Int (Destination_Left_Column),
1555                        C_Int (Destination_Bottom_Row),
1556                        C_Int (Destination_Right_Column)) = Curses_Err then
1557          raise Curses_Exception;
1558       end if;
1559    end Refresh_Without_Update;
1560
1561    procedure Add_Character_To_Pad_And_Echo_It
1562      (Pad : in Window;
1563       Ch  : in Attributed_Character)
1564    is
1565       function Pechochar (Pad : Window; Ch : C_Chtype)
1566                           return C_Int;
1567       pragma Import (C, Pechochar, "pechochar");
1568    begin
1569       if Pechochar (Pad, AttrChar_To_Chtype (Ch)) = Curses_Err then
1570          raise Curses_Exception;
1571       end if;
1572    end Add_Character_To_Pad_And_Echo_It;
1573
1574    procedure Add_Character_To_Pad_And_Echo_It
1575      (Pad : in Window;
1576       Ch  : in Character)
1577    is
1578    begin
1579       Add_Character_To_Pad_And_Echo_It
1580         (Pad,
1581          Attributed_Character'(Ch    => Ch,
1582                                Color => Color_Pair'First,
1583                                Attr  => Normal_Video));
1584    end Add_Character_To_Pad_And_Echo_It;
1585 ------------------------------------------------------------------------------
1586    procedure Scroll (Win    : in Window := Standard_Window;
1587                      Amount : in Integer := 1)
1588    is
1589       function Wscrl (Win : Window; N : C_Int) return C_Int;
1590       pragma Import (C, Wscrl, "wscrl");
1591
1592    begin
1593       if Wscrl (Win, C_Int (Amount)) = Curses_Err then
1594          raise Curses_Exception;
1595       end if;
1596    end Scroll;
1597
1598 ------------------------------------------------------------------------------
1599    procedure Delete_Character (Win : in Window := Standard_Window)
1600    is
1601       function Wdelch (Win : Window) return C_Int;
1602       pragma Import (C, Wdelch, "wdelch");
1603    begin
1604       if Wdelch (Win) = Curses_Err then
1605          raise Curses_Exception;
1606       end if;
1607    end Delete_Character;
1608
1609    procedure Delete_Character
1610      (Win    : in Window := Standard_Window;
1611       Line   : in Line_Position;
1612       Column : in Column_Position)
1613    is
1614       function Mvwdelch (Win : Window;
1615                          Lin : C_Int;
1616                          Col : C_Int) return C_Int;
1617       pragma Import (C, Mvwdelch, "mvwdelch");
1618    begin
1619       if Mvwdelch (Win, C_Int (Line), C_Int (Column)) = Curses_Err then
1620          raise Curses_Exception;
1621       end if;
1622    end Delete_Character;
1623 ------------------------------------------------------------------------------
1624    function Peek (Win : Window := Standard_Window)
1625      return Attributed_Character
1626    is
1627       function Winch (Win : Window) return C_Chtype;
1628       pragma Import (C, Winch, "winch");
1629    begin
1630       return Chtype_To_AttrChar (Winch (Win));
1631    end Peek;
1632
1633    function Peek
1634      (Win    : Window := Standard_Window;
1635       Line   : Line_Position;
1636       Column : Column_Position) return Attributed_Character
1637    is
1638       function Mvwinch (Win : Window;
1639                         Lin : C_Int;
1640                         Col : C_Int) return C_Chtype;
1641       pragma Import (C, Mvwinch, "mvwinch");
1642    begin
1643       return Chtype_To_AttrChar (Mvwinch (Win, C_Int (Line), C_Int (Column)));
1644    end Peek;
1645 ------------------------------------------------------------------------------
1646    procedure Insert (Win : in Window := Standard_Window;
1647                      Ch  : in Attributed_Character)
1648    is
1649       function Winsch (Win : Window; Ch : C_Chtype) return C_Int;
1650       pragma Import (C, Winsch, "winsch");
1651    begin
1652       if Winsch (Win, AttrChar_To_Chtype (Ch)) = Curses_Err then
1653          raise Curses_Exception;
1654       end if;
1655    end Insert;
1656
1657    procedure Insert
1658      (Win    : in Window := Standard_Window;
1659       Line   : in Line_Position;
1660       Column : in Column_Position;
1661       Ch     : in Attributed_Character)
1662    is
1663       function Mvwinsch (Win : Window;
1664                          Lin : C_Int;
1665                          Col : C_Int;
1666                          Ch  : C_Chtype) return C_Int;
1667       pragma Import (C, Mvwinsch, "mvwinsch");
1668    begin
1669       if Mvwinsch (Win,
1670                    C_Int (Line),
1671                    C_Int (Column),
1672                    AttrChar_To_Chtype (Ch)) = Curses_Err then
1673          raise Curses_Exception;
1674       end if;
1675    end Insert;
1676 ------------------------------------------------------------------------------
1677    procedure Insert (Win : in Window := Standard_Window;
1678                      Str : in String;
1679                      Len : in Integer := -1)
1680    is
1681       function Winsnstr (Win : Window;
1682                          Str : char_array;
1683                          Len : Integer := -1) return C_Int;
1684       pragma Import (C, Winsnstr, "winsnstr");
1685
1686       Txt    : char_array (0 .. Str'Length);
1687       Length : size_t;
1688    begin
1689       To_C (Str, Txt, Length);
1690       if Winsnstr (Win, Txt, Len) = Curses_Err then
1691          raise Curses_Exception;
1692       end if;
1693    end Insert;
1694
1695    procedure Insert
1696      (Win    : in Window := Standard_Window;
1697       Line   : in Line_Position;
1698       Column : in Column_Position;
1699       Str    : in String;
1700       Len    : in Integer := -1)
1701    is
1702       function Mvwinsnstr (Win    : Window;
1703                            Line   : C_Int;
1704                            Column : C_Int;
1705                            Str    : char_array;
1706                            Len    : C_Int) return C_Int;
1707       pragma Import (C, Mvwinsnstr, "mvwinsnstr");
1708
1709       Txt    : char_array (0 .. Str'Length);
1710       Length : size_t;
1711    begin
1712       To_C (Str, Txt, Length);
1713       if Mvwinsnstr (Win, C_Int (Line), C_Int (Column), Txt, C_Int (Len))
1714         = Curses_Err then
1715          raise Curses_Exception;
1716       end if;
1717    end Insert;
1718 ------------------------------------------------------------------------------
1719    procedure Peek (Win : in  Window := Standard_Window;
1720                    Str : out String;
1721                    Len : in  Integer := -1)
1722    is
1723       function Winnstr (Win : Window;
1724                         Str : char_array;
1725                         Len : C_Int) return C_Int;
1726       pragma Import (C, Winnstr, "winnstr");
1727
1728       N   : Integer := Len;
1729       Txt : char_array (0 .. Str'Length);
1730       Cnt : Natural;
1731    begin
1732       if N < 0 then
1733          N := Str'Length;
1734       end if;
1735       if N > Str'Length then
1736          raise Constraint_Error;
1737       end if;
1738       Txt (0) := Interfaces.C.char'First;
1739       if Winnstr (Win, Txt, C_Int (N)) = Curses_Err then
1740          raise Curses_Exception;
1741       end if;
1742       To_Ada (Txt, Str, Cnt, True);
1743       if Cnt < Str'Length then
1744          Str ((Str'First + Cnt) .. Str'Last) := (others => ' ');
1745       end if;
1746    end Peek;
1747
1748    procedure Peek
1749      (Win    : in  Window := Standard_Window;
1750       Line   : in  Line_Position;
1751       Column : in  Column_Position;
1752       Str    : out String;
1753       Len    : in  Integer := -1)
1754    is
1755    begin
1756       Move_Cursor (Win, Line, Column);
1757       Peek (Win, Str, Len);
1758    end Peek;
1759 ------------------------------------------------------------------------------
1760    procedure Peek
1761      (Win : in  Window := Standard_Window;
1762       Str : out Attributed_String;
1763       Len : in  Integer := -1)
1764    is
1765       function Winchnstr (Win : Window;
1766                           Str : chtype_array;             -- out
1767                           Len : C_Int) return C_Int;
1768       pragma Import (C, Winchnstr, "winchnstr");
1769
1770       N   : Integer := Len;
1771       Txt : constant chtype_array (0 .. Str'Length)
1772           := (0 => Default_Character);
1773       Cnt : Natural := 0;
1774    begin
1775       if N < 0 then
1776          N := Str'Length;
1777       end if;
1778       if N > Str'Length then
1779          raise Constraint_Error;
1780       end if;
1781       if Winchnstr (Win, Txt, C_Int (N)) = Curses_Err then
1782          raise Curses_Exception;
1783       end if;
1784       for To in Str'Range loop
1785          exit when Txt (size_t (Cnt)) = Default_Character;
1786          Str (To) := Txt (size_t (Cnt));
1787          Cnt := Cnt + 1;
1788       end loop;
1789       if Cnt < Str'Length then
1790          Str ((Str'First + Cnt) .. Str'Last) :=
1791            (others => (Ch => ' ',
1792                        Color => Color_Pair'First,
1793                        Attr => Normal_Video));
1794       end if;
1795    end Peek;
1796
1797    procedure Peek
1798      (Win    : in  Window := Standard_Window;
1799       Line   : in  Line_Position;
1800       Column : in  Column_Position;
1801       Str    : out Attributed_String;
1802       Len    : in Integer := -1)
1803    is
1804    begin
1805       Move_Cursor (Win, Line, Column);
1806       Peek (Win, Str, Len);
1807    end Peek;
1808 ------------------------------------------------------------------------------
1809    procedure Get (Win : in  Window := Standard_Window;
1810                   Str : out String;
1811                   Len : in  Integer := -1)
1812    is
1813       function Wgetnstr (Win : Window;
1814                          Str : char_array;
1815                          Len : C_Int) return C_Int;
1816       pragma Import (C, Wgetnstr, "wgetnstr");
1817
1818       N   : Integer := Len;
1819       Txt : char_array (0 .. Str'Length);
1820       Cnt : Natural;
1821    begin
1822       if N < 0 then
1823          N := Str'Length;
1824       end if;
1825       if N > Str'Length then
1826          raise Constraint_Error;
1827       end if;
1828       Txt (0) := Interfaces.C.char'First;
1829       if Wgetnstr (Win, Txt, C_Int (N)) = Curses_Err then
1830          raise Curses_Exception;
1831       end if;
1832       To_Ada (Txt, Str, Cnt, True);
1833       if Cnt < Str'Length then
1834          Str ((Str'First + Cnt) .. Str'Last) := (others => ' ');
1835       end if;
1836    end Get;
1837
1838    procedure Get
1839      (Win    : in  Window := Standard_Window;
1840       Line   : in  Line_Position;
1841       Column : in  Column_Position;
1842       Str    : out String;
1843       Len    : in  Integer := -1)
1844    is
1845    begin
1846       Move_Cursor (Win, Line, Column);
1847       Get (Win, Str, Len);
1848    end Get;
1849 ------------------------------------------------------------------------------
1850    procedure Init_Soft_Label_Keys
1851      (Format : in Soft_Label_Key_Format := Three_Two_Three)
1852    is
1853       function Slk_Init (Fmt : C_Int) return C_Int;
1854       pragma Import (C, Slk_Init, "slk_init");
1855    begin
1856       if Slk_Init (Soft_Label_Key_Format'Pos (Format)) = Curses_Err then
1857          raise Curses_Exception;
1858       end if;
1859    end Init_Soft_Label_Keys;
1860
1861    procedure Set_Soft_Label_Key (Label : in Label_Number;
1862                                  Text  : in String;
1863                                  Fmt   : in Label_Justification := Left)
1864    is
1865       function Slk_Set (Label : C_Int;
1866                         Txt   : char_array;
1867                         Fmt   : C_Int) return C_Int;
1868       pragma Import (C, Slk_Set, "slk_set");
1869
1870       Txt : char_array (0 .. Text'Length);
1871       Len : size_t;
1872    begin
1873       To_C (Text, Txt, Len);
1874       if Slk_Set (C_Int (Label), Txt,
1875                   C_Int (Label_Justification'Pos (Fmt))) = Curses_Err then
1876          raise Curses_Exception;
1877       end if;
1878    end Set_Soft_Label_Key;
1879
1880    procedure Refresh_Soft_Label_Keys
1881    is
1882       function Slk_Refresh return C_Int;
1883       pragma Import (C, Slk_Refresh, "slk_refresh");
1884    begin
1885       if Slk_Refresh = Curses_Err then
1886          raise Curses_Exception;
1887       end if;
1888    end Refresh_Soft_Label_Keys;
1889
1890    procedure Refresh_Soft_Label_Keys_Without_Update
1891    is
1892       function Slk_Noutrefresh return C_Int;
1893       pragma Import (C, Slk_Noutrefresh, "slk_noutrefresh");
1894    begin
1895       if Slk_Noutrefresh = Curses_Err then
1896          raise Curses_Exception;
1897       end if;
1898    end Refresh_Soft_Label_Keys_Without_Update;
1899
1900    procedure Get_Soft_Label_Key (Label : in Label_Number;
1901                                  Text  : out String)
1902    is
1903       function Slk_Label (Label : C_Int) return chars_ptr;
1904       pragma Import (C, Slk_Label, "slk_label");
1905    begin
1906       Fill_String (Slk_Label (C_Int (Label)), Text);
1907    end Get_Soft_Label_Key;
1908
1909    function Get_Soft_Label_Key (Label : in Label_Number) return String
1910    is
1911       function Slk_Label (Label : C_Int) return chars_ptr;
1912       pragma Import (C, Slk_Label, "slk_label");
1913    begin
1914       return Fill_String (Slk_Label (C_Int (Label)));
1915    end Get_Soft_Label_Key;
1916
1917    procedure Clear_Soft_Label_Keys
1918    is
1919       function Slk_Clear return C_Int;
1920       pragma Import (C, Slk_Clear, "slk_clear");
1921    begin
1922       if Slk_Clear = Curses_Err then
1923          raise Curses_Exception;
1924       end if;
1925    end Clear_Soft_Label_Keys;
1926
1927    procedure Restore_Soft_Label_Keys
1928    is
1929       function Slk_Restore return C_Int;
1930       pragma Import (C, Slk_Restore, "slk_restore");
1931    begin
1932       if Slk_Restore = Curses_Err then
1933          raise Curses_Exception;
1934       end if;
1935    end Restore_Soft_Label_Keys;
1936
1937    procedure Touch_Soft_Label_Keys
1938    is
1939       function Slk_Touch return C_Int;
1940       pragma Import (C, Slk_Touch, "slk_touch");
1941    begin
1942       if Slk_Touch = Curses_Err then
1943          raise Curses_Exception;
1944       end if;
1945    end Touch_Soft_Label_Keys;
1946
1947    procedure Switch_Soft_Label_Key_Attributes
1948      (Attr : in Character_Attribute_Set;
1949       On   : in Boolean := True)
1950    is
1951       function Slk_Attron (Ch : C_Chtype) return C_Int;
1952       pragma Import (C, Slk_Attron, "slk_attron");
1953       function Slk_Attroff (Ch : C_Chtype) return C_Int;
1954       pragma Import (C, Slk_Attroff, "slk_attroff");
1955
1956       Err : C_Int;
1957       Ch  : constant Attributed_Character := (Ch    => Character'First,
1958                                               Attr  => Attr,
1959                                               Color => Color_Pair'First);
1960    begin
1961       if On then
1962          Err := Slk_Attron  (AttrChar_To_Chtype (Ch));
1963       else
1964          Err := Slk_Attroff (AttrChar_To_Chtype (Ch));
1965       end if;
1966       if Err = Curses_Err then
1967          raise Curses_Exception;
1968       end if;
1969    end Switch_Soft_Label_Key_Attributes;
1970
1971    procedure Set_Soft_Label_Key_Attributes
1972      (Attr  : in Character_Attribute_Set := Normal_Video;
1973       Color : in Color_Pair := Color_Pair'First)
1974    is
1975       function Slk_Attrset (Ch : C_Chtype) return C_Int;
1976       pragma Import (C, Slk_Attrset, "slk_attrset");
1977
1978       Ch : constant Attributed_Character := (Ch    => Character'First,
1979                                              Attr  => Attr,
1980                                              Color => Color);
1981    begin
1982       if Slk_Attrset (AttrChar_To_Chtype (Ch)) = Curses_Err then
1983          raise Curses_Exception;
1984       end if;
1985    end Set_Soft_Label_Key_Attributes;
1986
1987    function Get_Soft_Label_Key_Attributes return Character_Attribute_Set
1988    is
1989       function Slk_Attr return C_Chtype;
1990       pragma Import (C, Slk_Attr, "slk_attr");
1991
1992       Attr : constant C_Chtype := Slk_Attr;
1993    begin
1994       return Chtype_To_AttrChar (Attr).Attr;
1995    end Get_Soft_Label_Key_Attributes;
1996
1997    function Get_Soft_Label_Key_Attributes return Color_Pair
1998    is
1999       function Slk_Attr return C_Chtype;
2000       pragma Import (C, Slk_Attr, "slk_attr");
2001
2002       Attr : constant C_Chtype := Slk_Attr;
2003    begin
2004       return Chtype_To_AttrChar (Attr).Color;
2005    end Get_Soft_Label_Key_Attributes;
2006
2007    procedure Set_Soft_Label_Key_Color (Pair : in Color_Pair)
2008    is
2009       function Slk_Color (Color : in C_Short) return C_Int;
2010       pragma Import (C, Slk_Color, "slk_color");
2011    begin
2012       if Slk_Color (C_Short (Pair)) = Curses_Err then
2013          raise Curses_Exception;
2014       end if;
2015    end Set_Soft_Label_Key_Color;
2016
2017 ------------------------------------------------------------------------------
2018    procedure Enable_Key (Key    : in Special_Key_Code;
2019                          Enable : in Boolean := True)
2020    is
2021       function Keyok (Keycode : C_Int;
2022                       On_Off  : Curses_Bool) return C_Int;
2023       pragma Import (C, Keyok, "keyok");
2024    begin
2025       if Keyok (C_Int (Key), Curses_Bool (Boolean'Pos (Enable)))
2026         = Curses_Err then
2027          raise Curses_Exception;
2028       end if;
2029    end Enable_Key;
2030 ------------------------------------------------------------------------------
2031    procedure Define_Key (Definition : in String;
2032                          Key        : in Special_Key_Code)
2033    is
2034       function Defkey (Def : char_array;
2035                        Key : C_Int) return C_Int;
2036       pragma Import (C, Defkey, "define_key");
2037
2038       Txt    : char_array (0 .. Definition'Length);
2039       Length : size_t;
2040    begin
2041       To_C (Definition, Txt, Length);
2042       if Defkey (Txt, C_Int (Key)) = Curses_Err then
2043          raise Curses_Exception;
2044       end if;
2045    end Define_Key;
2046 ------------------------------------------------------------------------------
2047    procedure Un_Control (Ch  : in Attributed_Character;
2048                          Str : out String)
2049    is
2050       function Unctrl (Ch : C_Chtype) return chars_ptr;
2051       pragma Import (C, Unctrl, "unctrl");
2052    begin
2053       Fill_String (Unctrl (AttrChar_To_Chtype (Ch)), Str);
2054    end Un_Control;
2055
2056    function Un_Control (Ch : in Attributed_Character) return String
2057    is
2058       function Unctrl (Ch : C_Chtype) return chars_ptr;
2059       pragma Import (C, Unctrl, "unctrl");
2060    begin
2061       return Fill_String (Unctrl (AttrChar_To_Chtype (Ch)));
2062    end Un_Control;
2063
2064    procedure Delay_Output (Msecs : in Natural)
2065    is
2066       function Delayoutput (Msecs : C_Int) return C_Int;
2067       pragma Import (C, Delayoutput, "delay_output");
2068    begin
2069       if Delayoutput (C_Int (Msecs)) = Curses_Err then
2070          raise Curses_Exception;
2071       end if;
2072    end Delay_Output;
2073
2074    procedure Flush_Input
2075    is
2076       function Flushinp return C_Int;
2077       pragma Import (C, Flushinp, "flushinp");
2078    begin
2079       if Flushinp = Curses_Err then  -- docu says that never happens, but...
2080          raise Curses_Exception;
2081       end if;
2082    end Flush_Input;
2083 ------------------------------------------------------------------------------
2084    function Baudrate return Natural
2085    is
2086       function Baud return C_Int;
2087       pragma Import (C, Baud, "baudrate");
2088    begin
2089       return Natural (Baud);
2090    end Baudrate;
2091
2092    function Erase_Character return Character
2093    is
2094       function Erasechar return C_Int;
2095       pragma Import (C, Erasechar, "erasechar");
2096    begin
2097       return Character'Val (Erasechar);
2098    end Erase_Character;
2099
2100    function Kill_Character return Character
2101    is
2102       function Killchar return C_Int;
2103       pragma Import (C, Killchar, "killchar");
2104    begin
2105       return Character'Val (Killchar);
2106    end Kill_Character;
2107
2108    function Has_Insert_Character return Boolean
2109    is
2110       function Has_Ic return Curses_Bool;
2111       pragma Import (C, Has_Ic, "has_ic");
2112    begin
2113       if Has_Ic = Curses_Bool_False then
2114          return False;
2115       else
2116          return True;
2117       end if;
2118    end Has_Insert_Character;
2119
2120    function Has_Insert_Line return Boolean
2121    is
2122       function Has_Il return Curses_Bool;
2123       pragma Import (C, Has_Il, "has_il");
2124    begin
2125       if Has_Il = Curses_Bool_False then
2126          return False;
2127       else
2128          return True;
2129       end if;
2130    end Has_Insert_Line;
2131
2132    function Supported_Attributes return Character_Attribute_Set
2133    is
2134       function Termattrs return C_Chtype;
2135       pragma Import (C, Termattrs, "termattrs");
2136
2137       Ch : constant Attributed_Character := Chtype_To_AttrChar (Termattrs);
2138    begin
2139       return Ch.Attr;
2140    end Supported_Attributes;
2141
2142    procedure Long_Name (Name : out String)
2143    is
2144       function Longname return chars_ptr;
2145       pragma Import (C, Longname, "longname");
2146    begin
2147       Fill_String (Longname, Name);
2148    end Long_Name;
2149
2150    function Long_Name return String
2151    is
2152       function Longname return chars_ptr;
2153       pragma Import (C, Longname, "longname");
2154    begin
2155       return Fill_String (Longname);
2156    end Long_Name;
2157
2158    procedure Terminal_Name (Name : out String)
2159    is
2160       function Termname return chars_ptr;
2161       pragma Import (C, Termname, "termname");
2162    begin
2163       Fill_String (Termname, Name);
2164    end Terminal_Name;
2165
2166    function Terminal_Name return String
2167    is
2168       function Termname return chars_ptr;
2169       pragma Import (C, Termname, "termname");
2170    begin
2171       return Fill_String (Termname);
2172    end Terminal_Name;
2173 ------------------------------------------------------------------------------
2174    procedure Init_Pair (Pair : in Redefinable_Color_Pair;
2175                         Fore : in Color_Number;
2176                         Back : in Color_Number)
2177    is
2178       function Initpair (Pair : C_Short;
2179                          Fore : C_Short;
2180                          Back : C_Short) return C_Int;
2181       pragma Import (C, Initpair, "init_pair");
2182    begin
2183       if Integer (Pair) >= Number_Of_Color_Pairs then
2184          raise Constraint_Error;
2185       end if;
2186       if Integer (Fore) >= Number_Of_Colors or else
2187         Integer (Back) >= Number_Of_Colors then raise Constraint_Error;
2188       end if;
2189       if Initpair (C_Short (Pair), C_Short (Fore), C_Short (Back))
2190         = Curses_Err then
2191          raise Curses_Exception;
2192       end if;
2193    end Init_Pair;
2194
2195    procedure Pair_Content (Pair : in Color_Pair;
2196                            Fore : out Color_Number;
2197                            Back : out Color_Number)
2198    is
2199       type C_Short_Access is access all C_Short;
2200       function Paircontent (Pair : C_Short;
2201                             Fp   : C_Short_Access;
2202                             Bp   : C_Short_Access) return C_Int;
2203       pragma Import (C, Paircontent, "pair_content");
2204
2205       F, B : aliased C_Short;
2206    begin
2207       if Paircontent (C_Short (Pair), F'Access, B'Access) = Curses_Err then
2208          raise Curses_Exception;
2209       else
2210          Fore := Color_Number (F);
2211          Back := Color_Number (B);
2212       end if;
2213    end Pair_Content;
2214
2215    function Has_Colors return Boolean
2216    is
2217       function Hascolors return Curses_Bool;
2218       pragma Import (C, Hascolors, "has_colors");
2219    begin
2220       if Hascolors = Curses_Bool_False then
2221          return False;
2222       else
2223          return True;
2224       end if;
2225    end Has_Colors;
2226
2227    procedure Init_Color (Color : in Color_Number;
2228                          Red   : in RGB_Value;
2229                          Green : in RGB_Value;
2230                          Blue  : in RGB_Value)
2231    is
2232       function Initcolor (Col   : C_Short;
2233                           Red   : C_Short;
2234                           Green : C_Short;
2235                           Blue  : C_Short) return C_Int;
2236       pragma Import (C, Initcolor, "init_color");
2237    begin
2238       if Initcolor (C_Short (Color), C_Short (Red), C_Short (Green),
2239                     C_Short (Blue)) = Curses_Err then
2240             raise Curses_Exception;
2241       end if;
2242    end Init_Color;
2243
2244    function Can_Change_Color return Boolean
2245    is
2246       function Canchangecolor return Curses_Bool;
2247       pragma Import (C, Canchangecolor, "can_change_color");
2248    begin
2249       if Canchangecolor = Curses_Bool_False then
2250          return False;
2251       else
2252          return True;
2253       end if;
2254    end Can_Change_Color;
2255
2256    procedure Color_Content (Color : in  Color_Number;
2257                             Red   : out RGB_Value;
2258                             Green : out RGB_Value;
2259                             Blue  : out RGB_Value)
2260    is
2261       type C_Short_Access is access all C_Short;
2262
2263       function Colorcontent (Color : C_Short; R, G, B : C_Short_Access)
2264                              return C_Int;
2265       pragma Import (C, Colorcontent, "color_content");
2266
2267       R, G, B : aliased C_Short;
2268    begin
2269       if Colorcontent (C_Short (Color), R'Access, G'Access, B'Access) =
2270         Curses_Err then
2271          raise Curses_Exception;
2272       else
2273          Red   := RGB_Value (R);
2274          Green := RGB_Value (G);
2275          Blue  := RGB_Value (B);
2276       end if;
2277    end Color_Content;
2278
2279 ------------------------------------------------------------------------------
2280    procedure Save_Curses_Mode (Mode : in Curses_Mode)
2281    is
2282       function Def_Prog_Mode return C_Int;
2283       pragma Import (C, Def_Prog_Mode, "def_prog_mode");
2284       function Def_Shell_Mode return C_Int;
2285       pragma Import (C, Def_Shell_Mode, "def_shell_mode");
2286
2287       Err : C_Int;
2288    begin
2289       case Mode is
2290          when Curses => Err := Def_Prog_Mode;
2291          when Shell  => Err := Def_Shell_Mode;
2292       end case;
2293       if Err = Curses_Err then
2294          raise Curses_Exception;
2295       end if;
2296    end Save_Curses_Mode;
2297
2298    procedure Reset_Curses_Mode (Mode : in Curses_Mode)
2299    is
2300       function Reset_Prog_Mode return C_Int;
2301       pragma Import (C, Reset_Prog_Mode, "reset_prog_mode");
2302       function Reset_Shell_Mode return C_Int;
2303       pragma Import (C, Reset_Shell_Mode, "reset_shell_mode");
2304
2305       Err : C_Int;
2306    begin
2307       case Mode is
2308          when Curses => Err := Reset_Prog_Mode;
2309          when Shell  => Err := Reset_Shell_Mode;
2310       end case;
2311       if Err = Curses_Err then
2312          raise Curses_Exception;
2313       end if;
2314    end Reset_Curses_Mode;
2315
2316    procedure Save_Terminal_State
2317    is
2318       function Savetty return C_Int;
2319       pragma Import (C, Savetty, "savetty");
2320    begin
2321       if Savetty = Curses_Err then
2322          raise Curses_Exception;
2323       end if;
2324    end Save_Terminal_State;
2325
2326    procedure Reset_Terminal_State
2327    is
2328       function Resetty return C_Int;
2329       pragma Import (C, Resetty, "resetty");
2330    begin
2331       if Resetty = Curses_Err then
2332          raise Curses_Exception;
2333       end if;
2334    end Reset_Terminal_State;
2335
2336    procedure Rip_Off_Lines (Lines : in Integer;
2337                             Proc  : in Stdscr_Init_Proc)
2338    is
2339       function Ripoffline (Lines : C_Int;
2340                            Proc  : Stdscr_Init_Proc) return C_Int;
2341       pragma Import (C, Ripoffline, "_nc_ripoffline");
2342    begin
2343       if Ripoffline (C_Int (Lines), Proc) = Curses_Err then
2344          raise Curses_Exception;
2345       end if;
2346    end Rip_Off_Lines;
2347
2348    procedure Set_Cursor_Visibility (Visibility : in out Cursor_Visibility)
2349    is
2350       function Curs_Set (Curs : C_Int) return C_Int;
2351       pragma Import (C, Curs_Set, "curs_set");
2352
2353       Res : C_Int;
2354    begin
2355       Res := Curs_Set (Cursor_Visibility'Pos (Visibility));
2356       if Res /= Curses_Err then
2357          Visibility := Cursor_Visibility'Val (Res);
2358       end if;
2359    end Set_Cursor_Visibility;
2360
2361    procedure Nap_Milli_Seconds (Ms : in Natural)
2362    is
2363       function Napms (Ms : C_Int) return C_Int;
2364       pragma Import (C, Napms, "napms");
2365    begin
2366       if Napms (C_Int (Ms)) = Curses_Err then
2367          raise Curses_Exception;
2368       end if;
2369    end Nap_Milli_Seconds;
2370 ------------------------------------------------------------------------------
2371
2372    function Standard_Window return Window
2373    is
2374       Stdscr : Window;
2375       pragma Import (C, Stdscr, "stdscr");
2376    begin
2377       return Stdscr;
2378    end Standard_Window;
2379
2380    function Lines return Line_Count
2381    is
2382       C_Lines : C_Int;
2383       pragma Import (C, C_Lines, "LINES");
2384    begin
2385       return Line_Count (C_Lines);
2386    end Lines;
2387
2388    function Columns return Column_Count
2389    is
2390       C_Columns : C_Int;
2391       pragma Import (C, C_Columns, "COLS");
2392    begin
2393       return Column_Count (C_Columns);
2394    end Columns;
2395
2396    function Tab_Size return Natural
2397    is
2398       C_Tab_Size : C_Int;
2399       pragma Import (C, C_Tab_Size, "TABSIZE");
2400    begin
2401       return Natural (C_Tab_Size);
2402    end Tab_Size;
2403
2404    function Number_Of_Colors return Natural
2405    is
2406       C_Number_Of_Colors : C_Int;
2407       pragma Import (C, C_Number_Of_Colors, "COLORS");
2408    begin
2409       return Natural (C_Number_Of_Colors);
2410    end Number_Of_Colors;
2411
2412    function Number_Of_Color_Pairs return Natural
2413    is
2414       C_Number_Of_Color_Pairs : C_Int;
2415       pragma Import (C, C_Number_Of_Color_Pairs, "COLOR_PAIRS");
2416    begin
2417       return Natural (C_Number_Of_Color_Pairs);
2418    end Number_Of_Color_Pairs;
2419 ------------------------------------------------------------------------------
2420    procedure Transform_Coordinates
2421      (W      : in Window := Standard_Window;
2422       Line   : in out Line_Position;
2423       Column : in out Column_Position;
2424       Dir    : in Transform_Direction := From_Screen)
2425    is
2426       type Int_Access is access all C_Int;
2427       function Transform (W    : Window;
2428                           Y, X : Int_Access;
2429                           Dir  : Curses_Bool) return C_Int;
2430       pragma Import (C, Transform, "wmouse_trafo");
2431
2432       X : aliased C_Int := C_Int (Column);
2433       Y : aliased C_Int := C_Int (Line);
2434       D : Curses_Bool := Curses_Bool_False;
2435       R : C_Int;
2436    begin
2437       if Dir = To_Screen then
2438          D := 1;
2439       end if;
2440       R := Transform (W, Y'Access, X'Access, D);
2441       if R = Curses_False then
2442          raise Curses_Exception;
2443       else
2444          Line   := Line_Position (Y);
2445          Column := Column_Position (X);
2446       end if;
2447    end Transform_Coordinates;
2448 ------------------------------------------------------------------------------
2449    procedure Use_Default_Colors is
2450       function C_Use_Default_Colors return C_Int;
2451       pragma Import (C, C_Use_Default_Colors, "use_default_colors");
2452       Err : constant C_Int := C_Use_Default_Colors;
2453    begin
2454       if Err = Curses_Err then
2455          raise Curses_Exception;
2456       end if;
2457    end Use_Default_Colors;
2458
2459    procedure Assume_Default_Colors (Fore : Color_Number := Default_Color;
2460                                     Back : Color_Number := Default_Color)
2461    is
2462       function C_Assume_Default_Colors (Fore : C_Int;
2463                                         Back : C_Int) return C_Int;
2464       pragma Import (C, C_Assume_Default_Colors, "assume_default_colors");
2465
2466       Err : constant C_Int := C_Assume_Default_Colors (C_Int (Fore),
2467                                                        C_Int (Back));
2468    begin
2469       if Err = Curses_Err then
2470          raise Curses_Exception;
2471       end if;
2472    end Assume_Default_Colors;
2473 ------------------------------------------------------------------------------
2474    function Curses_Version return String
2475    is
2476       function curses_versionC return chars_ptr;
2477       pragma Import (C, curses_versionC, "curses_version");
2478       Result : constant chars_ptr := curses_versionC;
2479    begin
2480       return Fill_String (Result);
2481    end Curses_Version;
2482 ------------------------------------------------------------------------------
2483    function Use_Extended_Names (Enable : Boolean) return Boolean
2484    is
2485       function use_extended_namesC (e : Curses_Bool) return C_Int;
2486       pragma Import (C, use_extended_namesC, "use_extended_names");
2487
2488       Res : constant C_Int :=
2489          use_extended_namesC (Curses_Bool (Boolean'Pos (Enable)));
2490    begin
2491       if Res = C_Int (Curses_Bool_False) then
2492          return False;
2493       else
2494          return True;
2495       end if;
2496    end Use_Extended_Names;
2497 ------------------------------------------------------------------------------
2498    procedure Screen_Dump_To_File (Filename : in String)
2499    is
2500       function scr_dump (f : char_array) return C_Int;
2501       pragma Import (C, scr_dump, "scr_dump");
2502       Txt    : char_array (0 .. Filename'Length);
2503       Length : size_t;
2504    begin
2505       To_C (Filename, Txt, Length);
2506       if Curses_Err = scr_dump (Txt) then
2507          raise Curses_Exception;
2508       end if;
2509    end Screen_Dump_To_File;
2510
2511    procedure Screen_Restore_From_File (Filename : in String)
2512    is
2513       function scr_restore (f : char_array) return C_Int;
2514       pragma Import (C, scr_restore, "scr_restore");
2515       Txt    : char_array (0 .. Filename'Length);
2516       Length : size_t;
2517    begin
2518       To_C (Filename, Txt, Length);
2519       if Curses_Err = scr_restore (Txt)  then
2520          raise Curses_Exception;
2521       end if;
2522    end Screen_Restore_From_File;
2523
2524    procedure Screen_Init_From_File (Filename : in String)
2525    is
2526       function scr_init (f : char_array) return C_Int;
2527       pragma Import (C, scr_init, "scr_init");
2528       Txt    : char_array (0 .. Filename'Length);
2529       Length : size_t;
2530    begin
2531       To_C (Filename, Txt, Length);
2532       if Curses_Err = scr_init (Txt) then
2533          raise Curses_Exception;
2534       end if;
2535    end Screen_Init_From_File;
2536
2537    procedure Screen_Set_File (Filename : in String)
2538    is
2539       function scr_set (f : char_array) return C_Int;
2540       pragma Import (C, scr_set, "scr_set");
2541       Txt    : char_array (0 .. Filename'Length);
2542       Length : size_t;
2543    begin
2544       To_C (Filename, Txt, Length);
2545       if Curses_Err = scr_set (Txt) then
2546          raise Curses_Exception;
2547       end if;
2548    end Screen_Set_File;
2549 ------------------------------------------------------------------------------
2550    procedure Resize (Win               : Window := Standard_Window;
2551                      Number_Of_Lines   : Line_Count;
2552                      Number_Of_Columns : Column_Count) is
2553       function wresize (win     : Window;
2554                         lines   : C_Int;
2555                         columns : C_Int) return C_Int;
2556       pragma Import (C, wresize);
2557    begin
2558       if wresize (Win,
2559                   C_Int (Number_Of_Lines),
2560                   C_Int (Number_Of_Columns)) = Curses_Err then
2561          raise Curses_Exception;
2562       end if;
2563    end Resize;
2564 ------------------------------------------------------------------------------
2565
2566 end Terminal_Interface.Curses;
2567