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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cbpropcomp.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbpropcomp.tcl    1.4   31 Jan 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CBPropComponent : {GCObject} {
  16.     constructor
  17.     method destructor
  18.     method addLabel
  19.     method addPropLabel
  20.     method removePropLabel
  21.     attribute propLabelSet
  22.     attribute component
  23. }
  24.  
  25. constructor CBPropComponent {class this component} {
  26.     set this [GCObject::constructor $class $this]
  27.     $this component $component
  28.     $this propLabelSet [List new]
  29.     # Start constructor user section
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method CBPropComponent::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37. }
  38.  
  39. method CBPropComponent::addLabel {this label item workItem} {
  40.     if {$label == "" || [$label isNil]} {
  41.         return
  42.     }
  43.     set cbPropLabel [CBPropLabel new $label]
  44.     $this addPropLabel $cbPropLabel
  45.     $cbPropLabel addItem $item $workItem
  46. }
  47.  
  48. # Do not delete this line -- regeneration end marker
  49.  
  50. method CBPropComponent::addPropLabel {this newPropLabel} {
  51.     [$this propLabelSet] append $newPropLabel
  52.  
  53. }
  54.  
  55. method CBPropComponent::removePropLabel {this oldPropLabel} {
  56.     [$this propLabelSet] removeValue $oldPropLabel
  57. }
  58.  
  59.