pragma Ada_2005;
pragma Warnings (Off, "*is already use-visible*");
with Glib; use Glib;
with Glib.Properties; use Glib.Properties;
with Glib.Types; use Glib.Types;
with Glib.Variant; use Glib.Variant;
with Gtk.Action; use Gtk.Action;
with Gtk.Actionable; use Gtk.Actionable;
with Gtk.Activatable; use Gtk.Activatable;
with Gtk.Buildable; use Gtk.Buildable;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Orientable; use Gtk.Orientable;
with Gtk.Scale_Button; use Gtk.Scale_Button;
package Gtk.Volume_Button is
type Gtk_Volume_Button_Record is new Gtk_Scale_Button_Record with null record;
type Gtk_Volume_Button is access all Gtk_Volume_Button_Record'Class;
procedure Gtk_New (Widget : out Gtk_Volume_Button);
procedure Initialize
(Widget : not null access Gtk_Volume_Button_Record'Class);
function Gtk_Volume_Button_New return Gtk_Volume_Button;
function Get_Type return Glib.GType;
pragma Import (C, Get_Type, "gtk_volume_button_get_type");
function Get_Action_Name
(Self : not null access Gtk_Volume_Button_Record) return UTF8_String;
procedure Set_Action_Name
(Self : not null access Gtk_Volume_Button_Record;
Action_Name : UTF8_String);
function Get_Action_Target_Value
(Self : not null access Gtk_Volume_Button_Record)
return Glib.Variant.Gvariant;
procedure Set_Action_Target_Value
(Self : not null access Gtk_Volume_Button_Record;
Target_Value : Glib.Variant.Gvariant);
procedure Set_Detailed_Action_Name
(Self : not null access Gtk_Volume_Button_Record;
Detailed_Action_Name : UTF8_String);
procedure Do_Set_Related_Action
(Self : not null access Gtk_Volume_Button_Record;
Action : not null access Gtk.Action.Gtk_Action_Record'Class);
function Get_Related_Action
(Self : not null access Gtk_Volume_Button_Record)
return Gtk.Action.Gtk_Action;
procedure Set_Related_Action
(Self : not null access Gtk_Volume_Button_Record;
Action : not null access Gtk.Action.Gtk_Action_Record'Class);
function Get_Use_Action_Appearance
(Self : not null access Gtk_Volume_Button_Record) return Boolean;
procedure Set_Use_Action_Appearance
(Self : not null access Gtk_Volume_Button_Record;
Use_Appearance : Boolean);
procedure Sync_Action_Properties
(Self : not null access Gtk_Volume_Button_Record;
Action : access Gtk.Action.Gtk_Action_Record'Class);
function Get_Orientation
(Self : not null access Gtk_Volume_Button_Record)
return Gtk.Enums.Gtk_Orientation;
procedure Set_Orientation
(Self : not null access Gtk_Volume_Button_Record;
Orientation : Gtk.Enums.Gtk_Orientation);
Use_Symbolic_Property : constant Glib.Properties.Property_Boolean;
package Implements_Gtk_Actionable is new Glib.Types.Implements
(Gtk.Actionable.Gtk_Actionable, Gtk_Volume_Button_Record, Gtk_Volume_Button);
function "+"
(Widget : access Gtk_Volume_Button_Record'Class)
return Gtk.Actionable.Gtk_Actionable
renames Implements_Gtk_Actionable.To_Interface;
function "-"
(Interf : Gtk.Actionable.Gtk_Actionable)
return Gtk_Volume_Button
renames Implements_Gtk_Actionable.To_Object;
package Implements_Gtk_Activatable is new Glib.Types.Implements
(Gtk.Activatable.Gtk_Activatable, Gtk_Volume_Button_Record, Gtk_Volume_Button);
function "+"
(Widget : access Gtk_Volume_Button_Record'Class)
return Gtk.Activatable.Gtk_Activatable
renames Implements_Gtk_Activatable.To_Interface;
function "-"
(Interf : Gtk.Activatable.Gtk_Activatable)
return Gtk_Volume_Button
renames Implements_Gtk_Activatable.To_Object;
package Implements_Gtk_Buildable is new Glib.Types.Implements
(Gtk.Buildable.Gtk_Buildable, Gtk_Volume_Button_Record, Gtk_Volume_Button);
function "+"
(Widget : access Gtk_Volume_Button_Record'Class)
return Gtk.Buildable.Gtk_Buildable
renames Implements_Gtk_Buildable.To_Interface;
function "-"
(Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_Volume_Button
renames Implements_Gtk_Buildable.To_Object;
package Implements_Gtk_Orientable is new Glib.Types.Implements
(Gtk.Orientable.Gtk_Orientable, Gtk_Volume_Button_Record, Gtk_Volume_Button);
function "+"
(Widget : access Gtk_Volume_Button_Record'Class)
return Gtk.Orientable.Gtk_Orientable
renames Implements_Gtk_Orientable.To_Interface;
function "-"
(Interf : Gtk.Orientable.Gtk_Orientable)
return Gtk_Volume_Button
renames Implements_Gtk_Orientable.To_Object;
private
Use_Symbolic_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("use-symbolic");
end Gtk.Volume_Button;