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

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