----------------------------------------------------------------------- -- GtkAda - Ada95 binding for Gtk+/Gnome -- -- -- -- Copyright (C) 2006-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. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ----------------------------------------------------------------------- -- -- This package defines the base class for all items that can be added into -- a toolbar (see gtk-toolbar.ads). -- See also Gtk.Tool_Button (gtk-tool_button.ads). -- See also Gtk.Separator_Tool_Item (gtk-separator_tool_item). -- -- 2.8.17 -- Menus and Toolbars with Glib.Properties; with Gtk.Tool_Button; package Gtk.Toggle_Tool_Button is type Gtk_Toggle_Tool_Button_Record is new Gtk.Tool_Button.Gtk_Tool_Button_Record with null record; type Gtk_Toggle_Tool_Button is access all Gtk_Toggle_Tool_Button_Record'Class; procedure Gtk_New (Button : out Gtk_Toggle_Tool_Button); procedure Initialize (Button : access Gtk_Toggle_Tool_Button_Record'Class); -- Create or initialize a new toggle button procedure Gtk_New_From_Stock (Button : out Gtk_Toggle_Tool_Button; Stock_Id : String); procedure Initialize_From_Stock (Button : access Gtk_Toggle_Tool_Button_Record'Class; Stock_Id : String); -- Create or initialize a new toggle button that contains a text and image -- from a stock item. function Get_Type return GType; -- Internal type representing this class of widgets procedure Set_Active (Button : access Gtk_Toggle_Tool_Button_Record; Is_Active : Boolean); function Get_Active (Button : access Gtk_Toggle_Tool_Button_Record) return Boolean; -- Sets whether the button should be selected ------------- -- Signals -- ------------- -- -- The following new signals are defined for this widget: -- -- - "toggled" -- procedure Handler -- (Button : access Gtk_Toggle_Tool_Button_Record'Class); -- Emitted whenever the toggle button changes state -- -- Signal_Toggled : constant Glib.Signal_Name := "toggled"; ---------------- -- Properties -- ---------------- -- -- The following properties are defined for this widget. See -- Glib.Properties for more information on properties. -- -- Name: Active_Property -- Type: Boolean -- See : Set_Active / Get_Active -- -- Active_Property : constant Glib.Properties.Property_Boolean; private Active_Property : constant Glib.Properties.Property_Boolean := Glib.Properties.Build ("active"); pragma Import (C, Get_Type, "gtk_toggle_tool_button_get_type"); end Gtk.Toggle_Tool_Button;