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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)ilcatsecti.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ilcatsecti.tcl    1.4   26 Oct 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require "ilcatconge.tcl"
  13. # End user added include file section
  14.  
  15. require "ilsection.tcl"
  16.  
  17. Class IlCatSection : {IlSection} {
  18.     constructor
  19.     method destructor
  20.     method promoter
  21.     method generateTypeContents
  22.     method contentsGenerator
  23.     attribute _contentsGenerator
  24. }
  25.  
  26. constructor IlCatSection {class this name document} {
  27.     set this [IlSection::constructor $class $this $name $document]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method IlCatSection::destructor {this} {
  34.     set ref [$this _contentsGenerator]
  35.     if {$ref != ""} {
  36.         $ref _section ""
  37.     }
  38.     # Start destructor user section
  39.     # End destructor user section
  40.     $this IlSection::destructor
  41. }
  42.  
  43. method IlCatSection::promoter {this document} {
  44.     $this extension sty
  45.     $this uiType Catalog
  46.     $this IlSection::promoter $document
  47.     global classCount
  48.     $this _contentsGenerator [IlCatConGen new IlCatConGen$classCount $this]
  49.     incr classCount
  50. }
  51.  
  52. method IlCatSection::generateTypeContents {this} {
  53.  
  54.     [$this contentsGenerator] generate
  55. }
  56.  
  57. # Do not delete this line -- regeneration end marker
  58.  
  59. method IlCatSection::contentsGenerator {this args} {
  60.     if {$args == ""} {
  61.         return [$this _contentsGenerator]
  62.     }
  63.     set ref [$this _contentsGenerator]
  64.     if {$ref != ""} {
  65.         $ref _section ""
  66.     }
  67.     set obj [lindex $args 0]
  68.     if {$obj != ""} {
  69.         $obj _section $this
  70.     }
  71.     $this _contentsGenerator $obj
  72. }
  73.  
  74.