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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cclassuiob.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cclassuiob.tcl    1.7   26 Jan 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "browsuiobj.tcl"
  15.  
  16. Class CClassUiObj : {BrowsUiObj} {
  17.     constructor
  18.     method destructor
  19.     method controlledClasses
  20.     method initializeInfo
  21. }
  22.  
  23. global CClassUiObj::uiClass
  24. set CClassUiObj::uiClass "ControlledClasses"
  25.  
  26.  
  27. constructor CClassUiObj {class this name} {
  28.     set this [BrowsUiObj::constructor $class $this $name]
  29.     # Start constructor user section
  30.  
  31.     $this uiName "<controlled classes>"
  32.     $this uiText "controlled classes"
  33.  
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method CClassUiObj::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41.     $this BrowsUiObj::destructor
  42. }
  43.  
  44. proc CClassUiObj::associations {} {
  45.     return {controlledClasses}
  46. }
  47.  
  48. proc CClassUiObj::childTypes {assoc} {
  49.     if {[lsearch -exact "[CClassUiObj::associations]" "$assoc"] == -1} {
  50.     return ""
  51.     }
  52.     return "[BrowserProcs::childTypes $assoc]"
  53. }
  54.  
  55. method CClassUiObj::controlledClasses {this} {
  56.     return [[$this parent] controlledClasses]
  57. }
  58.  
  59. proc CClassUiObj::infoProperties {} {
  60.     return [BrowserProcs::infoProperties]
  61. }
  62.  
  63. method CClassUiObj::initializeInfo {this dummy} {
  64.     $this BrowsUiObj::initializeInfo $dummy
  65.     $this setInfo Text "[$this uiText] of [[$this parent] getInfo Text]"
  66. }
  67.  
  68. # Do not delete this line -- regeneration end marker
  69.  
  70.