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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)clenablepa.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)clenablepa.tcl    /main/hindenburg/1   17 Sep 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cobrenable.tcl"
  15.  
  16. Class ClEnablePage : {CoBrEnablePage} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor ClEnablePage {class this name} {
  26.     set this [CoBrEnablePage::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method ClEnablePage::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this CoBrEnablePage::destructor
  36. }
  37.  
  38. method ClEnablePage::createInterface {this} {
  39.  
  40.     interface NamedGroup $this.NG { 
  41.         DlgColumn DC {
  42.             Label dummyLayoutLabel {}
  43.             Label dummyLayoutLabel {}
  44.             Label dummyLayoutLabel {}
  45.         } 
  46.     }
  47.     CoBrEnablePage::createInterface $this
  48. }
  49.  
  50. method ClEnablePage::clearInterface {this} {
  51.     CoBrEnablePage::clearInterface $this
  52. }
  53.  
  54. method ClEnablePage::fromInterface {this} {
  55.     CoBrEnablePage::fromInterface $this
  56. }
  57.  
  58. method ClEnablePage::toInterface {this key value} {
  59.     CoBrEnablePage::toInterface $this $key $value
  60. }
  61.  
  62. # Do not delete this line -- regeneration end marker
  63.  
  64.