1. ------------------------------------------------------------------------------ 
  2. --                  GtkAda - Ada95 binding for Gtk+/Gnome                   -- 
  3. --                                                                          -- 
  4. --                     Copyright (C) 2001-2014, AdaCore                     -- 
  5. --                                                                          -- 
  6. -- This library is free software;  you can redistribute it and/or modify it -- 
  7. -- under terms of the  GNU General Public License  as published by the Free -- 
  8. -- Software  Foundation;  either version 3,  or (at your  option) any later -- 
  9. -- version. This library is distributed in the hope that it will be useful, -- 
  10. -- but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN- -- 
  11. -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            -- 
  12. --                                                                          -- 
  13. -- As a special exception under Section 7 of GPL version 3, you are granted -- 
  14. -- additional permissions described in the GCC Runtime Library Exception,   -- 
  15. -- version 3.1, as published by the Free Software Foundation.               -- 
  16. --                                                                          -- 
  17. -- You should have received a copy of the GNU General Public License and    -- 
  18. -- a copy of the GCC Runtime Library Exception along with this program;     -- 
  19. -- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    -- 
  20. -- <http://www.gnu.org/licenses/>.                                          -- 
  21. --                                                                          -- 
  22. ------------------------------------------------------------------------------ 
  23.  
  24. --  <description> 
  25. --  This is the top level package of the Pango hierarchy. 
  26. --  </description> 
  27. --  <group>Pango, font handling</group> 
  28.  
  29. pragma Warnings (Off); 
  30. with System;  --   Needed for child packages 
  31. pragma Warnings (On); 
  32.  
  33. with Glib;   use Glib; 
  34.  
  35. package Pango is 
  36.  
  37.    type Pango_Rectangle is record 
  38.       X, Y, Width, Height : Glib.Gint; 
  39.    end record; 
  40.  
  41.    type Pango_Glyph is new Glib.Guint32; 
  42.  
  43.    type Pango_Attr_Class is new Glib.C_Proxy; 
  44.  
  45. end Pango;