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

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