1 ------------------------------------------------------------------------------
3 -- GNAT ncurses Binding Samples --
5 -- Sample.Header_Handler --
9 ------------------------------------------------------------------------------
10 -- Copyright (c) 1998-2006,2009 Free Software Foundation, Inc. --
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: --
20 -- The above copyright notice and this permission notice shall be included --
21 -- in all copies or substantial portions of the Software. --
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. --
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 --
35 ------------------------------------------------------------------------------
36 -- Author: Juergen Pfeifer, 1996
39 -- $Date: 2009/12/26 17:38:58 $
40 -- Binding Version 01.00
41 ------------------------------------------------------------------------------
42 with Ada.Calendar; use Ada.Calendar;
43 with Terminal_Interface.Curses.Text_IO.Integer_IO;
44 with Sample.Manifest; use Sample.Manifest;
46 -- This package handles the painting of the header line of the screen.
48 package body Sample.Header_Handler is
51 Terminal_Interface.Curses.Text_IO.Integer_IO (Integer);
54 Header_Window : Window := Null_Window;
56 Display_Hour : Integer := -1; -- hour last displayed
57 Display_Min : Integer := -1; -- minute last displayed
58 Display_Day : Integer := -1; -- day last displayed
59 Display_Month : Integer := -1; -- month last displayed
61 -- This is the routine handed over to the curses library to be called
62 -- as initialization routine when ripping of the header lines from
63 -- the screen. This routine must follow C conventions.
64 function Init_Header_Window (Win : Window;
65 Columns : Column_Count) return Integer;
66 pragma Convention (C, Init_Header_Window);
68 procedure Internal_Update_Header_Window (Do_Update : Boolean);
70 -- The initialization must be called before Init_Screen. It steals two
71 -- lines from the top of the screen.
72 procedure Init_Header_Handler
75 Rip_Off_Lines (2, Init_Header_Window'Access);
76 end Init_Header_Handler;
78 procedure N_Out (N : Integer);
80 -- Emit a two digit number and ensure that a leading zero is generated if
82 procedure N_Out (N : Integer)
86 Add (Header_Window, '0');
87 Put (Header_Window, N, 1);
89 Put (Header_Window, N, 2);
93 -- Paint the header window. The input parameter is a flag indicating
94 -- whether or not the screen should be updated physically after painting.
95 procedure Internal_Update_Header_Window (Do_Update : Boolean)
97 type Month_Name_Array is
98 array (Month_Number'First .. Month_Number'Last) of String (1 .. 9);
100 Month_Names : constant Month_Name_Array :=
114 Now : constant Time := Clock;
115 Sec : constant Integer := Integer (Seconds (Now));
116 Hour : constant Integer := Sec / 3600;
117 Minute : constant Integer := (Sec - Hour * 3600) / 60;
118 Mon : constant Month_Number := Month (Now);
119 D : constant Day_Number := Day (Now);
121 if Header_Window /= Null_Window then
122 if Minute /= Display_Min or else Hour /= Display_Hour
123 or else Display_Day /= D or else Display_Month /= Mon then
124 Move_Cursor (Header_Window, 0, 0);
125 N_Out (D); Add (Header_Window, '.');
126 Add (Header_Window, Month_Names (Mon));
127 Move_Cursor (Header_Window, 1, 0);
128 N_Out (Hour); Add (Header_Window, ':');
130 Display_Min := Minute;
131 Display_Hour := Hour;
132 Display_Month := Mon;
134 Refresh_Without_Update (Header_Window);
140 end Internal_Update_Header_Window;
142 -- This routine is called in the keyboard input timeout handler. So it will
143 -- periodically update the header line of the screen.
144 procedure Update_Header_Window
147 Internal_Update_Header_Window (True);
148 end Update_Header_Window;
150 function Init_Header_Window (Win : Window;
151 Columns : Column_Count) return Integer
153 Title : constant String := "Ada 95 ncurses Binding Sample";
154 Pos : Column_Position;
156 Header_Window := Win;
157 if Win /= Null_Window then
159 Set_Background (Win => Win,
161 Color => Header_Color,
162 Attr => Normal_Video));
163 Set_Character_Attributes (Win => Win,
164 Attr => Normal_Video,
165 Color => Header_Color);
168 Leave_Cursor_After_Update (Win, True);
169 Pos := Columns - Column_Position (Title'Length);
170 Add (Win, 0, Pos / 2, Title);
171 -- In this phase we must not allow a physical update, because
172 -- ncurses isn“t properly initialized at this point.
173 Internal_Update_Header_Window (False);
178 end Init_Header_Window;
180 end Sample.Header_Handler;