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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)separatord.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)separatord.tcl    1.4   12 Mar 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "menudefine.tcl"
  15.  
  16. Class SeparatorDialog : {MenuDefineDialog} {
  17.     constructor
  18.     method destructor
  19.     method objName
  20.     method save
  21. }
  22.  
  23. constructor SeparatorDialog {class this name} {
  24.     set this [MenuDefineDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method SeparatorDialog::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this MenuDefineDialog::destructor
  34. }
  35.  
  36. method SeparatorDialog::objName {this args} {
  37.  
  38.     if {$args == ""} {
  39.         return Separator
  40.     } else {
  41.         # set nothing (is always 'Separator'
  42.     }
  43. }
  44.  
  45. method SeparatorDialog::save {this popDown} {
  46.  
  47.     set obj [$this curObject]
  48.     $obj scope [$this objScope]
  49.     $obj visible [$this objVisible]
  50.     $obj readOnly [$this objReadOnly]
  51.     $obj displayName [$this objName]
  52.  
  53.     $obj updateView
  54.  
  55.     [.main editorArea] isChanged 1
  56.  
  57.     if {$popDown == 1} {
  58.         $this popDown
  59.     }
  60.  
  61.     # reset redefined attribute
  62.     [$this curObject] redefined 0
  63.  
  64.     return 1
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.