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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)clenablepa.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)clenablepa.tcl    /main/titanic/4   10 Oct 1997 Copyright 1997 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 sensitive
  22.     method fromInterface
  23.     method toInterface
  24. }
  25.  
  26. constructor ClEnablePage {class this name} {
  27.     set this [CoBrEnablePage::constructor $class $this $name]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method ClEnablePage::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this CoBrEnablePage::destructor
  37. }
  38.  
  39. method ClEnablePage::createInterface {this} {
  40.  
  41.     interface NamedGroup $this.NG { 
  42.         DlgColumn DC {
  43.             Label dummyLayoutLabel {}
  44.             Label dummyLayoutLabel {}
  45.             Label dummyLayoutLabel {}
  46.         } 
  47.     }
  48.     CoBrEnablePage::createInterface $this
  49. }
  50.  
  51. method ClEnablePage::clearInterface {this} {
  52.     CoBrEnablePage::clearInterface $this
  53. }
  54.  
  55. method ClEnablePage::sensitive {this args} {
  56.  
  57.     return [CoBrEnablePage::sensitive $this $args]
  58. }
  59.  
  60. method ClEnablePage::fromInterface {this} {
  61.     return [CoBrEnablePage::fromInterface $this]
  62. }
  63.  
  64. method ClEnablePage::toInterface {this key value} {
  65.     CoBrEnablePage::toInterface $this $key $value
  66. }
  67.  
  68. # Do not delete this line -- regeneration end marker
  69.  
  70.