1. ----------------------------------------------------------------------- 
  2. --               GtkAda - Ada95 binding for Gtk+/Gnome               -- 
  3. --                                                                   -- 
  4. --      Copyright (C) 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. --  A Gtk_Item_Entry is a special kind of entry item used in a 
  32. --  Gtk_Sheet to edit the current cell. 
  33. --  It can be used independently, but you should rather use a more general 
  34. --  Gtk_Entry widget. 
  35. --  </description> 
  36. --  <c_version>gtkextra 2.1.1</c_version> 
  37. --  <group>GtkExtra, additional widgets</group> 
  38.  
  39. with Gtk.Enums; 
  40. with Gtk.GEntry; 
  41.  
  42. package Gtk.Extra.Item_Entry is 
  43.  
  44.    type Gtk_IEntry_Record is new Gtk.GEntry.Gtk_Entry_Record with private; 
  45.    type Gtk_IEntry is access all Gtk_IEntry_Record'Class; 
  46.  
  47.    subtype Gtk_Item_Entry_Record is Gtk_IEntry_Record; 
  48.    subtype Gtk_Item_Entry is Gtk_IEntry; 
  49.    --  This type is provided so as to be compatible with the new name used 
  50.    --  in gtk+extra. Both names are kept for backward compatibility. 
  51.  
  52.    procedure Gtk_New (Widget : out Gtk_IEntry; 
  53.                       Max    : in Guint16 := 0); 
  54.    --  Create a new entry item. 
  55.    --  By default, the maximal length depends only on the size of the widget. 
  56.  
  57.    procedure Initialize (Widget : access Gtk_IEntry_Record'Class; 
  58.                          Max    : in Guint16); 
  59.    --  Internal initialization function. 
  60.    --  See the section "Creating your own widgets" in the documentation. 
  61.  
  62.    function Get_Type return Gtk.Gtk_Type; 
  63.    --  Return the internal value associated with a Gtk_Item_Entry. 
  64.  
  65.    procedure Set_Justification 
  66.      (Item_Entry    : access Gtk_IEntry_Record; 
  67.       Justification : Gtk.Enums.Gtk_Justification); 
  68.    --  Change the justification of the text in the entry. 
  69.  
  70.    procedure Set_Text 
  71.      (Item_Entry    : access Gtk_IEntry_Record; 
  72.       Text          : String; 
  73.       Justification : Gtk.Enums.Gtk_Justification); 
  74.    --  Change the text in the entry. 
  75.  
  76.    procedure Set_Cursor_Visible 
  77.      (Item_Entry : access Gtk_IEntry_Record; Visible : Boolean); 
  78.    --  Whether the cursor should be visible 
  79.  
  80.    function Get_Cursor_Visible 
  81.      (Item_Entry : access Gtk_IEntry_Record) return Boolean; 
  82.    --  Whether the cursor is visible 
  83.  
  84.    ------------- 
  85.    -- Signals -- 
  86.    ------------- 
  87.  
  88.    --  <signals> 
  89.    --  The following new signals are defined for this widget: 
  90.    --  </signals> 
  91. private 
  92.    type Gtk_IEntry_Record is new Gtk.GEntry.Gtk_Entry_Record with null record; 
  93.    pragma Import (C, Get_Type, "gtk_item_entry_get_type"); 
  94. end Gtk.Extra.Item_Entry;