Version 2 starting implementation

This commit is contained in:
James Johnson 2018-01-11 08:07:56 -05:00
parent 24d70c0e42
commit e56d3c4df3
2 changed files with 85 additions and 7 deletions

View File

@ -450,6 +450,15 @@ struct LineSpan {
int start;
/// number of lines it spans
int len;
/// the wrapping points
WrapPoint[] wrapPoints;
dstring[] wrappedContent;
}
struct WrapPoint {
int wrapPos;
int wrapWidth;
}
/// interface for custom syntax highlight, comments toggling, smart indents, and other language dependent features for source code editors

View File

@ -391,13 +391,29 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
return this;
}
void wrapLine(dstring line, int maxWidth) {
dstring[] wrapLine(dstring line, int maxWidth) {
return [];
}
/// information about line span into several lines - in word wrap mode
protected LineSpan[] _span;
int wrapsUpTo(int line)
{
if(line < _span.length)
{
int sum;
for(int i = 0; i<line; i++)
{
sum += _span[i].len - 1;
}
//Log.d(sum);
return sum;
}
return 0;
}
/// override to add custom items on left panel
protected void updateLeftPaneWidth() {
import std.conv : to;
@ -3321,6 +3337,15 @@ class EditBox : EditWidgetBase {
}
}
void resetVisibleSpans()
{
//TODO: Don't erase spans which have not been modified
_span = [];
}
private bool needRewrap;
private int lastStartingLine;
override protected void drawClient(DrawBuf buf) {
// update matched braces
if (!content.findMatchedBraces(_caretPos, _matchingBraces)) {
@ -3330,6 +3355,23 @@ class EditBox : EditWidgetBase {
Rect rc = _clientRect;
if (_contentChanged)
needRewrap = true;
if (rc.width <= 0 && _wordWrap)
{
return;
}
bool doRewrap = false;
if (needRewrap && _wordWrap)
{
resetVisibleSpans();
needRewrap = false;
doRewrap = true;
}
FontRef font = font();
for (int i = 0; i < _visibleLines.length; i++) {
dstring txt = _visibleLines[i];
@ -3344,7 +3386,7 @@ class EditBox : EditWidgetBase {
drawLineBackground(buf, _firstVisibleLine + i, lineRect, visibleRect);
if (_showTabPositionMarks)
drawTabPositionMarks(buf, font, _firstVisibleLine + i, lineRect);
if (!txt.length)
if (!txt.length && !_wordWrap)
continue;
if (_showWhiteSpaceMarks)
drawWhiteSpaceMarks(buf, font, txt, tabSize, lineRect, visibleRect);
@ -3354,12 +3396,39 @@ class EditBox : EditWidgetBase {
leftPaneRect.left -= _leftPaneWidth;
drawLeftPane(buf, leftPaneRect, 0);
}
if (txt.length > 0) {
if (txt.length > 0 || _wordWrap) {
CustomCharProps[] highlight = _visibleLinesHighlights[i];
if (highlight)
font.drawColoredText(buf, rc.left - _scrollPos.x, rc.top + i * _lineHeight, txt, highlight, tabSize);
if (_wordWrap)
{
dstring[] wrappedLine;
if (doRewrap)
wrappedLine = wrapLine(txt, _firstVisibleLine + i);
else
if (i < _span.length)
wrappedLine = _span[i].wrappedContent;
int accumulativeLength;
CustomCharProps[] wrapProps;
foreach (int q, curWrap; wrappedLine)
{
auto lineOffset = q + i + wrapsUpTo(i);
if (highlight)
{
wrapProps = highlight[accumulativeLength .. $];
accumulativeLength += curWrap.length;
font.drawColoredText(buf, rc.left - _scrollPos.x, rc.top + lineOffset * _lineHeight, curWrap, wrapProps, tabSize);
}
else
font.drawText(buf, rc.left - _scrollPos.x, rc.top + lineOffset * _lineHeight, curWrap, textColor, tabSize);
}
}
else
font.drawText(buf, rc.left - _scrollPos.x, rc.top + i * _lineHeight, txt, textColor, tabSize);
{
if (highlight)
font.drawColoredText(buf, rc.left - _scrollPos.x, rc.top + i * _lineHeight, txt, highlight, tabSize);
else
font.drawText(buf, rc.left - _scrollPos.x, rc.top + i * _lineHeight, txt, textColor, tabSize);
}
}
}