c++ - Multiple Insertion Points wxWidgets -
basically, want make similar "split lines" in sublime using wxwidgets. our textctrl contains text
aaaaaa bbbbbb cccccc ffffff
what want when user selects these lines , uses feature (with highlighted - select all), should like
aaaaaa| bbbbbb| cccccc| dddddd|
where |
carets. basically, want have multiple carets in 1 wxrichtextctrl. idea how can achieve that?
wxrichtextctrl
doesn't support this, wxstyledtextctrl
does, see scintilla documentation.
Comments
Post a Comment