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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)shctrlclas.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)shctrlclas.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 ShCtrlClassRoleRightDlg : {ShowRoleRightsDlg} {
  17.     constructor
  18.     method destructor
  19.     method getObjectList
  20.     method initObjectSet
  21. }
  22.  
  23. constructor ShCtrlClassRoleRightDlg {class this name} {
  24.     set this [ShowRoleRightsDlg::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this initObjectSet
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method ShCtrlClassRoleRightDlg::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this ShowRoleRightsDlg::destructor
  35. }
  36.  
  37. method ShCtrlClassRoleRightDlg::getObjectList {this} {
  38.     set list {}
  39.     [$this selectedSet] foreach obj {
  40.         lappend list "\"[$obj name]\" ControlledClass"
  41.     }
  42.     return $list
  43. }
  44.  
  45. method ShCtrlClassRoleRightDlg::initObjectSet {this} {
  46.  
  47.     set browserObject [lindex [.main selectedObjSet] 0]
  48.     [$this selectedSet] contents [$browserObject controlledClasses]
  49. }
  50.  
  51. # Do not delete this line -- regeneration end marker
  52.  
  53.