Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::comboboxentry(3pm) [debian 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)

Check Out this Related Man Page

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

NAME
Gtk2::FontSelection HIERARCHY
Glib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Box +----Gtk2::VBox +----Gtk2::FontSelection INTERFACES
Glib::Object::_Unregistered::AtkImplementorIface Gtk2::Buildable Gtk2::Orientable METHODS
widget = Gtk2::FontSelection->new fontface = $fontsel->get_face Since: gtk+ 2.14 widget = $fontsel->get_face_list Since: gtk+ 2.14 fontfamily = $fontsel->get_family Since: gtk+ 2.14 widget = $fontsel->get_family_list Since: gtk+ 2.14 font = $fontsel->get_font string = $fontsel->get_font_name boolean = $fontsel->set_font_name ($fontname) o $fontname (string) widget = $fontsel->get_preview_entry Since: gtk+ 2.14 string = $fontsel->get_preview_text $fontsel->set_preview_text ($text) o $text (string) widget = $fontsel->get_size_entry Since: gtk+ 2.14 integer = $fontsel->get_size Since: gtk+ 2.14 widget = $fontsel->get_size_list Since: gtk+ 2.14 PROPERTIES
'font' (Gtk2::Gdk::Font : readable / private) The GdkFont that is currently selected 'font-name' (string : readable / writable / private) The string that represents this font 'preview-text' (string : readable / writable / private) The text to display in order to demonstrate the selected font SEE ALSO
Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Box, Gtk2::VBox 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::FontSelection(3)
Man Page