Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::actiongroup(3) [suse man page]

Gtk2::ActionGroup(3)					User Contributed Perl Documentation				      Gtk2::ActionGroup(3)

NAME
Gtk2::ActionGroup NOTE: Translation In C, gtk+'s action groups can use the translation domain to ensure that action labels and tooltips are translated along with the rest of the app. However, the translation function was not available for calling by the Perl bindings until gtk+ 2.6; that is, setting the translation domain had no effect. Translation of action groups is supported in Perl as of Gtk2 1.080 using gtk+ 2.6.0 or later. HIERARCHY
Glib::Object +----Gtk2::ActionGroup INTERFACES
Gtk2::Buildable METHODS
actiongroup = Gtk2::ActionGroup->new ($name) o $name (string) action = $action_group->get_action ($action_name) o $action_name (string) $action_group->add_action ($action) o $action (Gtk2::Action) $action_group->add_action_with_accel ($action, $accelerator) o $action (Gtk2::Action) o $accelerator (string or undef) $action_group->add_actions ($action_entries, $user_data=undef) o $action_entries (scalar) o $user_data (scalar) $action_group->add_radio_actions ($radio_action_entries, $value, $on_change, $user_data=undef) o $radio_action_entries (scalar) o $value (integer) o $on_change (scalar) o $user_data (scalar) $action_group->add_toggle_actions ($toggle_action_entries, $user_data=undef) o $toggle_action_entries (scalar) o $user_data (scalar) list = $action_group->list_actions string = $action_group->get_name $action_group->remove_action ($action) o $action (Gtk2::Action) boolean = $action_group->get_sensitive $action_group->set_sensitive ($sensitive) o $sensitive (boolean) $action_group->set_translate_func ($func, $data=undef) o $func (scalar) o $data (scalar) Since: gtk+ 2.6 string = $action_group->translate_string ($string) o $string (string) Since: gtk+ 2.6 $action_group->set_translation_domain ($domain) o $domain (string) boolean = $action_group->get_visible $action_group->set_visible ($sensitive) o $sensitive (boolean) PROPERTIES
'name' (string : readable / writable / construct-only / private) A name for the action group. 'sensitive' (boolean : readable / writable / private) Whether the action group is enabled. 'visible' (boolean : readable / writable / private) Whether the action group is visible. SIGNALS
connect-proxy (Gtk2::ActionGroup, Gtk2::Action, Gtk2::Widget) disconnect-proxy (Gtk2::ActionGroup, Gtk2::Action, Gtk2::Widget) pre-activate (Gtk2::ActionGroup, Gtk2::Action) post-activate (Gtk2::ActionGroup, Gtk2::Action) SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::ActionGroup(3)

Check Out this Related Man Page

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

NAME
Gtk2::Clipboard - wrapper for GtkClipboard HIERARCHY
Glib::Object +----Gtk2::Clipboard METHODS
$clipboard->set_can_store (...) o ... (list) of Gtk2::TargetEntry's Since: gtk+ 2.6 $clipboard->clear display = $clipboard->get_display Since: gtk+ 2.2 clipboard = Gtk2::Clipboard->get_for_display ($display, $selection) o $display (Gtk2::Gdk::Display) o $selection (Gtk2::Gdk::Atom) Since: gtk+ 2.2 clipboard = Gtk2::Clipboard->get ($selection) o $selection (Gtk2::Gdk::Atom) $clipboard->set_image ($pixbuf) o $pixbuf (Gtk2::Gdk::Pixbuf) Since: gtk+ 2.6 object = $clipboard->get_owner $clipboard->request_contents ($target, $callback, $user_data=undef) o $target (Gtk2::Gdk::Atom) o $callback (scalar) o $user_data (scalar) $clipboard->request_image ($callback, $user_data=undef) o $callback (scalar) o $user_data (scalar) Since: gtk+ 2.6 $clipboard->request_rich_text ($buffer, $callback, $user_data=undef) o $buffer (Gtk2::TextBuffer) o $callback (scalar) o $user_data (scalar) Since: gtk+ 2.10 $clipboard->request_targets ($callback, $user_data=undef) o $callback (scalar) o $user_data (scalar) Since: gtk+ 2.4 $clipboard->request_text ($callback, $user_data=undef) o $callback (scalar) o $user_data (scalar) $clipboard->request_uris ($func, $data=undef) o $func (scalar) o $data (scalar) Since: gtk+ 2.14 $clipboard->store Since: gtk+ 2.6 $clipboard->set_text ($text) o $text (string) selectiondata or undef = $clipboard->wait_for_contents ($target) o $target (Gtk2::Gdk::Atom) pixbuf or undef = $clipboard->wait_for_image Since: gtk+ 2.6 list = $clipboard->wait_for_rich_text ($buffer) o $buffer (Gtk2::TextBuffer) Since: gtk+ 2.10 list = $clipboard->wait_for_targets Returns a list of GdkAtom's. Since: gtk+ 2.4 string = $clipboard->wait_for_text scalar = $clipboard->wait_for_uris Since: gtk+ 2.14 boolean = $clipboard->wait_is_image_available Since: gtk+ 2.6 boolean = $clipboard->wait_is_rich_text_available ($buffer) o $buffer (Gtk2::TextBuffer) Since: gtk+ 2.10 boolean = $clipboard->wait_is_target_available ($target) o $target (Gtk2::Gdk::Atom) Since: gtk+ 2.6 boolean = $clipboard->wait_is_text_available boolean = $clipboard->wait_is_uris_available Since: gtk+ 2.14 boolean = $clipboard->set_with_data ($get_func, $clear_func, $user_data, ...) o $get_func (scalar) o $clear_func (scalar) o $user_data (scalar) o ... (list) of Gtk2::TargetEntry's boolean = $clipboard->set_with_owner ($get_func, $clear_func, $owner, ...) o $get_func (scalar) o $clear_func (scalar) o $owner (Glib::Object) o ... (list) of Gtk2::TargetEntry's SIGNALS
owner-change (Gtk2::Clipboard, Gtk2::Gdk::Event) SEE ALSO
Gtk2, Glib::Object 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::Clipboard(3pm)
Man Page