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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)roleuiobj.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)roleuiobj.tcl    /main/titanic/2   17 Oct 1997 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 RoleUiObj : {BrowsUiObj} {
  17.     constructor
  18.     method destructor
  19.     method initializeInfo
  20.     method removeObjects
  21.     method roles
  22. }
  23.  
  24. global RoleUiObj::uiClass
  25. set RoleUiObj::uiClass "Roles"
  26.  
  27.  
  28. constructor RoleUiObj {class this name} {
  29.     set this [BrowsUiObj::constructor $class $this $name]
  30.     # Start constructor user section
  31.  
  32.     $this uiName "<roles>"
  33.     $this uiText "roles"
  34.  
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method RoleUiObj::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42.     $this BrowsUiObj::destructor
  43. }
  44.  
  45. proc RoleUiObj::associations {} {
  46.     return {roles}
  47. }
  48.  
  49. proc RoleUiObj::childTypes {assoc} {
  50.     if {[lsearch -exact "[RoleUiObj::associations]" "$assoc"] == -1} {
  51.     return ""
  52.     }
  53.     return "[BrowserProcs::childTypes $assoc]"
  54. }
  55.  
  56. proc RoleUiObj::infoProperties {} {
  57.     return [BrowserProcs::infoProperties]
  58. }
  59.  
  60. method RoleUiObj::initializeInfo {this dummy} {
  61.     $this BrowsUiObj::initializeInfo $dummy
  62.     $this setInfo Text \
  63.     "[$this uiText] of [[$wmttoolObj corporateObj] getInfo Text]"
  64. }
  65.  
  66. method RoleUiObj::removeObjects {this} {
  67.     set box $wmttoolObj.removeWarning
  68.     YesNoWarningDialog new $box \
  69.     -title "Confirm Object Delete" \
  70.     -message \
  71.         "This action may transfer access on objects to the SuperUser role.\
  72.         \n\n[BrowserProcs::removeMessage]" \
  73.     -noPressed {%this delete} \
  74.     -yesPressed {
  75.         set script ""
  76.         foreach obj [$wmttoolObj selectedObjSet] {
  77.         if {"$script" != ""} {
  78.             append script " ;"
  79.         }
  80.         append script " [$wmttoolObj corporateObj] removeRole $obj"
  81.         }
  82.         $wmttoolObj startCommand tcl "$script" "" "" {1 0} 1
  83.         %this delete
  84.     }
  85.     $box delCancelButton
  86.     $box popUp
  87. }
  88.  
  89. method RoleUiObj::roles {this} {
  90.     return [[$wmttoolObj corporateObj] roles]
  91. }
  92.  
  93. # Do not delete this line -- regeneration end marker
  94.  
  95.