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-2006 AdaCore                    -- 
  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. --  This widget is used internally by gtk+, and is likely not very useful to 
  32. --  end-users. 
  33. --  This is a widget that has no visual rendering. It is used for reliable 
  34. --  pointer grabs and drag-and-drop 
  35. --  </description> 
  36. --  <c_version>2.8.17</c_version> 
  37. --  <group>Windows</group> 
  38.  
  39. with Glib.Properties; 
  40. with Gtk.Widget; 
  41.  
  42. package Gtk.Invisible is 
  43.  
  44.    type Gtk_Invisible_Record is new Gtk.Widget.Gtk_Widget_Record with private; 
  45.    type Gtk_Invisible is access all Gtk_Invisible_Record'Class; 
  46.  
  47.    procedure Gtk_New (Widget : out Gtk_Invisible); 
  48.  
  49.    procedure Initialize (Widget : access Gtk_Invisible_Record'Class); 
  50.  
  51.    function Get_Type return Gtk.Gtk_Type; 
  52.  
  53.    ---------------- 
  54.    -- Properties -- 
  55.    ---------------- 
  56.  
  57.    --  <properties> 
  58.    --  The following properties are defined for this widget. See 
  59.    --  Glib.Properties for more information on properties. 
  60.    -- 
  61.    --  Name:  Screen_Property 
  62.    --  Type:  Object 
  63.    --  Descr: The screen where this window will be displayed 
  64.    -- 
  65.    --  </properties> 
  66.  
  67.    Screen_Property : constant Glib.Properties.Property_Object; 
  68.  
  69. private 
  70.    type Gtk_Invisible_Record is new 
  71.      Gtk.Widget.Gtk_Widget_Record with null record; 
  72.  
  73.    Screen_Property : constant Glib.Properties.Property_Object := 
  74.      Glib.Properties.Build ("screen"); 
  75.  
  76.    pragma Import (C, Get_Type, "gtk_invisible_get_type"); 
  77. end Gtk.Invisible; 
  78.  
  79. --  No binding: gtk_invisible_get_screen 
  80. --  No binding: gtk_invisible_new_for_screen 
  81. --  No binding: gtk_invisible_set_screen