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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)itemnamech.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)itemnamech.tcl    /main/titanic/2   15 Sep 1997 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.     if [catch {$this item [$itemRef item]} msg] {
  40.         wmtkerror $msg
  41.         $this delete
  42.         return
  43.     }
  44.     $this NameChangeDialog::popUp
  45. }
  46.  
  47. method ItemNameChangeDialog::changeName {this useOld} {
  48.     set ed [$this tool]
  49.     set area [$ed editorArea]
  50.     set configV [$this configV]
  51.     set newName [$this text]
  52.     set cc [ClientContext::global]
  53.     set oldLevelPath [$cc currentLevelString]
  54.     $area changeName [$this item] $newName $useOld $configV
  55.     set newLevelPath [$cc currentLevelString]
  56.     $ed removeHistEntry $oldLevelPath
  57.     set entry [$ed mkHistEntry $newLevelPath 1]
  58.     $ed insertHistEntry $entry
  59.     $ed updateTitle
  60.     $this delete
  61. }
  62.  
  63. # Do not delete this line -- regeneration end marker
  64.  
  65.