[Contents]   [Back]   [Prev]   [Up]   [Next]   [Forward]  


Package Gtk.Object

This is the base class of the widget hierarchy. Everything in GtkAda inherits from this class Gtk_Object, except for a few structures in the Gdk.* packages (low-level drawing routines).

This class provides a set of handful features that you can choose to reuse in your applications:

Note that a lot of functions provided in the C interface are not provided here. They are used to emulate an object-oriented language in C, which can of course be done much more conveniently in Ada. Therefore most of these functions are not needed.

Here is a brief explanation on how the reference counting and destruction process work. You should not have to understand all this to use GtkAda, but it might help anyway.

When an object (descendant of Gtk.Object) is created, it has initially a ref_count of 1. A flag is set to say the object is "floating". See the Flags functions in this package for how to retrieve the status of this flag.

When the object gets a parent (ie Gtk.Widget.Set_Parent is called, possibly from other subprograms like Gtk.Container.Add, Gtk.Box.Pack_Start, ...), the ref_count of the object is incremented to 2. If the object was still "floating", it is also "sinked", ie its ref_count is decremented to 1, and the "floating" flag is cleared.

The same behavior as above happens when the object is registered as a top-level widget (i.e. we know it won't have any parent).

Thus the normal life cycle of an object is to have a ref_count to 1, and not be a "floating" object.

When the object is destroyed, the following happens: A temporary reference to the object is created (call to Ref), and ref_count to 2. The object is shutdown: It is removed from its parent (if any), and its ref_count is decremented to 1. The "destroy" signal is emitted, the user's handlers are called, and then all the handlers connected to the object are destroyed. The object is unref-ed. If its ref_count goes down to 0 (normal case), the memory used by the object and its user_data is freed.

Widget Hierarchy

Gtk_Object                    (see section Package Gtk.Object)

Signals

Types

type Signal_Parameter_Types is array (Natural range <>, Natural range <>) of Gtk_Type; 

The description of the parameters for each event. Each event defined with Initialize_Class_Record below should have an entry in this table. If Gtk_Type_None is found in the table, it is ignored. For instance, a Signal_Parameter_Type like: (1 => (1 => Gdk_Type_Gdk_Event, 2 => Gdk_Type_Nonde), 2 => (1 => Gdk_Type_Int, 2 => Gdk_Type_Int)); defines two signals, the first with a single Gdk_Event parameter, the second with two ints parameters.


Subprograms

procedure Ref                  
  (Object             : access Gtk_Object_Record);

Increment the reference count on the object.
Since an object is not deleted while its reference count is not null, this is a way to keep an object in memory. GtkAda mostly takes care of everything, and you should not need this function except in special cases.


procedure Unref                
  (Object             : access Gtk_Object_Record);

Decrement the reference count for an object.
If it passed from 1 to 0, then the memory allocated for the object is freed, and the object no longer usable. It is better to use Destroy than Unref to destroy an object, although both might be acceptable.


procedure Sink                 
  (Object             : access Gtk_Object_Record);

Sink the object.
If the object is floating (does not have a parent yet), it is unref-ed once and the floating flag is cleared.


procedure Destroy              
  (Object             : access Gtk_Object_Record);

Destroy the object.
This emits a "destroy" signal, calls all your handlers, and then unconnects them all. The object is then unref-ed, and if its reference count goes down to 0, the memory associated with the object and its user data is freed. Note that when you destroy handlers are called, the user_data is still available.


function Get_Type              return Gtk.Gtk_Type;

Return the internal value associated with a Gtk_Object internally.


function Get_Type              
  (Object             : access Gtk_Object_Record)
   return Gtk_Type;

Return the type of Object.
This function is mostly used internally, since in Ada you can simply test whether an object belong to a class with a statement like:

if Object in Gtk_Button_Record'Class then ...

which is easier.


Flags


Each object is associated with a set of flags, that reports the state
of the object. The following flags are known by all objects:

  • "Destroyed": Set if the object is marked as destroyed (if its reference count is not yet 0, the memory has not been freed, but you should not use it anyway).
  • "Floating": The object has no parent yet, since it was just created. Its reference count is still 1 (as it was initially). This flag is cleared as soon as Set_Parent is called on the widget or the widget is qualified as a toplevel widget (see Gtk.Container.Register_Toplevel).
  • "Connected": Set if the object is connected to at least one handler
  • "Constructed": Set if the object has been fully constructed, and is now usable. Every time you create an object at the GtkAda level, the object will be fully constructed, and you shouldn't have to worry about that flag.

function Flags                 
  (Object             : access Gtk_Object_Record)
   return Guint32;

Return the flags that are set for the object, as a binary mask.


procedure Set_Flags            
  (Object             : access Gtk_Object_Record;
   Flags              : in     Guint32);

Set some specific flags for the object.
Flags is a mask that will be added to the current flags of the object.


procedure Unset_Flags          
  (Object             : access Gtk_Object_Record;
   Flags              : in     Guint32);

Unset some specific flags for the object.
Flags is a mask that will be deleted from the current flags of the object.


function Flag_Is_Set           
  (Object             : access Gtk_Object_Record;
   Flag               : in     Guint32)
   return Boolean;

Return True if the specific flag Flag is set for the object.


function Destroyed_Is_Set      
  (Object             : access Gtk_Object_Record'Class)
   return Boolean;

Test if the Destroyed flag is set for the object.


function Floating_Is_Set       
  (Object             : access Gtk_Object_Record'Class)
   return Boolean;

Test if the Floating flag is set for the object.


function Connected_Is_Set      
  (Object             : access Gtk_Object_Record'Class)
   return Boolean;

Test if the Connected flag is set for the object.


function Constructed_Is_Set    
  (Object             : access Gtk_Object_Record'Class)
   return Boolean;

Test if the Constructed flag is set for the object


Creating new widgets


These types and functions are used only when creating new widget types
directly in Ada. These functions initialize the classes so that they are correctly recognized by gtk+ itself See the GtkAda user's guide for more information on how to create your own widget types in Ada.

procedure Initialize_Class_Record
  (Object             : access Gtk_Object_Record'Class;
   Signals            :        Gtkada.Types.Chars_Ptr_Array;
   Class_Record       : in out System.Address;
   Parameters         :        Signal_Parameter_Types
                       := Null_Parameter_Types;
   Scroll_Adjustments_Signal  :        Guint := 0);

Create the class record for a new widget type.
It is associated with Signals'Length new signals. A pointer to the newly created structure is also returned in Class_Record. If Class_Record /= System.Null_Address, no memory allocation is performed, we just reuse it. Note: The underlying C widget must already have been initialized by a call to its parent's Initialize function. Parameters'Length should be the same as Signals'Length, or the result is undefined. As a special case, if Parameters has its default value, all signals are created with no argument. This is done for backward compatibility mainly, and you should instead give it an explicit value.

Scroll_Adjustments_Signal is the index of the new signal that will be emitted when Gtk.Widget.Set_Scroll_Adjustments is called. If it is 0, no signal is emitted. The first signal in Signals has index 1. Note that the handlers for this signal take two arguments in addition to the widget (the horizontal and vertical adjustments to be used). See Gtk.Scrolled_Window and Gtk.Widget.Set_Scroll_Adustment for more information on this signal.

Only the signals with no parameter can be connected from C. However, any signal can be connected from Ada. This is due to the way we define default marshallers for the signals.



[Contents]   [Back]   [Prev]   [Up]   [Next]   [Forward]