Added -window_days setting to Scheduler
[tcl-tlc-base.git] / scripts / var_domino.itcl
blob31214aac4ea3b2370b38e7303fb7483a7bb9769c
1 # vim: foldmarker=<<<,>>>
3 class tlc::Vardomino {
4 inherit tlc::Domino
6 constructor {accessvar args} {
7 upvar $accessvar scopevar
8 tlc::Domino::constructor scopevar
9 } {}
10 destructor {}
12 public {
13 variable textvariable ""
16 private {
17 variable old_textvariable ""
22 configbody tlc::Vardomino::textvariable { #<<<
23 if {$old_textvariable ne ""} {
24 trace vdelete $old_textvariable wu [code $this tip]
26 if {$textvariable ne ""} {
27 trace variable $textvariable wu [code $this tip]
28 set old_textvariable $textvariable
30 tip
33 #>>>
34 body tlc::Vardomino::constructor {accessvar args} { #<<<
35 configure {*}$args
38 #>>>
39 body tlc::Vardomino::destructor {} { #<<<
40 trace vdelete $textvariable wu [code $this tip]
43 #>>>