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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)nameconfli.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)nameconfli.tcl    /main/titanic/3   18 Nov 1997 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class NameConflictDialog : {TemplateDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method changeName
  20.     attribute nameChange
  21. }
  22.  
  23. constructor NameConflictDialog {class this name nameChange} {
  24.     set this [TemplateDialog::constructor $class $this $name]
  25.     $this nameChange $nameChange
  26.     # Start constructor user section
  27.     Label new $this.message -text "Specified name already in use"
  28.     $this delOkButton
  29.     PushButton new $this.overwrite -label Overwrite \
  30.         -activated "$this changeName 1"
  31.     PushButton new $this.refer -label Refer \
  32.         -activated "$this changeName 0"
  33.     $this config -modal yes -title "Name Conflict" \
  34.              -helpPressed {.main helpOnName nameConflict}
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method NameConflictDialog::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42. }
  43.  
  44. method NameConflictDialog::popUp {this} {
  45.     $this.overwrite default no
  46.     $this.refer default no
  47.     $this cancelDefault yes
  48.     $this TemplateDialog::popUp
  49. }
  50.  
  51. method NameConflictDialog::changeName {this useOld} {
  52.     busy {
  53.         $this busy 1
  54.         [$this nameChange] changeName $useOld
  55.         $this popDown
  56.     } {
  57.         $this busy 0
  58.     }
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63.