• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/

Lines Matching +defs:Widget +defs:setoption

7 #     - Widget::tkinclude
8 # - Widget::bwinclude
9 # - Widget::declare
10 # - Widget::addmap
11 # - Widget::init
12 # - Widget::destroy
13 # - Widget::setoption
14 # - Widget::configure
15 # - Widget::cget
16 # - Widget::subcget
17 # - Widget::hasChanged
18 # - Widget::options
19 # - Widget::getArgument
20 # - Widget::getallwidgets
21 # - Widget::_get_tkwidget_options
22 # - Widget::_test_tkresource
23 # - Widget::_test_bwresource
24 # - Widget::_test_synonym
25 # - Widget::_test_string
26 # - Widget::_test_flag
27 # - Widget::_test_enum
28 # - Widget::_test_int
29 # - Widget::_test_boolean
31 # Each megawidget gets a namespace of the same name inside the Widget namespace
63 namespace eval Widget {
75 TkResource Widget::_test_tkresource
76 BwResource Widget::_test_bwresource
77 Enum Widget::_test_enum
78 Int Widget::_test_int
79 Boolean Widget::_test_boolean
80 String Widget::_test_string
81 Flag Widget::_test_flag
82 Synonym Widget::_test_synonym
83 Color Widget::_test_color
84 Padding Widget::_test_padding
92 # Command Widget::tkinclude
99 proc Widget::tkinclude { class tkwidget subpath args } {
199 # Command Widget::bwinclude
206 proc Widget::bwinclude { class subclass subpath args } {
312 # Command Widget::declare
315 proc Widget::declare { class optlist } {
415 proc Widget::define { class filename args } {
427 bind $class <Destroy> [list Widget::destroy %W]
434 proc Widget::create { class path {rename 1} } {
443 # Command Widget::addmap
445 proc Widget::addmap { class subclass subpath options } {
472 # Command Widget::syncoptions
474 proc Widget::syncoptions { class subclass subpath options } {
487 # Command Widget::init
489 proc Widget::init { class path options } {
589 # Command Widget::copyinit
591 proc Widget::copyinit { class templatepath path options } {
633 # Widget::parseArgs --
649 proc Widget::parseArgs {class options} {
667 Widget::_get_tkwidget_options [lindex [lindex $optdesc 3] 0]
682 # Widget::initFromODB --
695 proc Widget::initFromODB {class path options} {
756 # Command Widget::destroy
758 proc Widget::destroy { path } {
791 # Command Widget::configure
793 proc Widget::configure { path options } {
860 # Command Widget::cget
862 proc Widget::cget { path option } {
904 # Command Widget::subcget
906 proc Widget::subcget { path subwidget } {
924 # Command Widget::hasChanged
926 proc Widget::hasChanged { path option pvalue } {
932 set value [Widget::cget $path $option]
939 proc Widget::hasChangedX { path option args } {
956 # Command Widget::setoption
958 proc Widget::setoption { path option value } {
965 Widget::configure $path [list $option $value]
970 # Command Widget::getoption
972 proc Widget::getoption { path option } {
973 # set class $::Widget::_class($path)
977 return [Widget::cget $path $option]
980 # Widget::getMegawidgetOption --
993 proc Widget::getMegawidgetOption {path option} {
1000 # Widget::setMegawidgetOption --
1014 proc Widget::setMegawidgetOption {path option value} {
1022 # Command Widget::_get_window
1025 proc Widget::_get_window { class path } {
1036 # Command Widget::_get_configure
1040 proc Widget::_get_configure { path options } {
1100 # Command Widget::_configure_option
1102 proc Widget::_configure_option { option altopt } {
1127 # Command Widget::_get_tkwidget_options
1129 proc Widget::_get_tkwidget_options { tkwidget } {
1181 # Command Widget::_test_tkresource
1183 proc Widget::_test_tkresource { option value arg } {
1198 # Command Widget::_test_bwresource
1200 proc Widget::_test_bwresource { option value arg } {
1206 # Command Widget::_test_synonym
1208 proc Widget::_test_synonym { option value arg } {
1213 # Command Widget::_test_color
1215 proc Widget::_test_color { option value arg } {
1226 # Command Widget::_test_string
1228 proc Widget::_test_string { option value arg } {
1234 # Command Widget::_test_flag
1236 proc Widget::_test_flag { option value arg } {
1253 # Command Widget::_test_enum
1255 proc Widget::_test_enum { option value arg } {
1271 # Command Widget::_test_int
1273 proc Widget::_test_int { option value arg } {
1285 # Command Widget::_test_boolean
1287 proc Widget::_test_boolean { option value arg } {
1298 # Command Widget::_test_padding
1300 proc Widget::_test_padding { option values arg } {
1319 # Widget::_get_padding --
1324 # path Widget to get the options for.
1331 proc Widget::_get_padding { path option {index 0} } {
1332 set pad [Widget::cget $path $option]
1340 # Command Widget::focusNext
1341 # Same as tk_focusNext, but call Widget::focusOK
1343 proc Widget::focusNext { w } {
1386 # Command Widget::focusPrev
1389 # + Call Widget::focusOK instead of tk::focusOK
1391 proc Widget::focusPrev { w } {
1446 # Command Widget::focusOK
1449 proc Widget::focusOK { w } {
1490 proc Widget::traverseTo { w } {
1501 # Widget::varForOption --
1514 proc Widget::varForOption {path option} {
1524 set varname "::Widget::${class}::$path:opt($option)"
1528 # Widget::getVariable --
1539 proc Widget::getVariable { path varName {newVarName ""} } {
1546 # Widget::options --
1553 # path Widget to get the options for.
1558 proc Widget::options { path args } {
1576 # Widget::getOption --
1594 proc Widget::getOption { option default args } {
1597 set value [Widget::cget $widget $option]
1605 proc Widget::nextIndex { path node } {
1606 Widget::getVariable $path autoIndex
1612 proc Widget::exists { path } {
1618 proc Widget::theme {{bool {}}} {
1638 proc Widget::getArgument {args keystr arg} {
1650 proc Widget::getallwidgets {{w .}} {