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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)showroleri.tcl    /main/titanic/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)showroleri.tcl    /main/titanic/7   21 Oct 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "rolerights.tcl" security
  15.  
  16. Class ShowRoleRightsDlg : {RoleRightsDlg} {
  17.     constructor
  18.     method destructor
  19.     method popUp
  20. }
  21.  
  22. constructor ShowRoleRightsDlg {class this name} {
  23.     set this [RoleRightsDlg::constructor $class $this $name]
  24.     # Start constructor user section
  25.  
  26.     $this editable 0
  27.     $this delCancelButton
  28.  
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method ShowRoleRightsDlg::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this RoleRightsDlg::destructor
  37. }
  38.  
  39. method ShowRoleRightsDlg::popUp {this} {
  40.     if {! [[$this selectedSet] empty]} {
  41.     $this createObjectsIf
  42.     $this createRolesIf
  43.     $this createActionsIf
  44.     if [$this childRights] {
  45.         $this createRoleRightTypeIf
  46.     }
  47.     $this selectedObjectSetChanged
  48.     $this TemplateDialog::popUp
  49.     }
  50.     if {"[$this errorStack]" != ""} {
  51.     wmtkinfo [$this errorStack]
  52.     $this errorStack ""
  53.     }
  54. }
  55.  
  56. # Do not delete this line -- regeneration end marker
  57.