AbstractLauncherApplication.st
changeset 2207 84d23e553268
parent 2206 43e55bfbf3fc
child 2209 753b5db1eea5
equal deleted inserted replaced
2206:43e55bfbf3fc 2207:84d23e553268
   669 
   669 
   670     self withCursor:Cursor execute do:[ MessageTracer cleanup]
   670     self withCursor:Cursor execute do:[ MessageTracer cleanup]
   671 
   671 
   672 !
   672 !
   673 
   673 
   674 removeAllWorkspaceVariables
       
   675     "remove workspace variables"
       
   676 
       
   677     Workspace removeAllWorkspaceVariables
       
   678 !
       
   679 
       
   680 startClassBrowser
   674 startClassBrowser
   681     "open a classBrowser; asks for class"
   675     "open a classBrowser; asks for class"
   682 
   676 
   683     SystemBrowser askThenBrowseClass
   677     SystemBrowser askThenBrowseClass
   684 
   678 
   992 
   986 
   993 ! !
   987 ! !
   994 
   988 
   995 !AbstractLauncherApplication methodsFor:'user actions - tools'!
   989 !AbstractLauncherApplication methodsFor:'user actions - tools'!
   996 
   990 
       
   991 inspectWorkspaceVariables
       
   992     "remove workspace variables"
       
   993 
       
   994     Workspace workspaceVariables inspect
       
   995 !
       
   996 
   997 newProject 
   997 newProject 
   998     "creates a new project & opens a projectView for it"
   998     "creates a new project & opens a projectView for it"
   999 
   999 
  1000     Project notNil ifTrue: [(ProjectView for: Project new) open]
  1000     Project notNil ifTrue: [(ProjectView for: Project new) open]
  1001 !
  1001 !
  1002 
  1002 
  1003 openTerminal
  1003 openTerminal
  1004     self openApplication:#VT100TerminalView 
  1004     self openApplication:#VT100TerminalView 
  1005 
  1005 
  1006     "Created: / 27.7.1998 / 12:48:30 / cg"
  1006     "Created: / 27.7.1998 / 12:48:30 / cg"
       
  1007 !
       
  1008 
       
  1009 removeAllWorkspaceVariables
       
  1010     "remove workspace variables"
       
  1011 
       
  1012     Workspace removeAllWorkspaceVariables
  1007 !
  1013 !
  1008 
  1014 
  1009 selectProject
  1015 selectProject
  1010     "asks for and switch to another project"
  1016     "asks for and switch to another project"
  1011 
  1017 
  4559 ! !
  4565 ! !
  4560 
  4566 
  4561 !AbstractLauncherApplication class methodsFor:'documentation'!
  4567 !AbstractLauncherApplication class methodsFor:'documentation'!
  4562 
  4568 
  4563 version
  4569 version
  4564     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.44 1999-06-26 14:02:33 cg Exp $'
  4570     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.45 1999-06-26 14:07:15 cg Exp $'
  4565 ! !
  4571 ! !