home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / versionobj.tcl < prev    next >
Text File  |  1997-09-29  |  4KB  |  130 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)versionobj.tcl    /main/titanic/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)versionobj.tcl    /main/titanic/7   29 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class VersionObj : {Object} {
  16.     constructor
  17.     method destructor
  18.     method createTime2String
  19.     method freezeTime2String
  20.     method updateTime2String
  21.     method selectVersion
  22.     method deselectVersion
  23.     method cutVersion
  24.     method makeUpToDate
  25. }
  26.  
  27. constructor VersionObj {class this name} {
  28.     set this [Object::constructor $class $this $name]
  29.     # Start constructor user section
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method VersionObj::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37. }
  38.  
  39. method VersionObj::createTime2String {this} {
  40.     return [BrowserProcs::displayDate [$this createTime]]
  41. }
  42.  
  43. method VersionObj::freezeTime2String {this} {
  44.     return [BrowserProcs::displayDate [$this freezeTime]]
  45. }
  46.  
  47. method VersionObj::updateTime2String {this} {
  48.     return [BrowserProcs::displayDate [$this updateTime]]
  49. }
  50.  
  51. method VersionObj::selectVersion {this version {confV ""}} {
  52.     if [$version isA CorporateGroupVersion] {
  53.     if {"$confV" == ""} {
  54.         set confV [$this getParent ConfigVersion]
  55.     }
  56.     $this reuse $version $confV
  57.     return
  58.     }
  59.  
  60.     if [$version isA PhaseVersion] {
  61.     set flag "-phaseVersion"
  62.     } elseif [$version isA SystemVersion] {
  63.     set flag "-systemVersion"
  64.     } elseif [$version isA FileVersion] {
  65.     set flag "-fileVersion"
  66.     } elseif [$version isA GroupVersion] {
  67.     set flag "-groupVersion"
  68.     } else {
  69.     set flag ""
  70.     }
  71.     eval $this select $flag $version
  72.     module_proc VersionObj::selectVersion $this $version $confV
  73. }
  74.  
  75. method VersionObj::deselectVersion {this version} {
  76.     if [$version isA CorporateGroupVersion] {
  77.     $this unuse $version
  78.     return
  79.     }
  80.  
  81.     if [$version isA PhaseVersion] {
  82.     set flag "-phaseVersion"
  83.     } elseif [$version isA SystemVersion] {
  84.     set flag "-systemVersion"
  85.     } elseif [$version isA FileVersion] {
  86.     set flag "-fileVersion"
  87.     } elseif [$version isA GroupVersion] {
  88.     set flag "-groupVersion"
  89.     } else {
  90.     set flag ""
  91.     }
  92.     module_proc VersionObj::deselectVersion $version
  93.     eval $this deselect $flag $version
  94. }
  95.  
  96. method VersionObj::cutVersion {this version} {
  97.  
  98.     busy {
  99.     # Skip if version is not selected any more
  100.     if [$version isA SystemVersion] {
  101.         set link [$this findSystemVersionLink -bySystemVersion $version]
  102.     } elseif [$version isA FileVersion] {
  103.         set link [$this findFileVersionLink -byFileVersion $version]
  104.     } elseif [$version isA GroupVersion] {
  105.         set link [$this findGroupVersionLink -byVersion $version]
  106.     } else {
  107.         return
  108.     }
  109.     if [$link isNil] {
  110.         return
  111.     }
  112.  
  113.     wmtkmessage "\
  114.         Deselecting [$version getInfo Type] '[$version getInfo Name]'\
  115.         from [$this getInfo Type] '[$this getInfo Name]'"
  116.     $this deselectVersion $version
  117.     [.main undoCommand] sourceObj $this
  118.     [.main undoCommand] addSource $version
  119.     wmtkmessage ""
  120.     }
  121. }
  122.  
  123. method VersionObj::makeUpToDate {this} {
  124.     # dummy call to server
  125.     $this currentContext
  126. }
  127.  
  128. # Do not delete this line -- regeneration end marker
  129.  
  130.