2020-06-29 20:08:02 +04:30
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
2020-06-29 20:08:02 +04:30
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-29 20:08:02 +04:30
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
namespace Line {
|
|
|
|
|
|
|
|
struct StringMetrics {
|
2021-01-10 16:23:04 +03:30
|
|
|
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-11-08 01:58:04 +01:00
|
|
|
size_t visible_length { 0 };
|
|
|
|
Optional<size_t> bit_length { 0 };
|
2021-01-10 16:23:04 +03:30
|
|
|
|
2022-05-02 16:10:42 +04:30
|
|
|
size_t total_length() const { return length; }
|
2021-01-10 16:23:04 +03:30
|
|
|
};
|
|
|
|
|
|
|
|
Vector<LineMetrics> line_metrics;
|
2020-06-29 20:08:02 +04:30
|
|
|
size_t total_length { 0 };
|
|
|
|
size_t max_line_length { 0 };
|
|
|
|
|
2021-12-14 14:41:18 +03:30
|
|
|
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 20:08:02 +04:30
|
|
|
void reset()
|
|
|
|
{
|
2021-01-10 16:23:04 +03:30
|
|
|
line_metrics.clear();
|
2020-06-29 20:08:02 +04:30
|
|
|
total_length = 0;
|
|
|
|
max_line_length = 0;
|
2021-01-10 16:23:04 +03:30
|
|
|
line_metrics.append({ {}, 0 });
|
2020-06-29 20:08:02 +04:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|