|
|
@ -165,14 +165,15 @@ class ContentTextView(context: Context, attrs: AttributeSet?) : View(context, at |
|
|
|
private fun upSelectChars(textPage: TextPage) { |
|
|
|
private fun upSelectChars(textPage: TextPage) { |
|
|
|
for ((lineIndex, textLine) in textPage.textLines.withIndex()) { |
|
|
|
for ((lineIndex, textLine) in textPage.textLines.withIndex()) { |
|
|
|
for ((charIndex, textChar) in textLine.textChars.withIndex()) { |
|
|
|
for ((charIndex, textChar) in textLine.textChars.withIndex()) { |
|
|
|
textChar.selected = when (lineIndex) { |
|
|
|
textChar.selected = |
|
|
|
selectStartLine -> { |
|
|
|
if (lineIndex == selectStartLine && lineIndex == selectEndLine) { |
|
|
|
|
|
|
|
charIndex in selectStartChar..selectEndChar |
|
|
|
|
|
|
|
} else if (lineIndex == selectStartLine) { |
|
|
|
charIndex >= selectStartChar |
|
|
|
charIndex >= selectStartChar |
|
|
|
} |
|
|
|
} else if (lineIndex == selectEndLine) { |
|
|
|
selectEndLine -> { |
|
|
|
|
|
|
|
charIndex <= selectEndChar |
|
|
|
charIndex <= selectEndChar |
|
|
|
} |
|
|
|
} else { |
|
|
|
else -> lineIndex in (selectStartLine + 1) until selectEndLine |
|
|
|
lineIndex in (selectStartLine + 1) until selectEndLine |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|