home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / browseentr.tcl < prev    next >
Text File  |  1997-06-20  |  3KB  |  97 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)browseentr.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)browseentr.tcl    /main/titanic/3   20 Jun 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require classmaker.tcl
  13. require wmt_util.tcl
  14. # End user added include file section
  15.  
  16.  
  17. Class BrowseEntryDlg : {TemplateDialog} {
  18.     constructor
  19.     method destructor
  20.     method handleBrowse
  21.     method handleHelp
  22.     method popUp
  23.     attribute message
  24.     attribute entry
  25. }
  26.  
  27. constructor BrowseEntryDlg {class this name} {
  28.     set this [TemplateDialog::constructor $class $this $name]
  29.     # Start constructor user section
  30.  
  31.     interface DlgColumn $this.top {
  32.         Label nameLab {}
  33.         SingleLineText name {}
  34.     }
  35.     PushButton new $this.browse \
  36.         -label "Browse..." \
  37.         -activated "$this handleBrowse"
  38.     $this config \
  39.         -modal yes \
  40.         -helpPressed "$this handleHelp"
  41.     $this.top.name textModified {
  42.         [getParent [getParent %this]] entry [%this text]
  43.     }
  44.  
  45.     # End constructor user section
  46.     return $this
  47. }
  48.  
  49. method BrowseEntryDlg::destructor {this} {
  50.     # Start destructor user section
  51.     # End destructor user section
  52. }
  53.  
  54. method BrowseEntryDlg::handleBrowse {this} {
  55.     set fileChooser .main.Browse[nt_get_type $this]
  56.     if {! [isCommand $fileChooser]} {
  57.     ClassMaker::extend FileChooser BrowseEntryDlgFileChooser dialog
  58.     if $win95 {
  59.         set filter "Programs|*.com;*.exe;*.bat;*.cmd|All Files (*.*)|*|"
  60.     } else {
  61.         set filter "*"
  62.     }
  63.     BrowseEntryDlgFileChooser new $fileChooser \
  64.         -title "Browse" \
  65.         -selectionPolicy EXTENDED \
  66.         -filter $filter \
  67.         -dialog $this \
  68.         -okPressed {
  69.         set cmdLine ""
  70.         foreach command [%this selectedSet] {
  71.             if {"$cmdLine" != ""} {
  72.             append cmdLine " [SystemUtilities::cmdSeparator] "
  73.             }
  74.             append cmdLine $command
  75.         }
  76.         set dialog [%this dialog]
  77.         $dialog entry $cmdLine
  78.         $dialog.top.name text [$dialog entry]
  79.         }
  80.     $fileChooser delHelpButton
  81.     }
  82.     $fileChooser popUp
  83. }
  84.  
  85. method BrowseEntryDlg::handleHelp {this} {
  86.     [getParent $this] helpOnName [nt_get_type $this]
  87. }
  88.  
  89. method BrowseEntryDlg::popUp {this} {
  90.     $this.top.nameLab text [$this message]
  91.     $this.top.name text [$this entry]
  92.     $this TemplateDialog::popUp
  93. }
  94.  
  95. # Do not delete this line -- regeneration end marker
  96.  
  97.