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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)itemnamech.tcl    1.6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)itemnamech.tcl    1.6   15 Apr 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "namechange.tcl"
  15.  
  16. Class ItemNameChangeDialog : {NameChangeDialog} {
  17.     constructor
  18.     method destructor
  19.     method popUp
  20.     method changeName
  21. }
  22.  
  23. constructor ItemNameChangeDialog {class this name tool} {
  24.     set this [NameChangeDialog::constructor $class $this $name $tool]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method ItemNameChangeDialog::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this NameChangeDialog::destructor
  34. }
  35.  
  36. method ItemNameChangeDialog::popUp {this} {
  37.     set itemRef [lindex [[$this tool] selectedItem] 0]
  38.     $this text [$itemRef itemName]
  39.     $this item [$itemRef item]
  40.     $this NameChangeDialog::popUp
  41. }
  42.  
  43. method ItemNameChangeDialog::changeName {this useOld} {
  44.     set ed [$this tool]
  45.     set area [$ed editorArea]
  46.     set configV [$this configV]
  47.     set newName [$this text]
  48.  
  49.     set oldGraph [$area graph]
  50.     set oldGraphItem [[$oldGraph file] item]
  51.     set oldSysV [[[$oldGraph file] system] selectedVersion $configV]
  52.  
  53.     $area changeName [$this item] $newName $useOld $configV
  54.  
  55.     set newGraph [$area graph]
  56.     set newSysV [[[$newGraph file] system] selectedVersion $configV]
  57.     if {$oldSysV != $newSysV} {
  58.         $ed systemVersion $newSysV
  59.         $ed changeFileVersion $newGraph
  60.     } elseif {$oldGraphItem != [[$newGraph file] item]} {
  61.         $ed changeFileVersion $newGraph
  62.     }
  63.  
  64.     $this delete
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.