FileBrowser.st
changeset 1731 e0918756a20f
parent 1702 962056a31c06
child 1732 099fb9d23958
equal deleted inserted replaced
1730:7df74d4ca317 1731:e0918756a20f
   762                               'Changes browser'
   762                               'Changes browser'
   763                               'Editor'
   763                               'Editor'
   764                               'HTML reader'
   764                               'HTML reader'
   765                               'Image inspect'
   765                               'Image inspect'
   766                               'show file differences'
   766                               'show file differences'
       
   767                               'terminal'
   767                   ).
   768                   ).
   768 
   769 
   769     subSelectors := #(
   770     subSelectors := #(
   770                               openChangesBrowser
   771                               openChangesBrowser
   771                               openEditor
   772                               openEditor
   772                               openHTMLReader
   773                               openHTMLReader
   773                               openImageInspector
   774                               openImageInspector
   774                               openDiffView
   775                               openDiffView
       
   776                               openTerminal
   775                      ).
   777                      ).
   776 
   778 
   777     JavaInterpreter notNil ifTrue:[
   779     JavaInterpreter notNil ifTrue:[
   778         subLabels := subLabels , #('Java Applet Viewer').
   780         subLabels := subLabels , #('Java Applet Viewer').
   779         subSelectors := subSelectors , #(openAppletViewer).
   781         subSelectors := subSelectors , #(openAppletViewer).
   799     ].
   801     ].
   800 
   802 
   801     ^m
   803     ^m
   802 
   804 
   803     "Modified: / 16.1.1998 / 16:42:59 / stefan"
   805     "Modified: / 16.1.1998 / 16:42:59 / stefan"
   804     "Modified: / 28.4.1998 / 18:27:00 / cg"
   806     "Modified: / 20.7.1998 / 18:17:18 / cg"
   805 !
   807 !
   806 
   808 
   807 filePrint
   809 filePrint
   808     "send a files contents to the printer (not in the menu)"
   810     "send a files contents to the printer (not in the menu)"
   809 
   811 
  1063 	]
  1065 	]
  1064     ].
  1066     ].
  1065 
  1067 
  1066     "Modified: 17.9.1995 / 17:41:24 / claus"
  1068     "Modified: 17.9.1995 / 17:41:24 / claus"
  1067     "Modified: 18.9.1997 / 17:05:04 / stefan"
  1069     "Modified: 18.9.1997 / 17:05:04 / stefan"
       
  1070 !
       
  1071 
       
  1072 openTerminal
       
  1073     VT100TerminalView open
       
  1074 
       
  1075     "Created: / 20.7.1998 / 18:18:15 / cg"
  1068 !
  1076 !
  1069 
  1077 
  1070 openTool:aToolClass
  1078 openTool:aToolClass
  1071     "open a tool on the selected file(s)"
  1079     "open a tool on the selected file(s)"
  1072 
  1080 
  4065 ! !
  4073 ! !
  4066 
  4074 
  4067 !FileBrowser class methodsFor:'documentation'!
  4075 !FileBrowser class methodsFor:'documentation'!
  4068 
  4076 
  4069 version
  4077 version
  4070     ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.228 1998-06-18 13:54:18 cg Exp $'
  4078     ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.229 1998-07-20 16:31:36 cg Exp $'
  4071 ! !
  4079 ! !