home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / extendedco.tcl < prev    next >
Text File  |  1997-07-29  |  1KB  |  56 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)extendedco.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)extendedco.tcl    /main/titanic/3   29 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require "edcontrolp.tcl"
  13. # End user added include file section
  14.  
  15.  
  16. Class ExtendedControlPanel : {DlgColumn} {
  17.     constructor
  18.     method destructor
  19.     method area
  20.     method initialize
  21.     attribute _area
  22.     attribute symbPanel
  23. }
  24.  
  25. constructor ExtendedControlPanel {class this name} {
  26.     set this [DlgColumn::constructor $class $this $name]
  27.     # Start constructor user section
  28.     $this symbPanel [EdControlPanel new $this.symb]
  29.     $this config -horStretchFactor 0 -horShrinkFactor 0
  30.     HorSeparator new $this.sep
  31.         $this createPanelExtension
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method ExtendedControlPanel::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39. }
  40.  
  41. method ExtendedControlPanel::area {this ar} {
  42.     if {$ar == "-"} {
  43.         return [$this _area]
  44.     }
  45.     $this _area $ar
  46.     [$this symbPanel] area $ar
  47.     $this updateArea
  48. }
  49.  
  50. method ExtendedControlPanel::initialize {this edType} {
  51.     [$this symbPanel] selected Select
  52. }
  53.  
  54. # Do not delete this line -- regeneration end marker
  55.  
  56.