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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)gdrfilesel.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)gdrfilesel.tcl    /main/titanic/1   16 Apr 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class GDRFileSelector : {GCObject} {
  16.     constructor
  17.     method destructor
  18.     method file
  19.     attribute itemType
  20.     attribute decompFlags
  21.     attribute fileTypes
  22.     attribute _file
  23. }
  24.  
  25. constructor GDRFileSelector {class this i_itemType i_decompFlags i_fileTypes file} {
  26.     set this [GCObject::constructor $class $this]
  27.     $this itemType $i_itemType
  28.     $this decompFlags $i_decompFlags
  29.     $this fileTypes $i_fileTypes
  30.     $this _file $file
  31.     [$file _fileSelectorSet] append $this
  32.     # Start constructor user section
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method GDRFileSelector::destructor {this} {
  38.     # Start destructor user section
  39.     # End destructor user section
  40. }
  41.  
  42. # Do not delete this line -- regeneration end marker
  43.  
  44. method GDRFileSelector::file {this args} {
  45.     if {$args == ""} {
  46.         return [$this _file]
  47.     }
  48.     set ref [$this _file]
  49.     if {$ref != ""} {
  50.         [$ref _fileSelectorSet] removeValue $this
  51.     }
  52.     set obj [lindex $args 0]
  53.     if {$obj != ""} {
  54.         [$obj _fileSelectorSet] append $this
  55.     }
  56.     $this _file $obj
  57. }
  58.  
  59.