]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/ada_include/terminal_interface-curses-forms-form_user_data.adb
ncurses 4.1
[ncurses.git] / Ada95 / ada_include / terminal_interface-curses-forms-form_user_data.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                           GNAT ncurses Binding                           --
4 --                                                                          --
5 --                Terminal_Interface.Curses.Forms.Form_User_Data            --
6 --                                                                          --
7 --                                 B O D Y                                  --
8 --                                                                          --
9 --  Version 00.92                                                           --
10 --                                                                          --
11 --  The ncurses Ada95 binding is copyrighted 1996 by                        --
12 --  Juergen Pfeifer, Email: Juergen.Pfeifer@T-Online.de                     --
13 --                                                                          --
14 --  Permission is hereby granted to reproduce and distribute this           --
15 --  binding by any means and for any fee, whether alone or as part          --
16 --  of a larger distribution, in source or in binary form, PROVIDED         --
17 --  this notice is included with any such distribution, and is not          --
18 --  removed from any of its header files. Mention of ncurses and the        --
19 --  author of this binding in any applications linked with it is            --
20 --  highly appreciated.                                                     --
21 --                                                                          --
22 --  This binding comes AS IS with no warranty, implied or expressed.        --
23 ------------------------------------------------------------------------------
24 --  Version Control:
25 --  $Revision: 1.3 $
26 ------------------------------------------------------------------------------
27 with Unchecked_Conversion;
28 --  |
29 --  |=====================================================================
30 --  | man page form__userptr.3x
31 --  |=====================================================================
32 --  |
33 package body Terminal_Interface.Curses.Forms.Form_User_Data is
34    
35    function To_Address is new Unchecked_Conversion (User_Access,
36                                                     System.Address);
37    function To_Pointer is new Unchecked_Conversion (System.Address,
38                                                     User_Access);
39    --  |
40    --  |
41    --  |
42    procedure Set_User_Data (Frm  : in Form;
43                             Data : in User_Access)
44    is
45       A : constant Form_User_Wrapper_Access := Form_Userptr (Frm);
46    begin
47       if A = null then
48          raise Form_Exception;
49       else
50          A.U := To_Address (Data);
51       end if;
52    end Set_User_Data;
53    --  |
54    --  |
55    --  |
56    procedure Get_User_Data (Frm  : in  Form;
57                             Data : out User_Access)
58    is
59       A : constant Form_User_Wrapper_Access := Form_Userptr (Frm);
60    begin
61       if A = null then
62          raise Form_Exception;
63       else
64          Data := To_Pointer (A.U);
65       end if;
66    end Get_User_Data;
67    
68 end Terminal_Interface.Curses.Forms.Form_User_Data;