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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)crsysdefdi.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)crsysdefdi.tcl    1.4   04 Apr 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "crfiledefd.tcl"
  15.  
  16. Class CrSysDefDialog : {CrFileDefDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor CrSysDefDialog {class this name} {
  26.     set this [CrFileDefDialog::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method CrSysDefDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this CrFileDefDialog::destructor
  36. }
  37.  
  38. method CrSysDefDialog::createInterface {this} {
  39.     $this CrFileDefDialog::createInterface
  40.     interface Label [$this dPage].sysL { text "System Name:" }
  41.     interface DropDwnComboBox [$this dPage].sysCB {
  42.         entrySet {}
  43.         rowCount 5
  44.     }
  45.  
  46.     [$this dPage].sysCB entrySet [[$this dPage].fileCB entrySet]
  47. }
  48.  
  49. method CrSysDefDialog::clearInterface {this} {
  50.     $this CrFileDefDialog::clearInterface
  51.     [$this dPage].sysCB text [lindex [[$this dPage].sysCB entrySet] 0]
  52. }
  53.  
  54. method CrSysDefDialog::fromInterface {this} {
  55.     $this CrFileDefDialog::fromInterface
  56.     [$this curObject] systemName [[$this dPage].sysCB text]
  57.     return ""
  58. }
  59.  
  60. method CrSysDefDialog::toInterface {this} {
  61.     $this CrFileDefDialog::toInterface
  62.     [$this dPage].sysCB text [[$this curObject] systemName]
  63.  
  64. }
  65.  
  66. # Do not delete this line -- regeneration end marker
  67.  
  68.