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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)searchdefd.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)searchdefd.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 SearchDefDialog : {OpenDefDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor SearchDefDialog {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 SearchDefDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this OpenDefDialog::destructor
  36. }
  37.  
  38. method SearchDefDialog::createInterface {this} {
  39.     interface NoteBkPage $this.definitionNBP {
  40.         label Definition
  41.         DlgColumn DC {
  42.             Label nameL { text Name: }
  43.             SingleLineText nameSLT {}
  44.             DlgRow DR {
  45.                 DlgColumn flagsDC {
  46.                 Label flagsL { text "Decomposition Flags:" }
  47.                 TextList flagsTL {
  48.                     rowCount 5
  49.                     selectionPolicy MULTIPLE
  50.                 }
  51.                 }
  52.                 DlgColumn typesDC {
  53.                 Label typesL { text "Diagram Types:" }
  54.                 TextList typesTL {
  55.                     rowCount 5
  56.                     selectionPolicy MULTIPLE
  57.                 }
  58.                 }
  59.             }
  60.         }
  61.     }
  62.     $this dPage $this.definitionNBP.DC
  63.  
  64.     [$this dPage].DR.flagsDC.flagsTL entrySet {decompSystems
  65.         decompFiles decompComponents decompParents decompLeafs}
  66.     [$this dPage].DR.typesDC.typesTL entrySet \
  67.         [lsort [BrowserProcs::graphTypes]]
  68. }
  69.  
  70. method SearchDefDialog::clearInterface {this} {
  71.     $this OpenDefDialog::clearInterface
  72.     [$this dPage].DR.flagsDC.flagsTL selectedSet {}
  73.     [$this dPage].DR.typesDC.typesTL selectedSet {}
  74. }
  75.  
  76. method SearchDefDialog::fromInterface {this} {
  77.     [$this curObject] flags [[$this dPage].DR.flagsDC.flagsTL selectedSet]
  78.     [$this curObject] fileTypes \
  79.                 [[$this dPage].DR.typesDC.typesTL selectedSet]
  80.     return ""
  81. }
  82.  
  83. method SearchDefDialog::toInterface {this} {
  84.     [$this dPage].DR.flagsDC.flagsTL selectedSet [[$this curObject] flags]
  85.     [$this dPage].DR.typesDC.typesTL selectedSet \
  86.                         [[$this curObject] fileTypes]
  87. }
  88.  
  89. # Do not delete this line -- regeneration end marker
  90.  
  91.