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

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