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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbcdmcomp.tcl    1.5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbcdmcomp.tcl    1.5   20 Feb 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CBCDMComp : {Object} {
  16.     constructor
  17.     method destructor
  18.     method collectClasses
  19.     method collectPropComps
  20.     method collectWorkItems
  21. }
  22.  
  23. constructor CBCDMComp {class this name} {
  24.     set this [Object::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CBCDMComp::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33. }
  34.  
  35. method CBCDMComp::collectClasses {this classList} {
  36.     if {[$this type] == ""} {
  37.         return
  38.     }
  39.     set class [$classBrowser getCBClass [$this getTypeItem]]
  40.     if {$class != ""} {
  41.         $classList append $class
  42.     }
  43. }
  44.  
  45. method CBCDMComp::collectPropComps {this propCompList} {
  46.     set cbPropComp [CBPropComponent new [$this getMatrixComponent]]
  47.     $propCompList addPropComponent $cbPropComp
  48.  
  49.     $cbPropComp addLabel [$this getNameTypeLabel] [$this getNameItem] \
  50.         [$this getNameWorkItem]
  51.     $cbPropComp addLabel [$this getNameTypeLabel] [$this getTypeItem] \
  52.         [$this getTypeWorkItem]
  53. }
  54.  
  55. method CBCDMComp::collectWorkItems {this workItemList} {
  56.     set workItem [$this getNameWorkItem]
  57.     if {![$workItem isNil]} {
  58.         $workItemList append $workItem
  59.     }
  60.     set workItem [$this getTypeWorkItem]
  61.     if {![$workItem isNil]} {
  62.         $workItemList append $workItem
  63.     }
  64. }
  65.  
  66. # Do not delete this line -- regeneration end marker
  67.  
  68.