2020-06-29 12:38:02 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
2020-06-29 12:38:02 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-29 12:38:02 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
|
|
namespace Line {
|
|
|
|
|
|
|
|
|
|
struct StringMetrics {
|
2021-01-10 09:53:04 -03:00
|
|
|
struct MaskedChar {
|
|
|
|
|
size_t position { 0 };
|
|
|
|
|
size_t original_length { 0 };
|
|
|
|
|
size_t masked_length { 0 };
|
|
|
|
|
};
|
|
|
|
|
struct LineMetrics {
|
|
|
|
|
Vector<MaskedChar> masked_chars;
|
|
|
|
|
size_t length { 0 };
|
|
|
|
|
|
2022-05-02 08:40:42 -03:00
|
|
|
size_t total_length() const { return length; }
|
2021-01-10 09:53:04 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Vector<LineMetrics> line_metrics;
|
2020-06-29 12:38:02 -03:00
|
|
|
size_t total_length { 0 };
|
|
|
|
|
size_t max_line_length { 0 };
|
|
|
|
|
|
2021-12-14 08:11:18 -03:00
|
|
|
size_t lines_with_addition(StringMetrics const& offset, size_t column_width) const;
|
|
|
|
|
size_t offset_with_addition(StringMetrics const& offset, size_t column_width) const;
|
2020-06-29 12:38:02 -03:00
|
|
|
void reset()
|
|
|
|
|
{
|
2021-01-10 09:53:04 -03:00
|
|
|
line_metrics.clear();
|
2020-06-29 12:38:02 -03:00
|
|
|
total_length = 0;
|
|
|
|
|
max_line_length = 0;
|
2021-01-10 09:53:04 -03:00
|
|
|
line_metrics.append({ {}, 0 });
|
2020-06-29 12:38:02 -03:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|