NAME
Gtk2::Ex::ComboBoxBits -- misc Gtk2::ComboBox helpers
SYNOPSIS
use Gtk2::Ex::ComboBoxBits;
FUNCTIONS
Active Path
$path = Gtk2::Ex::ComboBoxBits::get_active_path ($combobox)-
Return a
Gtk2::TreePathto the active item in$combobox, orundefif empty or no model or nothing active. Gtk2::Ex::ComboBoxBits::set_active_path ($combobox, $path)-
Set the active item in
$comboboxto the givenGtk2::TreePathposition. If$pathis empty orundefor there's no such row in the model then$comboboxis set to nothing active.Some versions of ComboBox have a feature where if there's no model in
$comboboxthen a toplevel active item is remembered ready for a model set later. Not sure if that's documented, butset_active_pathtries to cooperate by usingset_activefor toplevels, andset_active_iterfor sub-rows (which don't get the same remembering).
Text Combos
The following are for use on a simplified "text" ComboBox as created by Gtk2::ComboBox->new_text().
$str = Gtk2::Ex::ComboBoxBits::set_active_text ($combobox, $str)-
$comboboxmust be a simplified "text" type ComboBox. Set the entry$stractive.The corresponding "get" is
$combobox->get_active_text(), see Gtk2::ComboBox. $iter = Gtk2::Ex::ComboBoxBits::find_text_iter ($combobox, $str)-
Return a
Gtk2::TreeIterwhich is the row for$strin a text style combobox. If$stris not in$comboboxthen returnundef.
EXPORTS
Nothing is exported by default, but the functions can be requested in usual Exporter style,
use Gtk2::Ex::ComboBoxBits 'set_active_text';
This can be handy if using set_active_text many times. Gtk2::Ex::ComboBox::Text imports it to use as an object method.
There's no :all tag since this module is meant as a grab-bag of functions and to import as-yet unknown things would be asking for name clashes.
HOME PAGE
http://user42.tuxfamily.org/gtk2-ex-comboboxbits/index.html
LICENSE
Copyright 2010, 2011 Kevin Ryde
Gtk2-Ex-ComboBoxBits is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Gtk2-Ex-ComboBoxBits is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Gtk2-Ex-ComboBoxBits. If not, see http://www.gnu.org/licenses/.