home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / cbproplabe.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  58 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cbproplabe.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbproplabe.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 CBPropLabel : {GCObject} {
  16.     constructor
  17.     method destructor
  18.     method addItem
  19.     method addPropItem
  20.     method removePropItem
  21.     attribute propItemSet
  22.     attribute label
  23. }
  24.  
  25. constructor CBPropLabel {class this label} {
  26.     set this [GCObject::constructor $class $this]
  27.     $this label $label
  28.     $this propItemSet [List new]
  29.     # Start constructor user section
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method CBPropLabel::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37. }
  38.  
  39. method CBPropLabel::addItem {this item workItem} {
  40.     if {$item == "" || [$item isNil]} {
  41.         return
  42.     }
  43.     set cbPropItem [CBPropItem new $item $workItem]
  44.     $this addPropItem $cbPropItem
  45. }
  46.  
  47. # Do not delete this line -- regeneration end marker
  48.  
  49. method CBPropLabel::addPropItem {this newPropItem} {
  50.     [$this propItemSet] append $newPropItem
  51.  
  52. }
  53.  
  54. method CBPropLabel::removePropItem {this oldPropItem} {
  55.     [$this propItemSet] removeValue $oldPropItem
  56. }
  57.  
  58.