using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ST.Library.UI.STTextBox{public abstract class TextStyleMonitor : ITextStyleMonitor{public static List<TextStyleRange> FillDefaultStyle(List<TextStyleRange> lst, int nTextLength, TextStyle style) {List<TextStyleRange> lstRet = new List<TextStyleRange>();int nIndex = 0;foreach (var tsr in lst) {if (nIndex != tsr.Index) {lstRet.Add(new TextStyleRange() {Index = nIndex,Length = tsr.Index - nIndex,Style = style});}lstRet.Add(new TextStyleRange() {Index = tsr.Index,Length = tsr.Length,Style = tsr.Style});nIndex = tsr.Index + tsr.Length;}if (nIndex < nTextLength) {lstRet.Add(new TextStyleRange() {Index = nIndex,Length = nTextLength - nIndex});}return lstRet;}public static TextStyleRange GetStyleFromCharIndex(int nIndex, List<TextStyleRange> lst) {if (lst == null || lst.Count == 0) {return TextStyleRange.Empty;}int nLeft = 0, nRight = lst.Count - 1, nMid = 0;while (nLeft <= nRight) {nMid = (nLeft + nRight) >> 1;if (lst[nMid].Index > nIndex) {nRight = nMid - 1;} else if (lst[nMid].Index + lst[nMid].Length <= nIndex) {nLeft = nMid + 1;} else {return lst[nMid];}}if (nIndex < lst[nMid].Index) {if (nMid == 0) return new TextStyleRange() { Index = 0, Length = lst[0].Index };return new TextStyleRange() {Index = lst[nMid - 1].Index + lst[nMid - 1].Length,Length = lst[nMid].Index - lst[nMid - 1].Index - lst[nMid - 1].Length};}if (nMid == lst.Count - 1) return new TextStyleRange() {Index = lst[nMid].Index + lst[nMid].Length, Length = int.MaxValue};return new TextStyleRange() {Index = lst[nMid].Index + lst[nMid].Length,Length = lst[nMid + 1].Index - lst[nMid].Index - lst[nMid].Length};}public abstract void Init(string strText);public abstract void OnSelectionChanged(TextManager textManager, int nStart, int nLen);public abstract void OnTextChanged(TextManager textManager, List<TextHistoryRecord> thrs);public abstract TextStyleRange GetStyleFromCharIndex(int nIndex);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。