pragma Ada_2005;
pragma Warnings (Off, "*is already use-visible*");
with Glib; use Glib;
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.Menu_Item; use Gtk.Menu_Item;
package Gtk.Separator_Menu_Item is
type Gtk_Separator_Menu_Item_Record is new Gtk_Menu_Item_Record with null record;
type Gtk_Separator_Menu_Item is access all Gtk_Separator_Menu_Item_Record'Class;
procedure Gtk_New (Widget : out Gtk_Separator_Menu_Item);
procedure Initialize
(Widget : not null access Gtk_Separator_Menu_Item_Record'Class);
function Gtk_Separator_Menu_Item_New return Gtk_Separator_Menu_Item;
function Get_Type return Glib.GType;
pragma Import (C, Get_Type, "gtk_separator_menu_item_get_type");
function Get_Action_Name
(Self : not null access Gtk_Separator_Menu_Item_Record)
return UTF8_String;
procedure Set_Action_Name
(Self : not null access Gtk_Separator_Menu_Item_Record;
Action_Name : UTF8_String);
function Get_Action_Target_Value
(Self : not null access Gtk_Separator_Menu_Item_Record)
return Glib.Variant.Gvariant;
procedure Set_Action_Target_Value
(Self : not null access Gtk_Separator_Menu_Item_Record;
Target_Value : Glib.Variant.Gvariant);
procedure Set_Detailed_Action_Name
(Self : not null access Gtk_Separator_Menu_Item_Record;
Detailed_Action_Name : UTF8_String);
procedure Do_Set_Related_Action
(Self : not null access Gtk_Separator_Menu_Item_Record;
Action : not null access Gtk.Action.Gtk_Action_Record'Class);
function Get_Related_Action
(Self : not null access Gtk_Separator_Menu_Item_Record)
return Gtk.Action.Gtk_Action;
procedure Set_Related_Action
(Self : not null access Gtk_Separator_Menu_Item_Record;
Action : not null access Gtk.Action.Gtk_Action_Record'Class);
function Get_Use_Action_Appearance
(Self : not null access Gtk_Separator_Menu_Item_Record) return Boolean;
procedure Set_Use_Action_Appearance
(Self : not null access Gtk_Separator_Menu_Item_Record;
Use_Appearance : Boolean);
procedure Sync_Action_Properties
(Self : not null access Gtk_Separator_Menu_Item_Record;
Action : access Gtk.Action.Gtk_Action_Record'Class);
package Implements_Gtk_Actionable is new Glib.Types.Implements
(Gtk.Actionable.Gtk_Actionable, Gtk_Separator_Menu_Item_Record, Gtk_Separator_Menu_Item);
function "+"
(Widget : access Gtk_Separator_Menu_Item_Record'Class)
return Gtk.Actionable.Gtk_Actionable
renames Implements_Gtk_Actionable.To_Interface;
function "-"
(Interf : Gtk.Actionable.Gtk_Actionable)
return Gtk_Separator_Menu_Item
renames Implements_Gtk_Actionable.To_Object;
package Implements_Gtk_Activatable is new Glib.Types.Implements
(Gtk.Activatable.Gtk_Activatable, Gtk_Separator_Menu_Item_Record, Gtk_Separator_Menu_Item);
function "+"
(Widget : access Gtk_Separator_Menu_Item_Record'Class)
return Gtk.Activatable.Gtk_Activatable
renames Implements_Gtk_Activatable.To_Interface;
function "-"
(Interf : Gtk.Activatable.Gtk_Activatable)
return Gtk_Separator_Menu_Item
renames Implements_Gtk_Activatable.To_Object;
package Implements_Gtk_Buildable is new Glib.Types.Implements
(Gtk.Buildable.Gtk_Buildable, Gtk_Separator_Menu_Item_Record, Gtk_Separator_Menu_Item);
function "+"
(Widget : access Gtk_Separator_Menu_Item_Record'Class)
return Gtk.Buildable.Gtk_Buildable
renames Implements_Gtk_Buildable.To_Interface;
function "-"
(Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_Separator_Menu_Item
renames Implements_Gtk_Buildable.To_Object;
end Gtk.Separator_Menu_Item;