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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)checkbrobj.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)checkbrobj.tcl    1.4   21 Mar 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require classmaker.tcl
  13. # End user added include file section
  14.  
  15.  
  16. Class CheckBrObject : {BrowsObject} {
  17.     constructor
  18.     method destructor
  19.     method define
  20.     attribute group
  21. }
  22.  
  23. constructor CheckBrObject {class this name} {
  24.     set this [BrowsObject::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this activated "$this define"
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method CheckBrObject::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34. }
  35.  
  36. method CheckBrObject::define {this} {
  37.  
  38.     if [[[$this view] checkDialog] readOnly] {
  39.         # no define if readOnly
  40.         return
  41.     }
  42.  
  43.     set number [[[$this view] checkDialog] number]
  44.     set box .main.chckObjDlg$number
  45.     if {! [isCommand $box]} {
  46.         ClassMaker::extend TemplateDialog ChckObjDlg {CheckBrObject}
  47.         interface ChckObjDlg $box {
  48.             DlgColumn DC {
  49.             NamedGroup nameNG {
  50.                 DlgRow DR {
  51.                     spaceType EVEN
  52.                     Label L {
  53.                     text "Check value"
  54.                     }
  55.                     VerRadioGroup checkValueVRG {
  56.                     entrySet {warning default error off}
  57.                     }
  58.                 }
  59.             }
  60.             }
  61.         }
  62.         $box config \
  63.             -okPressed {
  64.                 set value [%this.DC.nameNG.DR.checkValueVRG selected]
  65.                 set details [[%this CheckBrObject] details]
  66.                 set details [lreplace $details 0 0 $value]
  67.                 [%this CheckBrObject] details $details
  68.                 [[%this CheckBrObject] view] sortit
  69.                 [%this CheckBrObject] makeVisible
  70.             } \
  71.             -helpPressed {.main helpOnName checkConfigValueDialog} \
  72.             -modal 1
  73.     }
  74.  
  75.     $box config \
  76.         -CheckBrObject $this \
  77.         -title "Group: [$this label]"
  78.     set details [$this details]
  79.     $box.DC.nameNG.DR.checkValueVRG selected [lindex $details 0]
  80.     $box.DC.nameNG label "Description: [lindex $details 1]"
  81.  
  82.     $box popUp
  83. }
  84.  
  85. # Do not delete this line -- regeneration end marker
  86.  
  87.