TerminalView.st
changeset 4223 020aad6311b5
parent 4222 7de7ab92ac71
child 4250 7c940d59fc4e
equal deleted inserted replaced
4222:7de7ab92ac71 4223:020aad6311b5
    54     Concrete applications are: 
    54     Concrete applications are: 
    55         consoles (VT100TerminalView),
    55         consoles (VT100TerminalView),
    56         telnet-views (see TelnetTool)
    56         telnet-views (see TelnetTool)
    57         editor wrappers (if you like emacs/vi)
    57         editor wrappers (if you like emacs/vi)
    58 
    58 
    59     <<although my class protocol includes common startup protocol
    59     Although my class protocol includes common startup protocol
    60     (to open a terminalView with a shell or on the output of a command),
    60     (to open a terminalView with a shell or on the output of a command),
    61     I can be used as a widget within an application (Modem software).
    61     I can be used as a widget within an application (modem software).
    62 
    62 
    63     [author:]
    63     [author:]
    64         Claus Gittinger
    64         Claus Gittinger
    65 
    65 
    66     [instance variables:]
    66     [instance variables:]
  2001 ! !
  2001 ! !
  2002 
  2002 
  2003 !TerminalView class methodsFor:'documentation'!
  2003 !TerminalView class methodsFor:'documentation'!
  2004 
  2004 
  2005 version
  2005 version
  2006     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.136 2013-05-24 14:42:52 cg Exp $'
  2006     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.137 2013-05-27 08:17:16 cg Exp $'
  2007 !
  2007 !
  2008 
  2008 
  2009 version_CVS
  2009 version_CVS
  2010     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.136 2013-05-24 14:42:52 cg Exp $'
  2010     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.137 2013-05-27 08:17:16 cg Exp $'
  2011 ! !
  2011 ! !
  2012 
  2012 
  2013 
  2013 
  2014 TerminalView initialize!
  2014 TerminalView initialize!