home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / edenablepa.tcl < prev    next >
Text File  |  1997-03-14  |  5KB  |  159 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)edenablepa.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)edenablepa.tcl    /main/titanic/4   14 Mar 1997 Copyright 1997 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 sensitive
  22.     method fromInterface
  23.     method toInterface
  24. }
  25.  
  26. constructor EdEnablePage {class this name} {
  27.     set this [EnablePage::constructor $class $this $name]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method EdEnablePage::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this EnablePage::destructor
  37. }
  38.  
  39. method EdEnablePage::createInterface {this} {
  40.  
  41.     interface NamedGroup $this.NG {
  42.         label "Enabled editor area operation"
  43.         DlgColumn DC {
  44.             DlgRow DR {
  45.                 DlgColumn DC {
  46.                     CheckButton openCB { label Open } 
  47.                     CheckButton undoCB { label Undo } 
  48.                     CheckButton moveCB { label Move } 
  49.                     CheckButton copyCB { label Copy } 
  50.                     CheckButton deleteCB { label Delete } 
  51.                     CheckButton replaceCB { label Replace } 
  52.                     CheckButton changeCB { label Change } 
  53.                     CheckButton copyToClipboardCB {label "Copy To Clipboard"}
  54.                 }
  55.                 DlgColumn DC {
  56.                     CheckButton centerCB { label Center } 
  57.                     CheckButton saveCB { label Save } 
  58.                     CheckButton readCB { label Read } 
  59.                     CheckButton editCB { label Edit } 
  60.                     CheckButton itemCB { label "On Item" } 
  61.                     CheckButton checkCB { label Check } 
  62.                     CheckButton diagramCB { label "On Diagram" } 
  63.                     CheckButton pasteFromClipboardCB {label "Paste From Clipboard"}
  64.                 }
  65.             }
  66.         }
  67.     }
  68. }
  69.  
  70. method EdEnablePage::clearInterface {this} {
  71.  
  72.     [$this if].openCB state 0 
  73.     [$this if].undoCB state 0 
  74.     [$this if].moveCB state 0 
  75.     [$this if].copyCB state 0 
  76.     [$this if].deleteCB state 0 
  77.     [$this if].replaceCB state 0 
  78.     [$this if].changeCB state 0 
  79.     [$this if].centerCB state 0 
  80.     [$this if].saveCB state 0 
  81.     [$this if].readCB state 0 
  82.     [$this if].editCB state 0 
  83.     [$this if].itemCB state 0 
  84.     [$this if].checkCB state 0 
  85.     [$this if].diagramCB state 0 
  86.     [$this if].copyToClipboardCB state 0 
  87.     [$this if].pasteFromClipboardCB state 0 
  88. }
  89.  
  90. method EdEnablePage::sensitive {this args} {
  91.  
  92.     if {[llength $args] == 0} {
  93.             return [[$this if].openCB sensitive]
  94.     } else {
  95.         set sensitive [lindex $args 0]
  96.     }
  97.  
  98.     [$this if].openCB sensitive $sensitive
  99.     [$this if].undoCB sensitive $sensitive
  100.     [$this if].moveCB sensitive $sensitive
  101.     [$this if].copyCB sensitive $sensitive
  102.     [$this if].deleteCB sensitive $sensitive
  103.     [$this if].replaceCB sensitive $sensitive
  104.     [$this if].changeCB sensitive $sensitive
  105.     [$this if].centerCB sensitive $sensitive
  106.     [$this if].saveCB sensitive $sensitive
  107.     [$this if].readCB sensitive $sensitive
  108.     [$this if].editCB sensitive $sensitive
  109.     [$this if].itemCB sensitive $sensitive
  110.     [$this if].checkCB sensitive $sensitive
  111.     [$this if].diagramCB sensitive $sensitive
  112.     [$this if].copyToClipboardCB sensitive $sensitive
  113.     [$this if].pasteFromClipboardCB sensitive $sensitive
  114.  
  115.     return $sensitive
  116. }
  117.  
  118. method EdEnablePage::fromInterface {this} {
  119.  
  120.     set ops ""
  121.     if [[$this if].openCB state] { lappend ops open }
  122.     if [[$this if].undoCB state] { lappend ops undo }
  123.     if [[$this if].moveCB state] { lappend ops move }
  124.     if [[$this if].copyCB state] { lappend ops copy }
  125.     if [[$this if].deleteCB state] { lappend ops delete }
  126.     if [[$this if].replaceCB state] { lappend ops replace }
  127.     if [[$this if].changeCB state] { lappend ops change }
  128.     if [[$this if].centerCB state] { lappend ops center }
  129.     if [[$this if].saveCB state] { lappend ops save }
  130.     if [[$this if].readCB state] { lappend ops read }
  131.     if [[$this if].editCB state] { lappend ops edit }
  132.     if [[$this if].itemCB state] { lappend ops item }
  133.     if [[$this if].checkCB state] { lappend ops check }
  134.     if [[$this if].diagramCB state] { lappend ops diagram }
  135.     if [[$this if].copyToClipboardCB state] \
  136.         { lappend ops copyToClipboard }
  137.     if [[$this if].pasteFromClipboardCB state] \
  138.         { lappend ops pasteFromClipboard }
  139.     set spec ""
  140.     if {$ops != ""} {
  141.         set spec [list operations $ops]
  142.     }
  143.     return $spec
  144. }
  145.  
  146. method EdEnablePage::toInterface {this key value} {
  147.  
  148.     if {$key == "operations"} {
  149.         foreach op $value {
  150.             if [isCommand [$this if].${op}CB] {
  151.                 [$this if].${op}CB state 1
  152.             }
  153.         }
  154.     }
  155. }
  156.  
  157. # Do not delete this line -- regeneration end marker
  158.  
  159.