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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)reppasswor.tcl    /main/hindenburg/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)reppasswor.tcl    /main/hindenburg/3   18 Oct 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class RepPasswordDialog : {LoginDialog} {
  16.     constructor
  17.     method destructor
  18.     method ok
  19.     attribute plainPassword
  20.     attribute cryptedPassword
  21.     attribute changed
  22. }
  23.  
  24. constructor RepPasswordDialog {class this name} {
  25.     set this [LoginDialog::constructor $class $this $name]
  26.     # Start constructor user section
  27.  
  28.         $this config \
  29.             -modal 1 \
  30.             -title "Database Password" \
  31.             -message "Enter Database Password" \
  32.             -okPressed { %this ok } \
  33.             -entry ""
  34.         $this delHelpButton
  35.  
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method RepPasswordDialog::destructor {this} {
  41.     # Start destructor user section
  42.     # End destructor user section
  43. }
  44.  
  45. method RepPasswordDialog::ok {this} {
  46.     $this plainPassword [$this entry]
  47.     if [string length [$this plainPassword]] {
  48.     $this cryptedPassword [ORB::cryptPassword [$this plainPassword]]
  49.     } else {
  50.     $this cryptedPassword ""
  51.     }
  52.  
  53.     if {[$this changed] != ""} {
  54.     eval "[$this changed]"
  55.     }
  56. }
  57.  
  58. # Do not delete this line -- regeneration end marker
  59.  
  60.