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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)copyenvdia.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)copyenvdia.tcl    /main/hindenburg/1   20 Sep 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require procs.tcl
  13. # End user added include file section
  14.  
  15. require "m4envdialo.tcl"
  16.  
  17. Class CopyEnvDialog : {M4EnvDialog} {
  18.     constructor
  19.     method destructor
  20.     method popUp
  21.     method save
  22.     attribute levelObj
  23. }
  24.  
  25. constructor CopyEnvDialog {class this name NrOfColumns levelObj} {
  26.     set this [M4EnvDialog::constructor $class $this $name $NrOfColumns]
  27.     $this levelObj $levelObj
  28.     # Start constructor user section
  29.  
  30.     set level [$levelObj uiClass]
  31.     set labelText "Copy To $level Environment As ReadOnly Variable"
  32.     $this setLabelText "$labelText"
  33.  
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method CopyEnvDialog::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41.     $this M4EnvDialog::destructor
  42. }
  43.  
  44. method CopyEnvDialog::popUp {this} {
  45.     set m4VarDes [$this m4VarDes]
  46.     m4_var foreach m4var [m4_var meta4UserEnv] {
  47.     if [isCommand $m4VarDes] {
  48.         set label [rmWhiteSpace [$m4VarDes getUiName $m4var]]
  49.         if {"$label" == ""} {
  50.         set label $m4var
  51.         }
  52.     } else {
  53.         set label $m4var
  54.     }
  55.     set m4SortList($label) $m4var
  56.     }
  57.  
  58.     if [info exists m4SortList] {
  59.     set col 0
  60.     foreach index [lsort [array names m4SortList]] {
  61.         set m4var $m4SortList($index)
  62.         $this addToggle $m4var $col $m4var
  63.         incr col 1
  64.         if {! [isCommand $this.top.vp.row.col$col]} {
  65.         set col 0
  66.         }
  67.     }
  68.     }
  69.  
  70.     $this TemplateDialog::popUp
  71. }
  72.  
  73. method CopyEnvDialog::save {this} {
  74.     if [[$this levelObj] isA Corporate] {
  75.     set m4etcDir [path_name concat [m4_var get M4_home] etc]
  76.     set m4envFile [path_name concat $m4etcDir m4env]
  77.     } else {
  78.     set m4envFile [[$this levelObj] findCustomFileVersion m4env ""]
  79.     if [$m4envFile isNil] {
  80.         set m4envFile [[$this levelObj] createCustomFileVersion m4env ""]
  81.     }
  82.     $m4envFile edit
  83.     }
  84.  
  85.     set tmpFile [args_file {}]
  86.     set fid [open $tmpFile w]
  87.     set i 0
  88.     [$this buttonSet] foreach toggle {
  89.     set m4var [lindex [$this m4varList] $i]
  90.     if {[$toggle state]} {
  91.         puts $fid "${m4var}=[m4_var get $m4var];RO"
  92.         $toggle state no
  93.     }
  94.     incr i 1
  95.     }
  96.     close $fid
  97.  
  98.     if [[$this levelObj] isA Corporate] {
  99.     copy_text_file $tmpFile $m4envFile
  100.     } else {
  101.     $m4envFile upLoad $tmpFile
  102.     $m4envFile quit
  103.     }
  104.     unlink $tmpFile
  105. }
  106.  
  107. # Do not delete this line -- regeneration end marker
  108.  
  109.