TerminalView.st
changeset 4596 dc86ba455936
parent 4595 b6bca31ea81b
child 4597 c0c195dcf0c1
equal deleted inserted replaced
4595:b6bca31ea81b 4596:dc86ba455936
   689 
   689 
   690     DebugKeyboard ifTrue:[
   690     DebugKeyboard ifTrue:[
   691         Transcript showCR:'----'; show:'keyPress:' ; showCR:aKey printString.
   691         Transcript showCR:'----'; show:'keyPress:' ; showCR:aKey printString.
   692     ].
   692     ].
   693     lineEditMode == true ifTrue:[
   693     lineEditMode == true ifTrue:[
       
   694         "/ TODO: check if tty is in raw mode - then ignore lineEditMode
   694         (self keyPressInLineEditMode:aKey) ifTrue:[^ self].
   695         (self keyPressInLineEditMode:aKey) ifTrue:[^ self].
   695     ].
   696     ].
   696 
   697 
   697     aKey isCharacter ifTrue:[
   698     aKey isCharacter ifTrue:[
   698         self deselect.
   699         self deselect.
  2414 ! !
  2415 ! !
  2415 
  2416 
  2416 !TerminalView class methodsFor:'documentation'!
  2417 !TerminalView class methodsFor:'documentation'!
  2417 
  2418 
  2418 version
  2419 version
  2419     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.178 2014-06-01 15:40:40 cg Exp $'
  2420     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.179 2014-06-01 15:41:38 cg Exp $'
  2420 !
  2421 !
  2421 
  2422 
  2422 version_CVS
  2423 version_CVS
  2423     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.178 2014-06-01 15:40:40 cg Exp $'
  2424     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.179 2014-06-01 15:41:38 cg Exp $'
  2424 ! !
  2425 ! !
  2425 
  2426 
  2426 
  2427 
  2427 TerminalView initialize!
  2428 TerminalView initialize!