home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / userdefdia.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  67 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)userdefdia.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)userdefdia.tcl    1.4   04 Apr 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "opendefdia.tcl"
  15.  
  16. Class UserDefDialog : {OpenDefDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor UserDefDialog {class this name} {
  26.     set this [OpenDefDialog::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method UserDefDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this OpenDefDialog::destructor
  36. }
  37.  
  38. method UserDefDialog::createInterface {this} {
  39.     interface NoteBkPage $this.definitionNBP {
  40.         label Definition
  41.         DlgColumn DC {
  42.             Label nameL { text Name: }
  43.             SingleLineText nameSLT {}
  44.             Label procL { text "TCL Procedure:" }
  45.             SingleLineText procSLT {}
  46.         }
  47.     }
  48.     $this dPage $this.definitionNBP.DC
  49. }
  50.  
  51. method UserDefDialog::clearInterface {this} {
  52.     $this OpenDefDialog::clearInterface
  53.     [$this dPage].procSLT text ""
  54. }
  55.  
  56. method UserDefDialog::fromInterface {this} {
  57.     [$this curObject] procedure [[$this dPage].procSLT text]
  58.     return ""
  59. }
  60.  
  61. method UserDefDialog::toInterface {this} {
  62.     [$this dPage].procSLT text [[$this curObject] procedure]
  63. }
  64.  
  65. # Do not delete this line -- regeneration end marker
  66.  
  67.