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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)revengvbdl.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)revengvbdl.tcl    /main/titanic/2   16 Jun 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "revengdlg.tcl"
  15.  
  16. Class RevEngVbDlg : {RevEngDlg} {
  17.     method destructor
  18.     constructor
  19.     method getOptions
  20. }
  21.  
  22. method RevEngVbDlg::destructor {this} {
  23.     # Start destructor user section
  24.     # End destructor user section
  25.     $this RevEngDlg::destructor
  26. }
  27.  
  28. constructor RevEngVbDlg {class this name} {
  29.     set this [RevEngDlg::constructor $class $this $name "Visual Basic" "reveng_vb"]
  30.     interface CheckButton $this.top.association {
  31.         label "Reverse engineer associations"
  32.         state 1
  33.     }
  34.     return $this
  35. }
  36.  
  37. method RevEngVbDlg::getOptions {this} {
  38.     set script [$this RevEngDlg::getOptions]
  39.  
  40.     if [$this.top.association state] {
  41.         append script " -a rev_assoc.tcl"
  42.     }
  43.  
  44.     return $script
  45. }
  46.  
  47. # Do not delete this line -- regeneration end marker
  48.  
  49.