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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)shctrllist.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)shctrllist.tcl    /main/titanic/2   22 Apr 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 "showroleri.tcl" security
  15.  
  16. Class ShCtrlListRoleRightDlg : {ShowRoleRightsDlg} {
  17.     constructor
  18.     method destructor
  19.     method getObjectList
  20.     method initObjectSet
  21. }
  22.  
  23. constructor ShCtrlListRoleRightDlg {class this name} {
  24.     set this [ShowRoleRightsDlg::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this childRights 1
  27.     $this initObjectSet
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method ShCtrlListRoleRightDlg::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this ShowRoleRightsDlg::destructor
  36. }
  37.  
  38. method ShCtrlListRoleRightDlg::getObjectList {this} {
  39.  
  40.     set list {}
  41.     [$this selectedSet] foreach obj {
  42.         lappend list "\"[[$obj controlledClass] name]\" ControlledList"
  43.     }
  44.     return $list
  45. }
  46.  
  47. method ShCtrlListRoleRightDlg::initObjectSet {this} {
  48.     set browserObject [lindex [.main selectedObjSet] 0]
  49.     set controlledLists ""
  50.  
  51.     set _this $this
  52.     set this $browserObject
  53.     foreach cmd [[$browserObject browserObjType]::controlledLists] {
  54.         eval lappend controlledLists $cmd
  55.     }
  56.     set this $_this
  57.  
  58.     [$this selectedSet] contents $controlledLists
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63.