2020-05-22 03:52:34 +04:30
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-05-22 03:52:34 +04:30
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-22 03:52:34 +04:30
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <LibLine/Style.h>
|
|
|
|
|
2023-07-11 13:49:08 -04:00
|
|
|
namespace Line::VT {
|
2020-05-22 03:52:34 +04:30
|
|
|
|
2023-02-10 01:00:18 +01:00
|
|
|
ErrorOr<void> save_cursor(Stream&);
|
|
|
|
ErrorOr<void> restore_cursor(Stream&);
|
|
|
|
ErrorOr<void> clear_to_end_of_line(Stream&);
|
|
|
|
ErrorOr<void> clear_lines(size_t count_above, size_t count_below, Stream&);
|
|
|
|
ErrorOr<void> move_relative(int x, int y, Stream&);
|
|
|
|
ErrorOr<void> move_absolute(u32 x, u32 y, Stream&);
|
|
|
|
ErrorOr<void> apply_style(Style const&, Stream&, bool is_starting = true);
|
2020-05-22 03:52:34 +04:30
|
|
|
|
|
|
|
}
|