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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)usruiobj.tcl    1.8
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)usruiobj.tcl    1.8   26 Jan 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "browsuiobj.tcl"
  15.  
  16. Class UsrUiObj : {BrowsUiObj} {
  17.     constructor
  18.     method destructor
  19.     method addUser
  20.     method initializeInfo
  21.     method removeObjects
  22.     method users
  23. }
  24.  
  25. global UsrUiObj::uiClass
  26. set UsrUiObj::uiClass "Users"
  27.  
  28.  
  29. constructor UsrUiObj {class this name} {
  30.     set this [BrowsUiObj::constructor $class $this $name]
  31.     # Start constructor user section
  32.  
  33.     $this uiName "<users>"
  34.     $this uiText "users"
  35.  
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method UsrUiObj::destructor {this} {
  41.     # Start destructor user section
  42.     # End destructor user section
  43.     $this BrowsUiObj::destructor
  44. }
  45.  
  46. method UsrUiObj::addUser {this} {
  47.     [$this getParent BrowsDbObj] addUser
  48. }
  49.  
  50. proc UsrUiObj::associations {} {
  51.     return {users}
  52. }
  53.  
  54. proc UsrUiObj::childTypes {assoc} {
  55.     if {[lsearch -exact "[UsrUiObj::associations]" "$assoc"] == -1} {
  56.     return ""
  57.     }
  58.     return "[BrowserProcs::childTypes $assoc]"
  59. }
  60.  
  61. proc UsrUiObj::infoProperties {} {
  62.     return [BrowserProcs::infoProperties]
  63. }
  64.  
  65. method UsrUiObj::initializeInfo {this dummy} {
  66.     $this BrowsUiObj::initializeInfo $dummy
  67.     $this setInfo Text "[$this uiText] of [[$this parent] getInfo Text]"
  68. }
  69.  
  70. method UsrUiObj::removeObjects {this} {
  71.     [$this getParent BrowsDbObj] removeObjects
  72. }
  73.  
  74. method UsrUiObj::users {this} {
  75.     return [[$this parent] users]
  76. }
  77.  
  78. # Do not delete this line -- regeneration end marker
  79.  
  80.