home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / groupdefdi.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  77 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)groupdefdi.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)groupdefdi.tcl    1.3   04 Apr 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "opendefdia.tcl"
  15.  
  16. Class GroupDefDialog : {OpenDefDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor GroupDefDialog {class this name} {
  26.     set this [OpenDefDialog::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method GroupDefDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this OpenDefDialog::destructor
  36. }
  37.  
  38. method GroupDefDialog::createInterface {this} {
  39.     interface NoteBkPage $this.definitionNBP {
  40.         label Definition
  41.         DlgColumn DC {
  42.             Label nameL { text Name: }
  43.             SingleLineText nameSLT {}
  44.             Label membersL { text Members: }
  45.             TextList membersTL {
  46.                 rowCount 5
  47.                 selectionPolicy MULTIPLE
  48.             }
  49.         }
  50.     }
  51.     $this dPage $this.definitionNBP.DC
  52. }
  53.  
  54. method GroupDefDialog::clearInterface {this} {
  55.     $this OpenDefDialog::clearInterface
  56.     [$this dPage].membersTL entrySet {}
  57.     [$this dPage].membersTL selectedSet {}
  58. }
  59.  
  60. method GroupDefDialog::fromInterface {this} {
  61.     [$this curObject] members [[$this dPage].membersTL selectedSet]
  62.     return ""
  63. }
  64.  
  65. method GroupDefDialog::toInterface {this} {
  66.     set stgSet {}
  67.     foreach stg [[.main editorArea] getObjects] {
  68.         if {$stg == [$this curObject]} {break}
  69.         lappend stgSet [$stg name]
  70.     }
  71.     [$this dPage].membersTL entrySet $stgSet
  72.     [$this dPage].membersTL selectedSet [[$this curObject] members]
  73. }
  74.  
  75. # Do not delete this line -- regeneration end marker
  76.  
  77.