home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / crfiledefd.tcl < prev    next >
Text File  |  1996-08-27  |  3KB  |  92 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)crfiledefd.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)crfiledefd.tcl    /main/hindenburg/1   27 Aug 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "opendefdia.tcl"
  15.  
  16. Class CrFileDefDialog : {OpenDefDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor CrFileDefDialog {class this name} {
  26.     set this [OpenDefDialog::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method CrFileDefDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this OpenDefDialog::destructor
  36. }
  37.  
  38. method CrFileDefDialog::createInterface {this} {
  39.     interface NoteBkPage $this.definitionNBP {
  40.         label Definition
  41.         DlgColumn DC {
  42.             Label nameL { text Name: }
  43.             SingleLineText nameSLT {}
  44.             Label qualL { text "Diagram Qualifier:" }
  45.             DropDwnComboBox qualCB {
  46.                 entrySet {}
  47.                 rowCount 5
  48.             }
  49.             Label fileL { text "Diagram Name:" }
  50.             DropDwnComboBox fileCB {
  51.                 entrySet {}
  52.                 rowCount 5
  53.             }
  54.             Label typeL { text "Diagram Type:" }
  55.             DropDwnList typeDDL {
  56.                 entrySet {}
  57.                 rowCount 5
  58.             }
  59.         }
  60.     }
  61.     $this dPage $this.definitionNBP.DC
  62.  
  63.     [$this dPage].qualCB entrySet {{} $item $itemQual $diagItem $diagQual}
  64.     [$this dPage].fileCB entrySet \
  65.         {$itemName $itemQualName $diagName $diagQualName $dataType}
  66.     [$this dPage].typeDDL entrySet {$diagType cad ccd dfd etd mgd std ucd}
  67. }
  68.  
  69. method CrFileDefDialog::clearInterface {this} {
  70.     set dPage [$this dPage]
  71.     $this OpenDefDialog::clearInterface
  72.     $dPage.qualCB text [lindex [$dPage.qualCB entrySet] 0]
  73.     $dPage.fileCB text [lindex [$dPage.fileCB entrySet] 0]
  74.     $dPage.typeDDL selected [lindex [$dPage.typeDDL entrySet] 0]
  75. }
  76.  
  77. method CrFileDefDialog::fromInterface {this} {
  78.     [$this curObject] fileType [[$this dPage].typeDDL selected]
  79.     [$this curObject] fileQualifier [[$this dPage].qualCB text]
  80.     [$this curObject] fileName [[$this dPage].fileCB text]
  81.     return ""
  82. }
  83.  
  84. method CrFileDefDialog::toInterface {this} {
  85.     [$this dPage].typeDDL selected [[$this curObject] fileType]
  86.     [$this dPage].qualCB text [[$this curObject] fileQualifier]
  87.     [$this dPage].fileCB text [[$this curObject] fileName]
  88. }
  89.  
  90. # Do not delete this line -- regeneration end marker
  91.  
  92.