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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)unregister.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)unregister.tcl    /main/titanic/3   14 Mar 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "separatord.tcl"
  15.  
  16. Class UnregisterDialog : {SeparatorDialog} {
  17.     constructor
  18.     method destructor
  19.     method objName
  20.     method load
  21. }
  22.  
  23. constructor UnregisterDialog {class this name} {
  24.     set this [SeparatorDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method UnregisterDialog::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this SeparatorDialog::destructor
  34. }
  35.  
  36. method UnregisterDialog::objName {this args} {
  37.     # in this dialog the name cannot change
  38.     # so return the original name
  39.     if {$args == ""} {
  40.         return [[$this curObject] _displayName]
  41.     } else {
  42.         # nothing to set
  43.     }
  44. }
  45.  
  46. method UnregisterDialog::load {this object} {
  47.     SeparatorDialog::load $this $object
  48.     set obj [$this curObject]
  49.     set type [$obj type]
  50.     $this title "Clear $type `[$obj _displayName]'"
  51.  
  52.     if [$object editable] {
  53.         $this sensitive 1
  54.     } else {
  55.         $this sensitive 0
  56.     }
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61.