spinbox.tcl --
BWidget SpinBox implementation.
Copyright (c) 1999 by Unifix
Copyright (c) 2000 by Ajuba Solutions
All rights reserved.
RCS: @(#) $Id: spinbox.tcl,v 1.10 2000/05/30 23:44:46 ericm Exp $
Index of commands:
- SpinBox::create
- SpinBox::configure
- SpinBox::cget
- SpinBox::setvalue
- SpinBox::_destroy
- SpinBox::_modify_value
- SpinBox::_test_options
| SpinBox | |
| Comments | |
| Arguments | |
| Used by | |
| Uses | |
namespace eval SpinBox { |
|
| SpinBox::_destroy | |
| Comments | Command SpinBox::_destroy |
| Arguments | path |
| Used by | |
| Uses | Widget::destroy |
proc SpinBox::_destroy { path } { |
|
| SpinBox::_modify_value | |
| Comments | Command SpinBox::_modify_value |
| Arguments | path direction reason |
| Used by | |
| Uses | Widget::getMegawidgetOption SpinBox::setvalue |
proc SpinBox::_modify_value { path direction reason } { |
|
| SpinBox::_test_options | |
| Comments | Command SpinBox::_test_options |
| Arguments | path |
| Used by | |
| Uses | Widget::setMegawidgetOption Widget::getMegawidgetOption |
proc SpinBox::_test_options { path } { |
|
| SpinBox::bind | |
| Comments | Command SpinBox::bind |
| Arguments | path args |
| Used by | |
| Uses | |
proc SpinBox::bind { path args } { |
|
| SpinBox::cget | |
| Comments | Command SpinBox::cget |
| Arguments | path option |
| Used by | |
| Uses | Widget::cget |
proc SpinBox::cget { path option } { |
|
| SpinBox::configure | |
| Comments | Command SpinBox::configure |
| Arguments | path args |
| Used by | |
| Uses | Widget::hasChangedX Widget::configure |
proc SpinBox::configure { path args } { |
|
| SpinBox::create | |
| Comments | Command SpinBox::create |
| Arguments | path args |
| Used by | |
| Uses | Entry::cget Widget::parseArgs Entry::configure ArrowButton::create Widget::initFromODB Entry::create |
proc SpinBox::create { path args } { |
|
| SpinBox::getvalue | |
| Comments | Command SpinBox::getvalue |
| Arguments | path |
| Used by | |
| Uses | Entry::cget Widget::getMegawidgetOption |
proc SpinBox::getvalue { path } { |
|
| SpinBox::setvalue | |
| Comments | Command SpinBox::setvalue |
| Arguments | path index |
| Used by | SpinBox::_modify_value |
| Uses | Entry::configure Entry::cget Widget::getMegawidgetOption |
proc SpinBox::setvalue { path index } { |
|