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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)nameconfli.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)nameconfli.tcl    1.4   01 Feb 1996 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 "Change Name" \
  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.     [$this nameChange] changeName $useOld
  53.     $this popDown
  54. }
  55.  
  56. # Do not delete this line -- regeneration end marker
  57.  
  58.