Lines Matching refs:lb
227 proc putList { lb aList } {
229 $lb insert end $e
233 proc getList { lb } {
234 $lb get 0 end
242 proc checkList { lb prg } {
244 set lst [getList $lb]
254 proc appendList { lb prg } {
256 if { [checkList $lb $prg] == 0 } {
257 $lb insert end $prg
261 proc deleteList { lb prg } {
263 set lst [getList $lb]
267 $lb delete $cnt
489 proc execWrap { pw lb dlg prg enc } {
538 if { [checkList $lb $prgName] == 0 } {
539 appendList $lb $prgName
541 saveList [getList $lb]
545 proc execUnwrap { pw lb dlg prg } {
559 if { [checkList $lb $prgName] == 1 } {
562 deleteList $lb $prgName
563 saveList [getList $lb]
620 proc confWrap { pw lb } {
624 set idx [$lb curselection]
626 set prg [$lb get $idx]
686 -command [list execWrap $pw $lb $top $w_prgname $w_encname]
695 proc confUnwrap { pw lb } {
697 set idx [$lb curselection]
705 set prg [$lb get $idx]
740 -command [list execUnwrap $pw $lb $top $w_prgname]
751 proc unwrapAll {pw lb} {
759 foreach prog [$lb get 0 end] {
765 foreach prog [$lb get 0 end] {
782 $lb delete 0 end
786 proc rewrapAll {pw lb} {
793 foreach prog [$lb get 0 end] {