home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / newviewdia.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  80 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)newviewdia.tcl    1.12
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newviewdia.tcl    1.12   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 NewViewDialog : {NewCustObjectDialog} {
  17.     constructor
  18.     method destructor
  19.     method repTypeChanged
  20. }
  21.  
  22. constructor NewViewDialog {class this name} {
  23.     set this [NewCustObjectDialog::constructor $class $this $name]
  24.     # Start constructor user section
  25.     $this title ViewObject
  26.     interface DlgColumn $this.DC {
  27.         allowResize 1
  28.         Label L {
  29.             text "Repository Type:"
  30.         }
  31.         DropDwnList  repObjectDDL {
  32.             entrySet {}
  33.             rowCount 10
  34.         }
  35.         Label L {
  36.             text "Browser Type:"
  37.         }
  38.         DropDwnList  broObjectDDL {
  39.             entrySet {all}
  40.             rowCount 10
  41.         }
  42.         Label L {
  43.             text "Name:"
  44.         }
  45.         SingleLineText nameSLT {
  46.         }
  47.     }
  48.     $this okPressed {
  49.         set name [%this.DC.nameSLT text]
  50.         set repObj [%this.DC.repObjectDDL selected]
  51.         set broType [%this.DC.broObjectDDL selected]
  52.         %this popDown
  53.         [.main editorArea] newObject $repObj $broType $name [%this edit]
  54.     }
  55.     $this helpPressed { .main helpOnName newView }
  56.     $this checkList [list "$this.DC.nameSLT textModified text"]
  57.  
  58.     $this.DC.repObjectDDL entrySet [lsort [[.main BrowsObj] names]]
  59.     $this.DC.repObjectDDL selected [lindex [$this.DC.repObjectDDL \
  60.         entrySet] 0]
  61.     $this.DC.repObjectDDL selectionChanged "$this repTypeChanged"
  62.     # End constructor user section
  63.     return $this
  64. }
  65.  
  66. method NewViewDialog::destructor {this} {
  67.     # Start destructor user section
  68.     # End destructor user section
  69.     $this NewCustObjectDialog::destructor
  70. }
  71.  
  72. method NewViewDialog::repTypeChanged {this} {
  73.     set repType [$this.DC.repObjectDDL selected]
  74.     set types [CustEditor::subTypes $repType]
  75.     $this.DC.broObjectDDL entrySet "all $types"
  76. }
  77.  
  78. # Do not delete this line -- regeneration end marker
  79.  
  80.