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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ot2varse.tcl    /main/titanic/4 14 Jul 1997 18 Jun 1997
  6. #      Author:         H. Broeze
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ot2varse.tcl    /main/titanic/4 13 Nov 1997 18 Jun 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. Class VarFileSelection : {FileChooser} {
  15.     method destructor
  16.     constructor
  17.     method handleOk
  18. }
  19.  
  20. method VarFileSelection::destructor {this} {
  21.     # Start destructor user section
  22.     # End destructor user section
  23. }
  24.  
  25. constructor VarFileSelection {class this name } {
  26.     set this [FileChooser::constructor $class $this $name]
  27.     # Start constructor user section
  28.     $this config \
  29.         -okPressed "$this handleOk" \
  30.         -title "Save to Var File ..." \
  31.         -selectionPolicy SINGLE \
  32.         -filter "*.var" 
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method VarFileSelection::handleOk {this} {
  38.     set selVarFile [lindex [$this selectedSet] 0]
  39.     regsub -all {\\} $selVarFile "/" tclFileName
  40.     .main startCommand mtool "otsh -f ot2var.tcl -- $tclFileName" "" "Starting saving object model to VAR file" {0 0} 0
  41. }
  42.  
  43. # Do not delete this line -- regeneration end marker
  44.  
  45.