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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)graphvdbob.tcl    1.11
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)graphvdbob.tcl    1.11   12 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 "filevobj.tcl"
  15.  
  16. Class GraphVDbObj : {FileVObj Graph} {
  17.     method destructor
  18.     constructor
  19.     method browserObjType
  20.     method editFile
  21.     method showFile
  22. }
  23.  
  24. method GraphVDbObj::destructor {this} {
  25.     # Start destructor user section
  26.     # End destructor user section
  27.     $this FileVObj::destructor
  28. }
  29.  
  30. constructor GraphVDbObj {class this name} {
  31.     set this [Graph::constructor $class $this $name]
  32.     set this [FileVObj::constructor $class $this $name]
  33.     return $this
  34. }
  35.  
  36. selfPromoter Graph {this} {
  37.     GraphVDbObj promote $this
  38. }
  39.  
  40. proc GraphVDbObj::associations {} {
  41.     return "[FileVObj::associations]"
  42. }
  43.  
  44. method GraphVDbObj::browserObjType {this} {
  45.     return "GraphVDbObj"
  46. }
  47.  
  48. proc GraphVDbObj::childTypes {assoc} {
  49.     if {[lsearch -exact "[GraphVDbObj::associations]" "$assoc"] == -1} {
  50.     return ""
  51.     }
  52.     return "[BrowserProcs::childTypes $assoc]"
  53. }
  54.  
  55. proc GraphVDbObj::controlledLists {} {
  56.     return "[FileVObj::controlledLists]"
  57. }
  58.  
  59. proc GraphVDbObj::infoProperties {} {
  60.     return "[FileVObj::infoProperties]"
  61. }
  62.  
  63. method GraphVDbObj::editFile {this {confV ""} {phaseV ""} {sysV ""}} {
  64.     set file [$this file]
  65.     set fileVId [$this identity]
  66.     if {"$sysV" == ""} {
  67.     set sysV [$this getParent SystemVersion]
  68.     }
  69.     set sysVId [$sysV identity]
  70.     if {"$confV" == ""} {
  71.     set confV [$this getParent ConfigVersion]
  72.     }
  73.     set confVId [$confV identity]
  74.     set script "SystemUtilities::fork otk \
  75.     ude -c [list [get_comm_name]] $fileVId $sysVId $confVId"
  76.     $wmttoolObj startCommand tcl \
  77.     "$script" "" \
  78.     "Starting ude for '[$file qualifiedName :].[$file type]'" \
  79.     {0 0} 1
  80. }
  81.  
  82. method GraphVDbObj::showFile {this {confV ""} {phaseV ""} {sysV ""}} {
  83.     set file [$this file]
  84.     set fileVId [$this identity]
  85.     if {"$sysV" == ""} {
  86.     set sysV [$this getParent SystemVersion]
  87.     }
  88.     set sysVId [$sysV identity]
  89.     if {"$confV" == ""} {
  90.     set confV [$this getParent ConfigVersion]
  91.     }
  92.     set confVId [$confV identity]
  93.     set script \
  94.     "SystemUtilities::fork otk \
  95.         ude -c [list [get_comm_name]] -r $fileVId $sysVId $confVId"
  96.     $wmttoolObj startCommand tcl \
  97.     "$script" "" \
  98.     "Starting ude for '[$file qualifiedName :].[$file type]'" \
  99.     {0 0} 1
  100. }
  101.  
  102. # Do not delete this line -- regeneration end marker
  103.  
  104.