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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)crsysstgde.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)crsysstgde.tcl    /main/titanic/1   14 Mar 1997 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.     lappend list {System Name} [$this systemName]
  44.     lappend list {Diagram Qualifier} [$this fileQualifier]
  45.     lappend list {Diagram Name} [$this fileName]
  46.     lappend list {Diagram Type} [$this fileType]
  47.     return $list
  48. }
  49.  
  50. method CrSysStgDef::writeObject {this fid} {
  51.     set formatString "%-25s | %s | %-10s | %-10s | %-10s | %s"
  52.     puts $fid [format $formatString [$this name] [$this type] \
  53.         [$this systemName] [$this fileQualifier] \
  54.         [$this fileName] [$this fileType]]
  55. }
  56.  
  57. method CrSysStgDef::open {this} {
  58.     if {![$this editable]} {
  59.         return
  60.     }
  61.  
  62.     .main busy TRUE
  63.     set definer [[.main editorArea] crSysDefiner]
  64.     if {[catch {$definer load $this}]} {
  65.         set definer [CrSysDefDialog new .main.crSysDefiner]
  66.         [.main editorArea] crSysDefiner $definer
  67.         $definer load $this
  68.     }
  69.     .main busy FALSE
  70. }
  71.  
  72. # Do not delete this line -- regeneration end marker
  73.  
  74.