home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / userroleob.tcl < prev    next >
Text File  |  1996-05-29  |  3KB  |  100 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)userroleob.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)userroleob.tcl    1.2   23 Feb 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "browsdbobj.tcl"
  15.  
  16. Class UserRoleObj : {BrowsDbObj} {
  17.     constructor
  18.     method destructor
  19.     method changeLinks
  20.     method initializeInfo
  21.     method removeObjects
  22. }
  23.  
  24. constructor UserRoleObj {class this name} {
  25.     set this [BrowsDbObj::constructor $class $this $name]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method UserRoleObj::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this BrowsDbObj::destructor
  35. }
  36.  
  37. method UserRoleObj::changeLinks {this} {
  38.     TemplateDialog new $wmttoolObj.changeLink \
  39.     -modal yes \
  40.     -title "Change Link Status" \
  41.     -helpPressed {.main helpOnName changeLink} \
  42.     -cancelPressed {%this delete} \
  43.     -okPressed {
  44.         set status [%this.top.status selected]
  45.         set script ""
  46.         foreach obj [$wmttoolObj selectedObjSet] {
  47.         if {"$script" != ""} {
  48.             append script " ;"
  49.         }
  50.         append script " $obj use $status"
  51.         }
  52.         $wmttoolObj startCommand tcl "$script" "" "" {1 0} 1
  53.         %this delete
  54.     }
  55.     interface DlgColumn $wmttoolObj.changeLink.top {
  56.     Label messageLab {
  57.         text "Status:"
  58.     }
  59.     VerRadioGroup status {
  60.         entrySet {defaultOff defaultOn alwaysOn}
  61.     }
  62.     }
  63.     if {[llength [$wmttoolObj selectedObjSet]] == 1} {
  64.     $wmttoolObj.changeLink.top.status selected \
  65.         [[lindex [$wmttoolObj selectedObjSet] 0] getInfo Link]
  66.     } else {
  67.     $wmttoolObj.changeLink.top.status selected defaultOff
  68.     }
  69.     $wmttoolObj.changeLink popUp
  70. }
  71.  
  72. method UserRoleObj::initializeInfo {this securityLevel} {
  73.     [$this info] contents ""
  74.     $this setInfo SecurityLevel $securityLevel
  75. }
  76.  
  77. method UserRoleObj::removeObjects {this} {
  78.     set box $wmttoolObj.removeWarning
  79.     WarningDialog new $box \
  80.     -title "Delete Warning" \
  81.     -message [BrowserProcs::removeMessage] \
  82.     -helpPressed {.main helpOnName removeWarning} \
  83.     -cancelPressed {%this delete} \
  84.     -okPressed {
  85.         set script ""
  86.         foreach obj [$wmttoolObj selectedObjSet] {
  87.         if {"$script" != ""} {
  88.             append script " ;"
  89.         }
  90.         append script " $obj destroy"
  91.         }
  92.         $wmttoolObj startCommand tcl "$script" "" "" {1 0} 1
  93.         %this delete
  94.     }
  95.     $box popUp
  96. }
  97.  
  98. # Do not delete this line -- regeneration end marker
  99.  
  100.