------------------------------------------------------------------------------ -- -- -- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet -- -- Copyright (C) 2000-2014, AdaCore -- -- -- -- This library is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 3, or (at your option) any later -- -- version. This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ -- <description> -- The Gtk.Orientable.Gtk_Orientable interface is implemented by all widgets -- that can be oriented horizontally or vertically. Historically, such widgets -- have been realized as subclasses of a common base class (e.g -- Gtk.Box.Gtk_Box/Gtk.Box.Gtk_Hbox/Gtk.Box.Gtk_Vbox or -- Gtk.Scale.Gtk_Scale/Gtk.Scale.Gtk_Hscale/Gtk.Scale.Gtk_Vscale). -- Gtk.Orientable.Gtk_Orientable is more flexible in that it allows the -- orientation to be changed at runtime, allowing the widgets to 'flip'. -- -- Gtk.Orientable.Gtk_Orientable was introduced in GTK+ 2.16. -- -- </description> pragma Ada_2005; pragma Warnings (Off, "*is already use-visible*");
with Glib; use Glib;
with Glib.Types; use Glib.Types;
with Gtk.Enums; use Gtk.Enums;
package Gtk.Orientable is
type Gtk_Orientable is new Glib.Types.GType_Interface;
Null_Gtk_Orientable : constant Gtk_Orientable;
------------------ -- Constructors -- ------------------ function Get_Type return Glib.GType;
pragma Import (C, Get_Type, "gtk_orientable_get_type");
------------- -- Methods -- ------------- function Get_Orientation
(Self : Gtk_Orientable) return Gtk.Enums.Gtk_Orientation;
pragma Import (C, Get_Orientation, "gtk_orientable_get_orientation");
-- Retrieves the orientation of the Orientable. -- Since: gtk+ 2.16 procedure Set_Orientation
(Self : Gtk_Orientable;
Orientation : Gtk.Enums.Gtk_Orientation);
pragma Import (C, Set_Orientation, "gtk_orientable_set_orientation");
-- Sets the orientation of the Orientable. -- Since: gtk+ 2.16 -- "orientation": the orientable's new orientation. ---------------- -- Properties -- ---------------- -- The following properties are defined for this widget. See -- Glib.Properties for more information on properties) Orientation_Property : constant Gtk.Enums.Property_Gtk_Orientation;
-- The orientation of the orientable. ---------------- -- Interfaces -- ---------------- -- This class implements several interfaces. See Glib.Types -- -- - "Gtk_Orientable" function "+" (W : Gtk_Orientable) return Gtk_Orientable;
pragma Inline ("+");
private Orientation_Property : constant Gtk.Enums.Property_Gtk_Orientation :=
Gtk.Enums.Build ("orientation");
Null_Gtk_Orientable : constant Gtk_Orientable :=
Gtk_Orientable (Glib.Types.Null_Interface);
end Gtk.Orientable;