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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cbattribut.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbattribut.tcl    /main/2   11 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. require "cbpropname.tcl"
  13.  
  14. require "cbpropcomp.tcl"
  15. require "cbproplabe.tcl"
  16. require "cbpropitem.tcl"
  17. # End user added include file section
  18.  
  19. require "cadfeature.tcl"
  20. require "cbcdmcomp.tcl"
  21. require "cbtlentry.tcl"
  22.  
  23. Class CBAttribute : {CBCDMComp CADFeature CBTLEntry} {
  24.     method destructor
  25.     constructor
  26.     method collectClasses
  27.     method collectWorkItems
  28.     method collectPropComps
  29.     method format
  30.     method getFilter
  31. }
  32.  
  33. method CBAttribute::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this CBCDMComp::destructor
  37.     $this CADFeature::destructor
  38.     $this CBTLEntry::destructor
  39. }
  40.  
  41. constructor CBAttribute {class this theClass row} {
  42.     set this [CADFeature::constructor $class $this $theClass $row]
  43.     set this [CBTLEntry::constructor $class $this $this]
  44.     set this [CBCDMComp::constructor $class $this $this]
  45.     return $this
  46. }
  47.  
  48. method CBAttribute::collectClasses {this classList} {
  49.     if {[[$this getClassBrowser] isInFlatViewMode]} {
  50.         $classList append [$this theClass]
  51.     }
  52.     $this CBCDMComp::collectClasses $classList
  53. }
  54.  
  55. method CBAttribute::collectWorkItems {this workItemList} {
  56.     if {[[$this getClassBrowser] isInFlatViewMode]} {
  57.         [$this theClass] collectWorkItems $workItemList
  58.     }
  59.     $this CBCDMComp::collectWorkItems $workItemList
  60. }
  61.  
  62. method CBAttribute::collectPropComps {this propCompList} {
  63.     if {[[$this getClassBrowser] isInFlatViewMode]} {
  64.         [$this theClass] collectPropComps $propCompList
  65.     }
  66.     $this CBCDMComp::collectPropComps $propCompList
  67. }
  68.  
  69. method CBAttribute::format {this} {
  70.     set prefix ""
  71.     if {[[$this getClassBrowser] isInFlatViewMode]} {
  72.         set prefix "[[$this theClass] name]: "
  73.     }
  74.     if {[$this formattedText] != ""} {
  75.         return $prefix[$this formattedText]
  76.     }
  77.  
  78.     set result ""
  79.  
  80.     set isClassFeature [[$this row] getPropertyValue $COMP_CLASS_ATTR]
  81.     if {$isClassFeature == "1"} {
  82.         set result "${result}\$"
  83.     }
  84.  
  85.     set isDerived [[$this row] getPropertyValue $COMP_DERIVED_ATTR]
  86.     if {$isDerived == "1"} {
  87.         set result "${result}/"
  88.     }
  89.  
  90.     set isKey [[$this row] getPropertyValue $COMP_KEY]
  91.     if {$isKey == "1"} {
  92.         set result "${result}*"
  93.     }
  94.  
  95.     set result "${result}[$this name]"
  96.     if {[$this type] != ""} {
  97.         set result "${result}: [$this type]"
  98.     }
  99.  
  100.     set initialValue [[$this row] getPropertyValue $COMP_INITIAL_VALUE]
  101.     if {$initialValue != ""} {
  102.         set result "${result} = $initialValue"
  103.     }
  104.  
  105.     $this formattedText $result
  106.     return $prefix$result
  107. }
  108.  
  109. method CBAttribute::getFilter {this} {
  110.     return ${ClassBrowser::attrFilter}
  111. }
  112.  
  113. # Do not delete this line -- regeneration end marker
  114.  
  115.