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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)newobjectd.tcl    1.13
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newobjectd.tcl    1.13   02 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 NewObjectDialog : {NewCustObjectDialog} {
  17.     constructor
  18.     method destructor
  19.     method repTypeChanged
  20. }
  21.  
  22. constructor NewObjectDialog {class this name} {
  23.     set this [NewCustObjectDialog::constructor $class $this $name]
  24.     # Start constructor user section
  25.  
  26.     $this title ObjectType
  27.     $this okPressed {
  28.         # only for ExternalFileTypes the browserType may vary
  29.         if {[%this.DC.repObjectDDL selected] != "ExternalFileVersion" \
  30.         && [%this.DC.repObjectDDL selected] != "ExternalLink"} {
  31.         
  32.             if {[lsearch [%this.DC.broObjectCB entrySet] \
  33.                 [%this.DC.broObjectCB text]] == -1 && \
  34.                 [%this.DC.broObjectCB text] != ""} {
  35.                 wmtkerror "Not a valid browserType specified."
  36.                 return
  37.             }
  38.         }
  39.         %this popDown
  40.         [.main editorArea] newObject [%this.DC.repObjectDDL selected]\
  41.             [%this.DC.broObjectCB text] [%this edit]
  42.     }
  43.     interface DlgColumn $this.DC {
  44.         allowResize 1
  45.         Label L {
  46.             text "Repository Type:"
  47.         }
  48.         DropDwnList  repObjectDDL {
  49.             entrySet {}
  50.             rowCount 10
  51.         }
  52.         Label L {
  53.             text "Browser Type:"
  54.         }
  55.         DropDwnComboBox  broObjectCB {
  56.             entrySet {all}
  57.             rowCount 10
  58.         }
  59.     }
  60.     $this helpPressed { .main helpOnName newObjectType }
  61.  
  62.     set sortedList [lsort [[.main BrowsObj] names]]
  63.     $this.DC.repObjectDDL entrySet $sortedList
  64.     $this.DC.repObjectDDL selected  [lindex $sortedList 0]
  65.  
  66.     $this.DC.repObjectDDL selectionChanged "$this repTypeChanged"
  67.  
  68.     # End constructor user section
  69.     return $this
  70. }
  71.  
  72. method NewObjectDialog::destructor {this} {
  73.     # Start destructor user section
  74.     # End destructor user section
  75.     $this NewCustObjectDialog::destructor
  76. }
  77.  
  78. method NewObjectDialog::repTypeChanged {this} {
  79.     set repType [$this.DC.repObjectDDL selected]
  80.     set types [CustEditor::subTypes $repType]
  81.     $this.DC.broObjectCB entrySet "all $types"
  82.     $this.DC.broObjectCB text ""
  83. }
  84.  
  85. # Do not delete this line -- regeneration end marker
  86.  
  87.