----------------------------------------------------------------------- -- GtkAda - Ada95 binding for Gtk+/Gnome -- -- -- -- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet -- -- Copyright (C) 2000-2007 AdaCore -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public -- -- License as published by the Free Software Foundation; either -- -- version 2 of the License, 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 -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public -- -- License along with this library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ----------------------------------------------------------------------- -- -- A Gtk_Check_Menu_Item is a menu item that maintains the state of a boolean -- value in addition to a Gtk_Menu_Item's usual role in activating application -- code. -- -- A check box indicating the state of the boolean value is displayed at the -- left side of the Gtk_Menu_Item. Activating the Gtk_Menu_Item toggles the -- value. -- -- 2.8.17 -- Menus and Toolbars with Glib.Properties; with Gtk.Menu_Item; package Gtk.Check_Menu_Item is type Gtk_Check_Menu_Item_Record is new Gtk.Menu_Item.Gtk_Menu_Item_Record with private; type Gtk_Check_Menu_Item is access all Gtk_Check_Menu_Item_Record'Class; procedure Gtk_New (Check_Menu_Item : out Gtk_Check_Menu_Item; Label : UTF8_String := ""); procedure Initialize (Check_Menu_Item : access Gtk_Check_Menu_Item_Record'Class; Label : UTF8_String := ""); -- Creates or initializes a new Gtk_Check_Menu_Item with a label, if label -- isn't null. procedure Gtk_New_With_Mnemonic (Check_Menu_Item : out Gtk_Check_Menu_Item; Label : UTF8_String); procedure Initialize_With_Mnemonic (Check_Menu_Item : access Gtk_Check_Menu_Item_Record'Class; Label : UTF8_String); -- Creates or initializes a new Gtk_Check_Menu_Item containing a label. The -- label will be created will be created using Gtk.Label.New_With_Mnemonic, -- so underscores in the label indicate the mnemonic for the menu item. function Get_Type return Gtk.Gtk_Type; -- Return the internal value associated with a Gtk_Calendar. procedure Set_Active (Check_Menu_Item : access Gtk_Check_Menu_Item_Record; Is_Active : Boolean); function Get_Active (Check_Menu_Item : access Gtk_Check_Menu_Item_Record) return Boolean; -- Set the active state of the menu item's check box. procedure Set_Inconsistent (Check_Menu_Item : access Gtk_Check_Menu_Item_Record; Setting : Boolean); function Get_Inconsistent (Check_Menu_Item : access Gtk_Check_Menu_Item_Record) return Boolean; -- If the user has selected a range of elements (such as some text or -- spreadsheet cells) that are affected by a boolean setting, and the -- current values in that range are inconsistent, you may want to -- display the check in an "in between" state. This function turns on -- "in between" display. Normally you would turn off the inconsistent -- state again if the user explicitly selects a setting. This has to be -- done manually, Set_Inconsistent only affects visual appearance, it -- doesn't affect the semantics of the widget. procedure Set_Draw_As_Radio (Check_Menu_Item : access Gtk_Check_Menu_Item_Record; Draw_As_Radio : Boolean); function Get_Draw_As_Radio (Check_Menu_Item : access Gtk_Check_Menu_Item_Record) return Boolean; -- Sets whether Check_Menu_Item is drawn like a Radio_Menu_Item. procedure Toggled (Check_Menu_Item : access Gtk_Check_Menu_Item_Record); -- Emit the "toggled" signal. ---------------- -- Properties -- ---------------- -- -- The following properties are defined for this widget. See -- Glib.Properties for more information on properties. -- -- Name: Active_Property -- Type: Boolean -- Flags: read-write -- Descr: Whether the menu item is checked. -- See also: Set_Active and Get_Active -- -- Name: Inconsistent_Property -- Type: Boolean -- Flags: read-write -- Descr: Whether to display an "inconsistent" state. -- See also: Set_Inconsistent and Get_Inconsistent -- -- Name: Draw_As_Radio_Property -- Type: Boolean -- Descr: Whether the menu item looks like a radio menu item -- -- Active_Property : constant Glib.Properties.Property_Boolean; Inconsistent_Property : constant Glib.Properties.Property_Boolean; Draw_As_Radio_Property : constant Glib.Properties.Property_Boolean; ------------- -- Signals -- ------------- -- -- The following new signals are defined for this widget: -- - "toggled" -- procedure Handler -- (Check_Menu_Item : access Gtk_Check_Menu_Item_Record'Class); -- -- Emitted when the state of the check box is changed. -- A signal handler can call Get_Active to discover the new state. -- Signal_Toggled : constant Glib.Signal_Name := "toggled"; private type Gtk_Check_Menu_Item_Record is new Gtk.Menu_Item.Gtk_Menu_Item_Record with null record; Active_Property : constant Glib.Properties.Property_Boolean := Glib.Properties.Build ("active"); Inconsistent_Property : constant Glib.Properties.Property_Boolean := Glib.Properties.Build ("inconsistent"); Draw_As_Radio_Property : constant Glib.Properties.Property_Boolean := Glib.Properties.Build ("draw-as-radio"); pragma Import (C, Get_Type, "gtk_check_menu_item_get_type"); end Gtk.Check_Menu_Item; -- The following subprogram never had a binding, and is now obsolescent -- No binding: gtk_check_menu_item_set_show_toggle