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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)crsysstgde.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)crsysstgde.tcl    1.3   24 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require "crsysdefdi.tcl"
  13. # End user added include file section
  14.  
  15. require "crfilestgd.tcl"
  16.  
  17. Class CrSysStgDef : {CrFileStgDef} {
  18.     constructor
  19.     method destructor
  20.     method infoList
  21.     method writeObject
  22.     method open
  23.     attribute systemName
  24. }
  25.  
  26. constructor CrSysStgDef {class this name specification} {
  27.     set this [CrFileStgDef::constructor $class $this $name $specification]
  28.     # Start constructor user section
  29.     $this smallIcon folder_16
  30.     $this largeIcon folder_32
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method CrSysStgDef::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this CrFileStgDef::destructor
  39. }
  40.  
  41. method CrSysStgDef::infoList {this} {
  42.     set list [$this OpenDefObject::infoList]
  43.     set list [concat $list \"System Name\"]
  44.     set list [concat $list \"[$this systemName]\"]
  45.     set list [concat $list \"Diagram Qualifier\"]
  46.     set list [concat $list \"[$this fileQualifier]\"]
  47.     set list [concat $list \"Diagram Name\"]
  48.     set list [concat $list \"[$this fileName]\"]
  49.     set list [concat $list \"Diagram Type\"]
  50.     set list [concat $list \"[$this fileType]\"]
  51.     return $list
  52. }
  53.  
  54. method CrSysStgDef::writeObject {this fid} {
  55.     set formatString "%-25s | %s | %-10s | %-10s | %-10s | %s"
  56.     puts $fid [format $formatString [$this name] [$this type] \
  57.         [$this systemName] [$this fileQualifier] \
  58.         [$this fileName] [$this fileType]]
  59. }
  60.  
  61. method CrSysStgDef::open {this} {
  62.     if {![$this editable]} {
  63.         return
  64.     }
  65.  
  66.     .main busy TRUE
  67.     set definer [[.main editorArea] crSysDefiner]
  68.     if {[catch {$definer load $this}]} {
  69.         set definer [CrSysDefDialog new .main.crSysDefiner]
  70.         [.main editorArea] crSysDefiner $definer
  71.         $definer load $this
  72.     }
  73.     .main busy FALSE
  74. }
  75.  
  76. # Do not delete this line -- regeneration end marker
  77.  
  78.