Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Gtk2::Editable - wrapper for GtkEditable HIERARCHY
Glib::Interface +----Gtk2::Editable METHODS
string = $editable->get_chars ($start_pos, $end_pos) o $start_pos (integer) o $end_pos (integer) $editable->copy_clipboard $editable->cut_clipboard $editable->delete_selection $editable->delete_text ($start_pos, $end_pos) o $start_pos (integer) o $end_pos (integer) boolean = $editable->get_editable $editable->set_editable ($is_editable) o $is_editable (boolean) new_position = $editable->insert_text (new_text, position) o $new_text (string) o ... (list) $editable->paste_clipboard integer = $editable->get_position $editable->set_position ($position) o $position (integer) $editable->select_region ($start, $end) o $start (integer) o $end (integer) (start, end) = $editable->get_selection_bounds Returns integers, start and end. SIGNALS
changed (Gtk2::Editable) insert-text (Gtk2::Editable, string, integer, gpointer) delete-text (Gtk2::Editable, integer, integer) The "insert-text" signal handler can optionally alter the text to be inserted. It may o Return no values for no change. Be sure to end with an empty "return". sub my_insert_text_handler { my ($widget, $text, $len, $pos, $userdata) = @_; print "inserting '$text' at char position '$pos' "; return; # no values } o Return two values "($text, $pos)" which are the new text and character position. sub my_insert_text_handler { my ($widget, $text, $len, $pos, $userdata) = @_; return (uc($text), $pos); # force to upper case } o Return no values and modify the text in $_[1] and/or position in $_[3]. For example, sub my_insert_text_handler { $_[1] = uc($_[1]); # force to upper case $_[3] = 0; # force position to the start return; # no values } Note that currently in a Perl subclass of a "Gtk2::Editable" widget, a class closure (ie. class default signal handler) for "insert-text" does not work this way. It instead sees the C level "($text, $len, $pos_pointer)", where $pos_pointer is a machine address and cannot be used easily. Hopefully this will change in the future. A "signal_chain_from_overridden" with the args as passed works, but for anything else the suggestion is to use a "signal_connect" instead. SEE ALSO
Gtk2, Glib::Interface 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::Editable(3pm)

Check Out this Related Man Page

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

NAME
Gtk2::ComboBoxEntry - A text entry field with a dropdown list SYNOPSIS
# the easy way $combo_box_entry = Gtk2::ComboBoxEntry->new_text; foreach (qw(one two three four five)) { $combo_box_entry->append_text ($_); } # or the powerful way. there always has to be at least # one text column in the model, but you can have anything # else in it that you want, just like Gtk2::ComboBox. $combo_box_entry = Gtk2::ComboBoxEntry->new ($model, $text_index); # to mess with with entry directly, get the child: $current_text = $combo_box_entry->child->get_text; DESCRIPTION
A ComboBoxEntry is a widget that allows the user to choose from a list of valid choices or enter a different value. It is very similar to a ComboBox, but displays the selected value in an entry to allow modifying it. The ComboBoxEntry has a Gtk2::Entry as its child. To get or set the currently-displayed text, just manipulate the entry normally. HIERARCHY
Glib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Bin +----Gtk2::ComboBox +----Gtk2::ComboBoxEntry INTERFACES
Glib::Object::_Unregistered::AtkImplementorIface Gtk2::Buildable Gtk2::CellLayout Gtk2::CellEditable METHODS
$entry = Gtk2::ComboBoxEntry->new $entry = Gtk2::ComboBoxEntry->new ($model, $text_column) o $text_column (integer) o $model (Gtk2::TreeModel) widget = Gtk2::ComboBoxEntry->new_text Since: gtk+ 2.4 $entry = Gtk2::ComboBoxEntry->new_with_model ($model, $text_column) o $text_column (integer) o $model (Gtk2::TreeModel) Alias for new, with two arguments. integer = $entry_box->get_text_column $entry_box->set_text_column ($text_column) o $text_column (integer) PROPERTIES
'text-column' (integer : default -1 : readable / writable / private) A column in the data source model to get the strings from SEE ALSO
Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Bin, Gtk2::ComboBox 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::ComboBoxEntry(3pm)
Man Page