home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / readdiagra.tcl < prev    next >
Text File  |  1997-07-23  |  2KB  |  75 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)readdiagra.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)readdiagra.tcl    /main/titanic/2   23 Jul 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class ReadDiagram : {ListDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method handleOk
  20.     attribute filevList
  21.     attribute fileNameList
  22.     attribute editor
  23. }
  24.  
  25. constructor ReadDiagram {class this name} {
  26.     set this [ListDialog::constructor $class $this $name]
  27.     # Start constructor user section
  28.     $this config -okPressed {%this handleOk} \
  29.              -helpPressed {.main helpOnName selectOne} \
  30.              -selectionPolicy BROWSE \
  31.              -rowCount 10 \
  32.              -message "Select diagram to read:" \
  33.              -title "Read Diagram"
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method ReadDiagram::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41. }
  42.  
  43. method ReadDiagram::popUp {this} {
  44.     set ed [$this editor]
  45.     set cc [ClientContext::global]
  46.     set sysV [$cc currentSystem]
  47.     set type [$ed diagramType]
  48.     set fileVersions [$sysV localFileVersions]
  49.     set myTypeFileList ""
  50.     set myTypeNameList ""
  51.     foreach fv $fileVersions {
  52.         if {[[$fv file] type] == "$type"} {
  53.             lappend myTypeFileList $fv
  54.             lappend myTypeNameList [[$fv file] qualifiedName :]
  55.         }
  56.     }
  57.     $this filevList $myTypeFileList
  58.     $this fileNameList $myTypeNameList
  59.     $this entrySet [lsort $myTypeNameList]
  60.     $this ListDialog::popUp
  61. }
  62.  
  63. method ReadDiagram::handleOk {this} {
  64.     set index [lsearch -exact \
  65.         [$this fileNameList] [lindex [$this selectedSet] 0]]
  66.     if {$index == -1} {
  67.         return
  68.     } else {
  69.         [$this editor] doRead [lindex [$this filevList] $index]
  70.     }
  71. }
  72.  
  73. # Do not delete this line -- regeneration end marker
  74.  
  75.