options.tcl

来自「这是一个Linux下的集成开发环境」· TCL 代码 · 共 18 行

TCL
18
字号
proc About {} {    return "Testing the option configuration of the Tix widgets"}proc Test {} {    test {tixComboBox .c -xxxxx} 	{missing}    test {tixComboBox .c -xxxxx xxx} 	{unknown}    test {tixComboBox .c -d xxx} 	{ambi}    test {tixComboBox .c -disab 0}	{ambi}     test {tixComboBox .c -disablecal 0}    Assert {[.c cget -disablecallback] == 0}    Assert {[.c cget -disableca] == 0}    test {tixComboBox .d -histl 10}     Assert {[.d cget -histlimit] == 10}    Assert {[.d cget -histlim] == 10}    Assert {[.d cget -historylimit] == 10}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?