combobox.tcl
This file is part of Unifix BWidget Toolkit
$Id: combobox.tcl,v 1.20 2002/10/14 20:54:01 hobbs Exp $
Index of commands:
- ComboBox::create
- ComboBox::configure
- ComboBox::cget
- ComboBox::setvalue
- ComboBox::getvalue
- ComboBox::_create_popup
- ComboBox::_mapliste
- ComboBox::_unmapliste
- ComboBox::_select
- ComboBox::_modify_value
| ComboBox | |
| Comments | ComboBox uses the 8.3 -listvariable listbox option |
| Arguments | |
| Used by | |
| Uses | |
namespace eval ComboBox { |
|
| ComboBox::_create_popup | |
| Comments | Command ComboBox::_create_popup |
| Arguments | path |
| Used by | |
| Uses | Widget::cget Widget::varForOption |
proc ComboBox::_create_popup { path } { |
|
| ComboBox::_focus_in | |
| Comments | Command ComboBox::_focus_in |
| Arguments | path |
| Used by | |
| Uses | Entry::cget Widget::cget |
proc ComboBox::_focus_in { path } { |
|
| ComboBox::_focus_out | |
| Comments | Command ComboBox::_focus_out |
| Arguments | path |
| Used by | |
| Uses | Widget::cget |
proc ComboBox::_focus_out { path } { |
|
| ComboBox::_mapliste | |
| Comments | Command ComboBox::_mapliste |
| Arguments | path |
| Used by | |
| Uses | Widget::getMegawidgetOption BWidget::focus Entry::cget ArrowButton::configure BWidget::grab Widget::cget BWidget::place |
proc ComboBox::_mapliste { path } { |
|
| ComboBox::_modify_value | |
| Comments | Command ComboBox::_modify_value |
| Arguments | path direction |
| Used by | |
| Uses | Widget::getMegawidgetOption |
proc ComboBox::_modify_value { path direction } { |
|
| ComboBox::_select | |
| Comments | Command ComboBox::_select |
| Arguments | path index |
| Used by | |
| Uses | Widget::getMegawidgetOption |
proc ComboBox::_select { path index } { |
|
| ComboBox::_unmapliste | |
| Comments | Command ComboBox::_unmapliste |
| Arguments | path |
| Used by | |
| Uses | BWidget::grab ArrowButton::configure BWidget::focus |
proc ComboBox::_unmapliste { path } { |
|
| ComboBox::bind | |
| Comments | Command ComboBox::bind |
| Arguments | path args |
| Used by | |
| Uses | |
proc ComboBox::bind { path args } { |
|
| ComboBox::cget | |
| Comments | Command ComboBox::cget |
| Arguments | path option |
| Used by | |
| Uses | Widget::cget |
proc ComboBox::cget { path option } { |
|
| ComboBox::configure | |
| Comments | ComboBox::configure -- Configure subcommand for ComboBox widgets. Works like regular widget configure command. Arguments: path Name of the ComboBox widget. args Additional optional arguments: ?-option? ?-option value ...? Results: Depends on arguments. If no arguments are given, returns a complete list of configuration information. If one argument is given, returns the configuration information for that option. If more than one argument is given, returns nothing. |
| Arguments | path args |
| Used by | SelectFont::configure |
| Uses | Widget::cget Widget::hasChangedX Entry::configure Widget::configure |
proc ComboBox::configure { path args } { |
|
| ComboBox::create | |
| Comments | ComboBox::create -- Create a combobox widget with the given options. Arguments: path name of the new widget. args optional arguments to the widget. Results: path name of the new widget. |
| Arguments | path args |
| Used by | SelectFont::create |
| Uses | Widget::cget ArrowButton::create Widget::initFromODB Entry::configure Entry::create Widget::parseArgs |
proc ComboBox::create { path args } { |
|
| ComboBox::getvalue | |
| Comments | Command ComboBox::getvalue |
| Arguments | path |
| Used by | |
| Uses | Widget::getMegawidgetOption Entry::cget |
proc ComboBox::getvalue { path } { |
|
| ComboBox::setvalue | |
| Comments | Command ComboBox::setvalue |
| Arguments | path index |
| Used by | |
| Uses | Entry::cget Entry::configure Widget::getMegawidgetOption |
proc ComboBox::setvalue { path index } { |
|