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

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