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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)edenablepa.tcl    /main/hindenburg/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)edenablepa.tcl    /main/hindenburg/2   29 Nov 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "enablepage.tcl"
  15.  
  16. Class EdEnablePage : {EnablePage} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method clearInterface
  21.     method fromInterface
  22.     method toInterface
  23. }
  24.  
  25. constructor EdEnablePage {class this name} {
  26.     set this [EnablePage::constructor $class $this $name]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method EdEnablePage::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this EnablePage::destructor
  36. }
  37.  
  38. method EdEnablePage::createInterface {this} {
  39.  
  40.     interface NamedGroup $this.NG {
  41.         label "Enabled editor area operation"
  42.         DlgColumn DC {
  43.             DlgRow DR {
  44.                 DlgColumn DC {
  45.                     CheckButton openCB { label Open } 
  46.                     CheckButton undoCB { label Undo } 
  47.                     CheckButton moveCB { label Move } 
  48.                     CheckButton copyCB { label Copy } 
  49.                     CheckButton deleteCB { label Delete } 
  50.                     CheckButton replaceCB { label Replace } 
  51.                     CheckButton changeCB { label Change } 
  52.                     CheckButton copyToClipboardCB {label "Copy To Clipboard"}
  53.                 }
  54.                 DlgColumn DC {
  55.                     CheckButton centerCB { label Center } 
  56.                     CheckButton saveCB { label Save } 
  57.                     CheckButton readCB { label Read } 
  58.                     CheckButton editCB { label Edit } 
  59.                     CheckButton itemCB { label "On Item" } 
  60.                     CheckButton checkCB { label Check } 
  61.                     CheckButton diagramCB { label "On Diagram" } 
  62.                     CheckButton pasteFromClipboardCB {label "Paste From Clipboard"}
  63.                 }
  64.             }
  65.         }
  66.     }
  67. }
  68.  
  69. method EdEnablePage::clearInterface {this} {
  70.  
  71.     [$this if].openCB state 0 
  72.     [$this if].undoCB state 0 
  73.     [$this if].moveCB state 0 
  74.     [$this if].copyCB state 0 
  75.     [$this if].deleteCB state 0 
  76.     [$this if].replaceCB state 0 
  77.     [$this if].changeCB state 0 
  78.     [$this if].centerCB state 0 
  79.     [$this if].saveCB state 0 
  80.     [$this if].readCB state 0 
  81.     [$this if].editCB state 0 
  82.     [$this if].itemCB state 0 
  83.     [$this if].checkCB state 0 
  84.     [$this if].diagramCB state 0 
  85.     [$this if].copyToClipboardCB state 0 
  86.     [$this if].pasteFromClipboardCB state 0 
  87. }
  88.  
  89. method EdEnablePage::fromInterface {this} {
  90.  
  91.     set ops ""
  92.     if [[$this if].openCB state] { set ops "$ops open" }
  93.     if [[$this if].undoCB state] { set ops "$ops undo" }
  94.     if [[$this if].moveCB state] { set ops "$ops move" }
  95.     if [[$this if].copyCB state] { set ops "$ops copy" }
  96.     if [[$this if].deleteCB state] { set ops "$ops delete" }
  97.     if [[$this if].replaceCB state] { set ops "$ops replace" }
  98.     if [[$this if].changeCB state] { set ops "$ops change" }
  99.     if [[$this if].centerCB state] { set ops "$ops center" }
  100.     if [[$this if].saveCB state] { set ops "$ops save" }
  101.     if [[$this if].readCB state] { set ops "$ops read" }
  102.     if [[$this if].editCB state] { set ops "$ops edit" }
  103.     if [[$this if].itemCB state] { set ops "$ops item" }
  104.     if [[$this if].checkCB state] { set ops "$ops check" }
  105.     if [[$this if].diagramCB state] { set ops "$ops diagram" }
  106.     if [[$this if].copyToClipboardCB state] \
  107.         { set ops "$ops copyToClipboard" }
  108.     if [[$this if].pasteFromClipboardCB state] \
  109.         { set ops "$ops pasteFromClipboard" }
  110.     if {$ops != ""} {
  111.         set spec "operations \{$ops\}"
  112.     }
  113. }
  114.  
  115. method EdEnablePage::toInterface {this key value} {
  116.  
  117.     if {$key == "operations"} {
  118.         foreach op $value {
  119.             if [isCommand [$this if].${op}CB] {
  120.                 [$this if].${op}CB state 1
  121.             }
  122.         }
  123.     }
  124. }
  125.  
  126. # Do not delete this line -- regeneration end marker
  127.  
  128.