home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / mnemonicbu.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  48 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)mnemonicbu.tcl    1.5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mnemonicbu.tcl    1.5   08 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class MnemonicButton : {DropDwnList} {
  16.     constructor
  17.     method destructor
  18.     method entrySet
  19. }
  20.  
  21. constructor MnemonicButton {class this name} {
  22.     set this [DropDwnList::constructor $class $this $name]
  23.     # Start constructor user section
  24.     $this rowCount 5
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method MnemonicButton::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32. }
  33.  
  34. method MnemonicButton::entrySet {this name} {
  35.  
  36.     set selection [$this selected]
  37.  
  38.     set list { " " }
  39.     for {set i 0} {$i < [string length $name]} {incr i} {
  40.         lappend list [string index $name $i]
  41.     }
  42.     $this DropDwnList::entrySet $list
  43.     $this selected $selection
  44. }
  45.  
  46. # Do not delete this line -- regeneration end marker
  47.  
  48.