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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)propifpage.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)propifpage.tcl    1.3   13 Mar 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "propifgrou.tcl"
  15.  
  16. Class PropIfPage : {PropIfGroup} {
  17.     method destructor
  18.     constructor
  19. }
  20.  
  21. method PropIfPage::destructor {this} {
  22.     # Start destructor user section
  23.     # End destructor user section
  24.     $this PropIfGroup::destructor
  25. }
  26.  
  27. constructor PropIfPage {class this guiParent propDef} {
  28.     set page [NoteBkPage new $guiParent.[$propDef name]Page \
  29.                  -label [$propDef longName]]
  30.     set this [PropIfGroup::constructor $class $this $page $propDef]
  31.     $this ifElement $page
  32.     return $this
  33. }
  34.  
  35. # Do not delete this line -- regeneration end marker
  36.  
  37.