mirror of
https://github.com/atom/atom.git
synced 2026-02-04 03:35:20 -05:00
We're still leaking markers for selections and cursors. We need to clean that up before merging.
97 lines
2.3 KiB
CoffeeScript
97 lines
2.3 KiB
CoffeeScript
{View} = require 'space-pen'
|
|
Point = require 'point'
|
|
Range = require 'range'
|
|
_ = require 'underscore'
|
|
|
|
module.exports =
|
|
class CursorView extends View
|
|
@content: ->
|
|
@pre class: 'cursor idle', => @raw ' '
|
|
|
|
blinkPeriod: 800
|
|
editor: null
|
|
visible: true
|
|
|
|
needsUpdate: true
|
|
needsRemoval: false
|
|
shouldPauseBlinking: false
|
|
|
|
initialize: (@cursor, @editor) ->
|
|
@cursor.on 'moved.cursor-view', =>
|
|
@needsUpdate = true
|
|
@shouldPauseBlinking = true
|
|
|
|
@cursor.on 'visibility-changed.cursor-view', (visible) =>
|
|
@needsUpdate = true
|
|
|
|
@cursor.on 'autoscrolled.cursor-view', =>
|
|
@editor.requestDisplayUpdate()
|
|
|
|
@cursor.on 'destroyed.cursor-view', =>
|
|
@needsRemoval = true
|
|
|
|
remove: ->
|
|
@editor.removeCursorView(this)
|
|
@cursor.off('.cursor-view')
|
|
super
|
|
|
|
updateDisplay: ->
|
|
screenPosition = @getScreenPosition()
|
|
pixelPosition = @getPixelPosition()
|
|
|
|
unless _.isEqual(@lastPixelPosition, pixelPosition)
|
|
changedPosition = true
|
|
@css(pixelPosition)
|
|
@trigger 'cursor:moved'
|
|
|
|
if @shouldPauseBlinking
|
|
@resetBlinking()
|
|
else if !@startBlinkingTimeout
|
|
@startBlinking()
|
|
|
|
@setVisible(@cursor.isVisible() and not @editor.isFoldedAtScreenRow(screenPosition.row))
|
|
|
|
needsAutoscroll: ->
|
|
@cursor.needsAutoscroll
|
|
|
|
clearAutoscroll: ->
|
|
@cursor.clearAutoscroll()
|
|
|
|
getPixelPosition: ->
|
|
@editor.pixelPositionForScreenPosition(@getScreenPosition())
|
|
|
|
setVisible: (visible) ->
|
|
unless @visible == visible
|
|
@visible = visible
|
|
@toggle(@visible)
|
|
|
|
stopBlinking: ->
|
|
clearInterval(@blinkInterval) if @blinkInterval
|
|
@blinkInterval = null
|
|
this[0].classList.remove('blink-off')
|
|
|
|
startBlinking: ->
|
|
return if @blinkInterval?
|
|
blink = => @toggleClass('blink-off')
|
|
@blinkInterval = setInterval(blink, @blinkPeriod / 2)
|
|
|
|
resetBlinking: ->
|
|
@stopBlinking()
|
|
@startBlinking()
|
|
|
|
getBufferPosition: ->
|
|
@cursor.getBufferPosition()
|
|
|
|
getScreenPosition: ->
|
|
@cursor.getScreenPosition()
|
|
|
|
removeIdleClassTemporarily: ->
|
|
@removeClass 'idle'
|
|
window.clearTimeout(@idleTimeout) if @idleTimeout
|
|
@idleTimeout = window.setTimeout (=> @addClass 'idle'), 200
|
|
|
|
resetCursorAnimation: ->
|
|
window.clearTimeout(@idleTimeout) if @idleTimeout
|
|
@removeClass 'idle'
|
|
_.defer => @addClass 'idle'
|