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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)newopendef.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newopendef.tcl    1.7   04 Apr 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "newcustobj.tcl"
  15.  
  16. Class NewOpenDefDialog : {NewCustObjectDialog} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor NewOpenDefDialog {class this name} {
  22.     set this [NewCustObjectDialog::constructor $class $this $name]
  23.     # Start constructor user section
  24.     $this title OpenStrategy
  25.     $this autoPopDown 0
  26.     interface DlgColumn $this.DC {
  27.         allowResize 1
  28.         Label L {
  29.             text "Name:"
  30.         }
  31.         SingleLineText nameSLT {
  32.         }
  33.         Label L {
  34.             text "Type:"
  35.         }
  36.         DropDwnList typeDDL {
  37.             entrySet {}
  38.             rowCount 5
  39.         }
  40.     }
  41.     $this okPressed {
  42.         set name [%this.DC.nameSLT text]
  43.         set type [%this.DC.typeDDL selected]
  44.         %this popDown
  45.         [.main editorArea] newObject $type $name [%this edit]
  46.     }
  47.     $this helpPressed { .main helpOnName newOpenDefinition }
  48.  
  49.     lappend checkList "$this.DC.nameSLT textModified text"
  50.     lappend checkList "$this.DC.typeDDL selectionChanged selected"
  51.  
  52.     $this checkList $checkList
  53.  
  54.     $this.DC.typeDDL entrySet \
  55.         {search createFile createSystemAndFile userDefined group}
  56.     $this.DC.typeDDL selected [lindex [$this.DC.typeDDL entrySet] 0]
  57.     # End constructor user section
  58.     return $this
  59. }
  60.  
  61. method NewOpenDefDialog::destructor {this} {
  62.     # Start destructor user section
  63.     # End destructor user section
  64.     $this NewCustObjectDialog::destructor
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.