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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)codpanel.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)codpanel.tcl    /main/titanic/1   22 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "extendedco.tcl"
  15.  
  16. Class CODPanel : {ExtendedControlPanel} {
  17.     constructor
  18.     method destructor
  19.     method updateArea
  20.     method createPanelExtension
  21.     attribute startStereoPanel
  22.     attribute endStereoPanel
  23. }
  24.  
  25. constructor CODPanel {class this name} {
  26.     set this [ExtendedControlPanel::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method CODPanel::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this ExtendedControlPanel::destructor
  36. }
  37.  
  38. method CODPanel::updateArea {this args} {
  39.     if {[llength $args] == 0} {
  40.         $this updateArea start
  41.         $this updateArea end
  42.         return
  43.     }
  44.  
  45.     set side [lindex $args 0]
  46.     set stereoType [[$this ${side}StereoPanel] selected]
  47.     case $stereoType in {
  48.         {no}    {set stereoType ""}
  49.         {asc}    {set stereoType association}
  50.         {prm}    {set stereoType parameter}
  51.         {loc}    {set stereoType local}
  52.         {glob}    {set stereoType global}
  53.     }
  54.     [$this _area] current[cap $side]StereoType $stereoType
  55. }
  56.  
  57. method CODPanel::createPanelExtension {this} {
  58.     DlgRow new $this.stereo
  59.     set entrySet {no asc prm loc glob self}
  60.     $this startStereoPanel [VerControlPanel new $this.stereo.start \
  61.         -entrySet $entrySet \
  62.         -tipSet {"No Link Start Stereotype" \
  63.              "Link Start Stereotype ½association╗" \
  64.              "Link Start Stereotype ½parameter╗" \
  65.              "Link Start Stereotype ½local╗" \
  66.              "Link Start Stereotype ½global╗" \
  67.              "Link Start Stereotype ½self╗"} \
  68.         -selected no \
  69.         -selectionChanged "$this updateArea start"
  70.     ]
  71.     $this endStereoPanel [VerControlPanel new $this.stereo.end \
  72.         -entrySet $entrySet \
  73.         -tipSet {"No Link End Stereotype" \
  74.              "Link End Stereotype ½association╗" \
  75.              "Link End Stereotype ½parameter╗" \
  76.              "Link End Stereotype ½local╗" \
  77.              "Link End Stereotype ½global╗" \
  78.              "Link End Stereotype ½self╗"} \
  79.         -selected no \
  80.         -selectionChanged "$this updateArea end"
  81.     ]
  82. }
  83.  
  84. # Do not delete this line -- regeneration end marker
  85.  
  86.