home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / gui / guiObject.tcl < prev    next >
Text File  |  2000-11-02  |  268b  |  13 lines

  1.  
  2. class guiObject {
  3.     variable state 1
  4.     protected variable subject
  5.     protected variable frame
  6.     method setSubject { newSubject  } { set subject $newSubject }
  7.     method sync {}
  8.     method enable {}
  9.     method disable {}
  10.     method queryState {}
  11. }
  12.  
  13.