1. ----------------------------------------------------------------------- 
  2. --               GtkAda - Ada95 binding for Gtk+/Gnome               -- 
  3. --                                                                   -- 
  4. --   Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet   -- 
  5. --                Copyright (C) 2000-2001 ACT-Europe                 -- 
  6. --                                                                   -- 
  7. -- This library is free software; you can redistribute it and/or     -- 
  8. -- modify it under the terms of the GNU General Public               -- 
  9. -- License as published by the Free Software Foundation; either      -- 
  10. -- version 2 of the License, or (at your option) any later version.  -- 
  11. --                                                                   -- 
  12. -- This library is distributed in the hope that it will be useful,   -- 
  13. -- but WITHOUT ANY WARRANTY; without even the implied warranty of    -- 
  14. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU -- 
  15. -- General Public License for more details.                          -- 
  16. --                                                                   -- 
  17. -- You should have received a copy of the GNU General Public         -- 
  18. -- License along with this library; if not, write to the             -- 
  19. -- Free Software Foundation, Inc., 59 Temple Place - Suite 330,      -- 
  20. -- Boston, MA 02111-1307, USA.                                       -- 
  21. --                                                                   -- 
  22. -- As a special exception, if other files instantiate generics from  -- 
  23. -- this unit, or you link this unit with other files to produce an   -- 
  24. -- executable, this  unit  does not  by itself cause  the resulting  -- 
  25. -- executable to be covered by the GNU General Public License. This  -- 
  26. -- exception does not however invalidate any other reasons why the   -- 
  27. -- executable file  might be covered by the  GNU Public License.     -- 
  28. ----------------------------------------------------------------------- 
  29.  
  30. --  <description> 
  31. -- 
  32. --  This is the top level package of the Gdk hierarchy. 
  33. --  It provides the type definitions used to access underlying C structures. 
  34. -- 
  35. --  </description> 
  36. --  <group>Gdk, the low-level API</group> 
  37.  
  38. with Glib; 
  39.  
  40. package Gdk is 
  41.    pragma Preelaborate; 
  42.  
  43.    subtype C_Proxy is Glib.C_Proxy; 
  44.  
  45.    type Gdk_GC is new C_Proxy; 
  46.  
  47.    type Gdk_Drawable is new C_Proxy; 
  48.    subtype Gdk_Window is Gdk_Drawable; 
  49.    subtype Gdk_Pixmap is Gdk_Drawable; 
  50.    subtype Gdk_Bitmap is Gdk_Drawable; 
  51.  
  52.    type Gdk_Screen is new C_Proxy; 
  53.  
  54.    type Gdk_Colormap is new C_Proxy; 
  55.  
  56.    type Gdk_Visual is new C_Proxy; 
  57.  
  58.    type Gdk_Font is new C_Proxy; 
  59.  
  60.    type Gdk_Image is new C_Proxy; 
  61.  
  62.    type Gdk_Region is new C_Proxy; 
  63.  
  64.    type Gdk_Window_Attr is new C_Proxy; 
  65.  
  66. end Gdk;