buttonbox.tcl
This file is part of Unifix BWidget Toolkit
Index of commands:
- ButtonBox::create
- ButtonBox::configure
- ButtonBox::cget
- ButtonBox::add
- ButtonBox::itemconfigure
- ButtonBox::itemcget
- ButtonBox::setfocus
- ButtonBox::invoke
- ButtonBox::index
- ButtonBox::_destroy
| ::ButtonBox::getbuttonstate | |
| Comments | ::ButtonBox::getbuttonstate -- Retrieve the state of a given button tag. Arguments: path the button box widget name tag the tag to modify Results: None. |
| Arguments | path tag |
| Used by | |
| Uses | |
proc ::ButtonBox::getbuttonstate {path tag} { |
|
| ::ButtonBox::gettags | |
| Comments | ::ButtonBox::gettags -- Return a list of all the tags on all the buttons in a buttonbox. Arguments: path the buttonbox to query. Results: taglist a list of tags on the buttons in the buttonbox |
| Arguments | path |
| Used by | |
| Uses | |
proc ::ButtonBox::gettags {path} { |
|
| ::ButtonBox::setbuttonstate | |
| Comments | ::ButtonBox::setbuttonstate -- Set the state of a given button tag. If this makes any buttons enable-able (ie, all of their tags are TRUE), enable them. Arguments: path the button box widget name tag the tag to modify state the new state of $tag (0 or 1) Results: None. |
| Arguments | path tag state |
| Used by | |
| Uses | |
proc ::ButtonBox::setbuttonstate {path tag state} { |
|
| ButtonBox | |
| Comments | |
| Arguments | |
| Used by | |
| Uses | |
namespace eval ButtonBox { |
|
| ButtonBox::_destroy | |
| Comments | Command ButtonBox::_destroy |
| Arguments | path |
| Used by | ButtonBox::create |
| Uses | Widget::destroy |
proc ButtonBox::_destroy { path } { |
|
| ButtonBox::add | |
| Comments | Command ButtonBox::add |
| Arguments | path args |
| Used by | Dialog::add |
| Uses | Widget::getoption Button::create |
proc ButtonBox::add { path args } { |
|
| ButtonBox::cget | |
| Comments | Command ButtonBox::cget |
| Arguments | path option |
| Used by | |
| Uses | Widget::cget |
proc ButtonBox::cget { path option } { |
|
| ButtonBox::configure | |
| Comments | Command ButtonBox::configure |
| Arguments | path args |
| Used by | |
| Uses | Widget::setoption Widget::hasChanged Widget::configure |
proc ButtonBox::configure { path args } { |
|
| ButtonBox::create | |
| Comments | Command ButtonBox::create |
| Arguments | path args |
| Used by | Dialog::create |
| Uses | Widget::getoption ButtonBox::_destroy Widget::init Widget::subcget |
proc ButtonBox::create { path args } { |
|
| ButtonBox::index | |
| Comments | Command ButtonBox::index |
| Arguments | path index |
| Used by | |
| Uses | Widget::getoption |
proc ButtonBox::index { path index } { |
|
| ButtonBox::invoke | |
| Comments | Command ButtonBox::invoke |
| Arguments | path index |
| Used by | Dialog::invoke |
| Uses | Button::invoke |
proc ButtonBox::invoke { path index } { |
|
| ButtonBox::itemcget | |
| Comments | Command ButtonBox::itemcget |
| Arguments | path index option |
| Used by | Dialog::itemcget |
| Uses | Button::cget |
proc ButtonBox::itemcget { path index option } { |
|
| ButtonBox::itemconfigure | |
| Comments | Command ButtonBox::itemconfigure |
| Arguments | path index args |
| Used by | Dialog::itemconfigure |
| Uses | Button::configure |
proc ButtonBox::itemconfigure { path index args } { |
|
| ButtonBox::setfocus | |
| Comments | Command ButtonBox::setfocus |
| Arguments | path index |
| Used by | Dialog::draw Dialog::setfocus |
| Uses | |
proc ButtonBox::setfocus { path index } { |
|