2020-05-15 21:59:10 +02:00
|
|
|
|
|
|
|
void ParseAndPaint()
|
|
|
|
{
|
|
|
|
//search.clear();
|
|
|
|
list.count=0;
|
2020-05-16 00:00:20 +02:00
|
|
|
selection.cancel();
|
2020-05-15 21:59:10 +02:00
|
|
|
|
|
|
|
Parse();
|
|
|
|
|
|
|
|
list.visible = list.h / list.item_h;
|
2020-05-16 00:00:20 +02:00
|
|
|
DrawBuf.Init(list.x, list.y, list.w, list.visible+1*list.item_h);
|
2020-05-15 21:59:10 +02:00
|
|
|
DrawPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Parse()
|
|
|
|
{
|
|
|
|
dword off;
|
|
|
|
int line_end;
|
|
|
|
dword line_length=0;
|
|
|
|
dword line_start = io.buffer_data;
|
|
|
|
dword buflen = strlen(io.buffer_data) + io.buffer_data;
|
|
|
|
|
|
|
|
lines.drop();
|
|
|
|
lines.add(io.buffer_data);
|
|
|
|
|
|
|
|
for (off = io.buffer_data; off < buflen; off++)
|
|
|
|
{
|
|
|
|
line_length += list.font_w;
|
|
|
|
if (line_length + 30 >= list.w) || (ESBYTE[off] == 10)
|
|
|
|
{
|
|
|
|
//searching a 'white' for a normal word-break
|
|
|
|
for(line_end = off; line_end != line_start; line_end--)
|
|
|
|
{
|
|
|
|
if (__isWhite(ESBYTE[line_end])) { off=line_end+1; break; }
|
|
|
|
}
|
|
|
|
line_length = off - line_start * list.font_w;
|
|
|
|
list.count++;
|
|
|
|
lines.add(off);
|
|
|
|
line_start = off;
|
|
|
|
line_length = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lines.add(buflen);
|
|
|
|
list.count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PaintVisible()
|
|
|
|
{
|
|
|
|
int i;
|
2020-05-16 00:00:20 +02:00
|
|
|
dword ydraw, absolute_y;
|
2020-05-15 21:59:10 +02:00
|
|
|
dword line_bg;
|
2020-05-16 00:00:20 +02:00
|
|
|
bool swapped_selection = false;
|
2020-05-15 21:59:10 +02:00
|
|
|
|
2020-05-17 00:01:17 +02:00
|
|
|
list.column_max = lines.len(list.cur_y);
|
2020-05-15 21:59:10 +02:00
|
|
|
list.CheckDoesValuesOkey();
|
|
|
|
if (selection.end_offset < selection.start_offset) {
|
2020-05-16 00:00:20 +02:00
|
|
|
swapped_selection = selection.swap_start_end();
|
2020-05-15 21:59:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
for ( i=0; i < list.visible+1; i++)
|
2020-05-15 21:59:10 +02:00
|
|
|
{
|
2020-05-16 00:00:20 +02:00
|
|
|
ydraw = i * list.item_h;
|
|
|
|
absolute_y = i + list.first;
|
2020-05-15 21:59:10 +02:00
|
|
|
line_bg = theme.bg;
|
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
if (selection.start_y < absolute_y) && (selection.end_y > absolute_y) line_bg = selection.color;
|
|
|
|
DrawBuf.DrawBar(0, ydraw, list.w, list.item_h, line_bg);
|
2020-05-15 21:59:10 +02:00
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
selection.draw(absolute_y);
|
2020-05-15 21:59:10 +02:00
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
if (absolute_y<list.count) DrawBuf.WriteText(3, ydraw+3, list.font_type, theme.text,
|
2020-05-17 00:01:17 +02:00
|
|
|
lines.get(absolute_y), lines.len(absolute_y));
|
2020-05-15 21:59:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
PutPaletteImage(buf_data+8, DrawBuf.bufw, list.h, list.x, list.y, 32, 0);
|
2020-05-15 21:59:10 +02:00
|
|
|
|
2020-05-16 00:00:20 +02:00
|
|
|
if (swapped_selection) selection.swap_start_end();
|
2020-05-15 21:59:10 +02:00
|
|
|
}
|
|
|
|
|