home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / namespace / menuCreator.tcl next >
Text File  |  2000-11-02  |  334b  |  24 lines

  1. # Beginnings of a dynamic menu generator. Not in use yet
  2.  
  3. class xuiMenu {
  4.     inherit xuiStructure
  5.     method addElement { xuiData {caller {}}}
  6. }
  7.  
  8. body xuiMenu::clone {} {
  9.    set clone [xuiMenu ::#auto]
  10.    copyClone $clone
  11.    return $clone
  12. }
  13.  
  14.  
  15.  
  16. body xuiMenu::addElement { xuiData {caller {}}} {
  17.     
  18.     
  19. }
  20.  
  21.  
  22.  
  23.  
  24.