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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)svdgvuiobj.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)svdgvuiobj.tcl    /main/titanic/2   17 Oct 1997 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "browsuiobj.tcl"
  15.  
  16. Class SvdGVUiObj : {BrowsUiObj} {
  17.     constructor
  18.     method destructor
  19.     method initializeInfo
  20.     method removeObjects
  21.     method restoreObjects
  22.     method savedGroupVersions
  23. }
  24.  
  25. global SvdGVUiObj::uiClass
  26. set SvdGVUiObj::uiClass "SavedGroupVersions"
  27.  
  28.  
  29. constructor SvdGVUiObj {class this name} {
  30.     set this [BrowsUiObj::constructor $class $this $name]
  31.     # Start constructor user section
  32.  
  33.     $this uiName "<saved groups>"
  34.     $this uiText "saved group versions"
  35.  
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method SvdGVUiObj::destructor {this} {
  41.     # Start destructor user section
  42.     # End destructor user section
  43.     $this BrowsUiObj::destructor
  44. }
  45.  
  46. proc SvdGVUiObj::associations {} {
  47.     return {savedGroupVersions}
  48. }
  49.  
  50. proc SvdGVUiObj::childTypes {assoc} {
  51.     if {[lsearch -exact "[SvdGVUiObj::associations]" "$assoc"] == -1} {
  52.     return ""
  53.     }
  54.     return "[BrowserProcs::childTypes $assoc]"
  55. }
  56.  
  57. proc SvdGVUiObj::infoProperties {} {
  58.     return [BrowserProcs::infoProperties]
  59. }
  60.  
  61. method SvdGVUiObj::initializeInfo {this dummy} {
  62.     $this BrowsUiObj::initializeInfo $dummy
  63.     $this setInfo Text "[$this uiText] of [[$this parent] getInfo Text]"
  64. }
  65.  
  66. method SvdGVUiObj::removeObjects {this} {
  67.     set box $wmttoolObj.removeWarning
  68.     YesNoWarningDialog new $box \
  69.     -title "Confirm Object Delete" \
  70.     -message [BrowserProcs::removeMessage] \
  71.     -noPressed {%this delete} \
  72.     -yesPressed {
  73.         set script ""
  74.         foreach obj [$wmttoolObj selectedObjSet] {
  75.         if {"$script" != ""} {
  76.             append script " ;"
  77.         }
  78.         append script " [$obj savedGroup] removeVersion $obj"
  79.         }
  80.         $wmttoolObj startCommand tcl "$script" "" "" {1 0} 1
  81.         %this delete
  82.     }
  83.     $box delCancelButton
  84.     $box popUp
  85. }
  86.  
  87. method SvdGVUiObj::restoreObjects {this} {
  88.     set sysV [$this getParent SystemVersion]
  89.     set script ""
  90.     foreach obj [$wmttoolObj selectedObjSet] {
  91.     if {"$script" != ""} {
  92.         append script " ;"
  93.     }
  94.     append script " $sysV restore $obj"
  95.     }
  96.     $wmttoolObj startCommand tcl "$script" "" "" {1 0} 1
  97. }
  98.  
  99. method SvdGVUiObj::savedGroupVersions {this} {
  100.     set parent [$this parent]
  101.     if {[$parent isA SSysVDbObj] || [$parent isA GroupVDbObj]} {
  102.     return "[$parent savedGroupVersions]"
  103.     }
  104.     return ""
  105. }
  106.  
  107. # Do not delete this line -- regeneration end marker
  108.  
  109.