EditTextView.st
changeset 2752 5650a9ab5935
parent 2744 cb920467a4b4
child 2755 96f93fd9f0fa
equal deleted inserted replaced
2751:dcba8a160aed 2752:5650a9ab5935
  2619     self makeCursorVisibleAndShowCursor:wasOn.
  2619     self makeCursorVisibleAndShowCursor:wasOn.
  2620 
  2620 
  2621     "Created: / 12.6.1998 / 21:53:23 / cg"
  2621     "Created: / 12.6.1998 / 21:53:23 / cg"
  2622 ! !
  2622 ! !
  2623 
  2623 
  2624 !EditTextView methodsFor:'editing - basic'!
  2624 !EditTextView methodsFor:'editing-basic'!
  2625 
  2625 
  2626 deleteCharsAtLine:lineNr fromCol:startCol toCol:endCol
  2626 deleteCharsAtLine:lineNr fromCol:startCol toCol:endCol
  2627     "delete characters from startCol to endCol in line lineNr
  2627     "delete characters from startCol to endCol in line lineNr
  2628     "
  2628     "
  2629     |line lineSize newLine start stop prevWidth newWidth|
  2629     |line lineSize newLine start stop prevWidth newWidth|
  3354     self textChanged.
  3354     self textChanged.
  3355 
  3355 
  3356     "Modified: / 10.6.1998 / 19:01:52 / cg"
  3356     "Modified: / 10.6.1998 / 19:01:52 / cg"
  3357 ! !
  3357 ! !
  3358 
  3358 
  3359 !EditTextView methodsFor:'event processing'!
  3359 !EditTextView methodsFor:'event handling'!
  3360 
  3360 
  3361 buttonPress:button x:x y:y
  3361 buttonPress:button x:x y:y
  3362     "hide the cursor when button is activated"
  3362     "hide the cursor when button is activated"
  3363 
  3363 
  3364     hasKeyboardFocus := true.
  3364     hasKeyboardFocus := true.
  5452 ! !
  5452 ! !
  5453 
  5453 
  5454 !EditTextView class methodsFor:'documentation'!
  5454 !EditTextView class methodsFor:'documentation'!
  5455 
  5455 
  5456 version
  5456 version
  5457     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.302 2003-05-07 14:31:34 cg Exp $'
  5457     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.303 2003-05-07 15:05:43 cg Exp $'
  5458 ! !
  5458 ! !