Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::toggleaction(3pm) [debian man page]

Gtk2::ToggleAction(3pm) 				User Contributed Perl Documentation				   Gtk2::ToggleAction(3pm)

NAME
Gtk2::ToggleAction - wrapper for GtkToggleAction SYNOPSIS
my $action = Gtk2::ToggleAction->new (name => 'one', tooltip => 'One'); DESCRIPTION
Note that "new" is the plain Glib::Object "new" (see Gtk2::Action). The name, label, tooltip and stock_id arguments of the C code "gtk_toggle_action_new()" can be given as key/value pairs, plus other property values like active or sensitive. HIERARCHY
Glib::Object +----Gtk2::Action +----Gtk2::ToggleAction INTERFACES
Gtk2::Buildable METHODS
boolean = $action->get_active $action->set_active ($is_active) o $is_active (boolean) boolean = $action->get_draw_as_radio $action->set_draw_as_radio ($draw_as_radio) o $draw_as_radio (boolean) $action->toggled PROPERTIES
'active' (boolean : default false : readable / writable / private) If the toggle action should be active in or not 'draw-as-radio' (boolean : default false : readable / writable / private) Whether the proxies for this action look like radio action proxies SIGNALS
toggled (Gtk2::ToggleAction) SEE ALSO
Gtk2, Glib::Object, Gtk2::Action COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::ToggleAction(3pm)

Check Out this Related Man Page

Gtk2::RadioAction(3pm)					User Contributed Perl Documentation				    Gtk2::RadioAction(3pm)

NAME
Gtk2::RadioAction - wrapper for GtkRadioAction SYNOPSIS
my $action = Gtk2::RadioAction->new (name => 'one', tooltip => 'One', value => 23); Note that the constructor slightly deviates from the convenience constructor in the C API. Instead of passing in a list of values for name, label, tooltip, stock-id and value, you just use key => value pairs like with Glib::Object::new. HIERARCHY
Glib::Object +----Gtk2::Action +----Gtk2::ToggleAction +----Gtk2::RadioAction INTERFACES
Gtk2::Buildable METHODS
integer = $action->get_current_value $action->set_current_value ($value) o $value (integer) Since: gtk+ 2.10 arrayref = $action->get_group $action->set_group ($member_or_listref) o $member_or_listref (scalar) PROPERTIES
'current-value' (integer : default 0 : readable / writable / private) The value property of the currently active member of the group to which this action belongs. 'group' (Gtk2::RadioAction : default undef : writable / private) The radio action whose group this action belongs to. 'value' (integer : default 0 : readable / writable / private) The value returned by gtk_radio_action_get_current_value() when this action is the current action of its group. SIGNALS
changed (Gtk2::RadioAction, Gtk2::RadioAction) SEE ALSO
Gtk2, Glib::Object, Gtk2::Action, Gtk2::ToggleAction COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::RadioAction(3pm)
Man Page