home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / crfiledefd.tcl < prev    next >
Text File  |  1997-07-16  |  3KB  |  94 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)crfiledefd.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)crfiledefd.tcl    /main/titanic/2   16 Jul 1997 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.     set diagTypes "\$diagType [lsort [concat [BrowserProcs::graphTypes]\
  67.         [BrowserProcs::matrixTypes]]]"
  68.     [$this dPage].typeDDL entrySet $diagTypes
  69. }
  70.  
  71. method CrFileDefDialog::clearInterface {this} {
  72.     set dPage [$this dPage]
  73.     $this OpenDefDialog::clearInterface
  74.     $dPage.qualCB text [lindex [$dPage.qualCB entrySet] 0]
  75.     $dPage.fileCB text [lindex [$dPage.fileCB entrySet] 0]
  76.     $dPage.typeDDL selected [lindex [$dPage.typeDDL entrySet] 0]
  77. }
  78.  
  79. method CrFileDefDialog::fromInterface {this} {
  80.     [$this curObject] fileType [[$this dPage].typeDDL selected]
  81.     [$this curObject] fileQualifier [[$this dPage].qualCB text]
  82.     [$this curObject] fileName [[$this dPage].fileCB text]
  83.     return ""
  84. }
  85.  
  86. method CrFileDefDialog::toInterface {this} {
  87.     [$this dPage].typeDDL selected [[$this curObject] fileType]
  88.     [$this dPage].qualCB text [[$this curObject] fileQualifier]
  89.     [$this dPage].fileCB text [[$this curObject] fileName]
  90. }
  91.  
  92. # Do not delete this line -- regeneration end marker
  93.  
  94.