Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

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 : 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-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::ComboBoxEntry(3)

Check Out this Related Man Page

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

NAME
Gtk2::ListItem DESCRIPTION
Gtk2::ListItem is the widget used for each item in a Gtk2::List. Gtk2::List and Gtk2::ListItem are deprecated; use Gtk2::TreeView and a Gtk2::ListStore instead. Gtk2::ListItem is included in Gtk2-Perl only because Gtk2::Combo contains a Gtk2::List, and Gtk2::Combo's replacement, Gtk2::ComboBox, didn't appear in gtk+ until 2.4.0. HIERARCHY
Glib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Bin +----Gtk2::Item +----Gtk2::ListItem INTERFACES
Glib::Object::_Unregistered::AtkImplementorIface Gtk2::Buildable METHODS
widget = Gtk2::ListItem->new ($label=undef) o $label (string) widget = Gtk2::ListItem->new_with_label ($label=undef) o $label (string) $list_item->deselect $list_item->select SIGNALS
select-all (Gtk2::ListItem) unselect-all (Gtk2::ListItem) toggle-focus-row (Gtk2::ListItem) undo-selection (Gtk2::ListItem) start-selection (Gtk2::ListItem) end-selection (Gtk2::ListItem) toggle-add-mode (Gtk2::ListItem) extend-selection (Gtk2::ListItem, Gtk2::ScrollType, Glib::Float, boolean) scroll-vertical (Gtk2::ListItem, Gtk2::ScrollType, Glib::Float) scroll-horizontal (Gtk2::ListItem, Gtk2::ScrollType, Glib::Float) ENUMS AND FLAGS
enum Gtk2::ScrollType o 'none' / 'GTK_SCROLL_NONE' o 'jump' / 'GTK_SCROLL_JUMP' o 'step-backward' / 'GTK_SCROLL_STEP_BACKWARD' o 'step-forward' / 'GTK_SCROLL_STEP_FORWARD' o 'page-backward' / 'GTK_SCROLL_PAGE_BACKWARD' o 'page-forward' / 'GTK_SCROLL_PAGE_FORWARD' o 'step-up' / 'GTK_SCROLL_STEP_UP' o 'step-down' / 'GTK_SCROLL_STEP_DOWN' o 'page-up' / 'GTK_SCROLL_PAGE_UP' o 'page-down' / 'GTK_SCROLL_PAGE_DOWN' o 'step-left' / 'GTK_SCROLL_STEP_LEFT' o 'step-right' / 'GTK_SCROLL_STEP_RIGHT' o 'page-left' / 'GTK_SCROLL_PAGE_LEFT' o 'page-right' / 'GTK_SCROLL_PAGE_RIGHT' o 'start' / 'GTK_SCROLL_START' o 'end' / 'GTK_SCROLL_END' SEE ALSO
Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Bin, Gtk2::Item 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::ListItem(3)
Man Page