home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ccsetconfi.tcl < prev    next >
Text File  |  1997-05-21  |  2KB  |  60 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ccsetconfi.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ccsetconfi.tcl    /main/titanic/4   21 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. # This dialog asks whether the config spec
  16. # in file should be set for view. It performs the action
  17. # if yes is pressed.
  18.  
  19. Class CCSetConfigSpecDialog : {QuestionDialog} {
  20.     constructor
  21.     method destructor
  22.     method createInterface
  23.     attribute view
  24.     attribute file
  25. }
  26.  
  27. constructor CCSetConfigSpecDialog {class this name} {
  28.     set this [QuestionDialog::constructor $class $this $name]
  29.     # Start constructor user section
  30.     $this createInterface
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method CCSetConfigSpecDialog::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38. }
  39.  
  40. method CCSetConfigSpecDialog::createInterface {this} {
  41.     $this title "Set Config Spec"
  42.     $this message "Set Config Spec for view [$this view]?" 
  43.     $this cancelPressed { 
  44.     BasicFS::removeFile [%this file]
  45.     %this delete
  46.     }
  47.  
  48.     $this okPressed { 
  49.     CCCommand::setConfigSpec [%this view] [%this file]
  50.     BasicFS::removeFile [%this file]
  51.     %this delete
  52.     .main updateView
  53.     }
  54.  
  55.     $this delHelpButton
  56. }
  57.  
  58. # Do not delete this line -- regeneration end marker
  59.  
  60.