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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)stextitrpr.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)stextitrpr.tcl    /main/titanic/2   23 Dec 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "propinterf.tcl"
  15.  
  16. Class STextItrPropIf : {PropInterface} {
  17.     method destructor
  18.     constructor
  19.     method getProperties
  20.     method setProperties
  21. }
  22.  
  23. method STextItrPropIf::destructor {this} {
  24.     # Start destructor user section
  25.     # End destructor user section
  26.     $this PropInterface::destructor
  27. }
  28.  
  29. constructor STextItrPropIf {class this guiParent propDef} {
  30.     set name [$propDef name]
  31.     set this [PropInterface::constructor $class $this]
  32.     Label new $guiParent.${name}l -text [$propDef longName]
  33.     $this config -definition $propDef \
  34.              -ifElement [eval SingleLineText new \
  35.             $guiParent.$name [$propDef ifOptions]]
  36.     return $this
  37. }
  38.  
  39. method STextItrPropIf::getProperties {this propContainer} {
  40.     set elem [$this ifElement]
  41.     set key [[$this definition] name]
  42.     $elem text [$propContainer getPropertyValue $key]
  43.     $elem sensitive [$propContainer isPropertyEditable $key]
  44. }
  45.  
  46. method STextItrPropIf::setProperties {this propContainer} {
  47.     set key [[$this definition] name]
  48.     set value [[$this ifElement] text]
  49.     $propContainer changeProperty $key $value ""
  50.     if {$value == ""} {
  51.         return
  52.     }
  53.     set property [[$propContainer itemPropInfo] findProperty $key]
  54.     if {[llength [$property itemRefss]] == 0} {
  55.         PIPropItemRef new $property "cl" "scopePhase"
  56.     }
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61.